Newer
Older
mailpiler / webui / system / model.php
@SJ SJ on 8 Feb 2012 185 bytes added the webui to the tarball
<?php

class Model {

   public function __get($key) {
      return Registry::get($key);
   }


   public function __set($key, $value) {
      Registry::set($key, $value);
   }

}


?>