Ejemplo n.º 1
0
 protected function _init()
 {
     // overridable _POST and _GET
     $this->post = Options::make($_POST);
     $this->get = Options::make($_GET);
     $this->user = SessionUser::user();
     // overridable Output / View / Template engine
     $O = Output::$class;
     $this->tpl = new $O($this);
 }