mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-06-13 01:37:02 +02:00
added the webui to the tarball
This commit is contained in:
17
webui/system/model.php
Normal file
17
webui/system/model.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
class Model {
|
||||
|
||||
public function __get($key) {
|
||||
return Registry::get($key);
|
||||
}
|
||||
|
||||
|
||||
public function __set($key, $value) {
|
||||
Registry::set($key, $value);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
?>
|
Reference in New Issue
Block a user