piler/webui/system/model.php

18 lines
185 B
PHP
Raw Permalink Normal View History

2012-02-08 23:14:28 +01:00
<?php
class Model {
public function __get($key) {
return Registry::get($key);
}
public function __set($key, $value) {
Registry::set($key, $value);
}
}
?>