Exemplo n.º 1
0
 function __construct()
 {
     parent::__construct($this->registry);
     if (isset($this->registry["post"]["did"])) {
         $this->_curdir = $this->registry["post"]["did"];
     }
 }
Exemplo n.º 2
0
 function __construct($config = array())
 {
     parent::__construct();
     if (count($config) > 0) {
         $this->config = $config;
         $this->modules = $config["modules"];
         $this->module_name = $config["module_name"];
         $this->module_path = $config["module_path"];
         $this->twig = $this->registry["twig_" . mb_strtolower($this->module_name)];
     }
 }
Exemplo n.º 3
0
 function __construct()
 {
     parent::__construct();
     $this->dashboard =& $_SESSION["dashboard"];
     $this->logs = new Model_Logs();
 }
Exemplo n.º 4
0
 public function __construct()
 {
     parent::__construct();
 }
Exemplo n.º 5
0
 function __construct($config)
 {
     parent::__construct($config);
     $this->_config = $config;
 }
Exemplo n.º 6
0
 public function __construct()
 {
     parent::__construct($this->registry);
     $this->file = new Model_Photofile();
 }