コード例 #1
0
ファイル: Photofile.php プロジェクト: rosko/workapp
 function __construct()
 {
     parent::__construct($this->registry);
     if (isset($this->registry["post"]["did"])) {
         $this->_curdir = $this->registry["post"]["did"];
     }
 }
コード例 #2
0
ファイル: Model.php プロジェクト: norayrx/otms
 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)];
     }
 }
コード例 #3
0
ファイル: Dashboard.php プロジェクト: rosko/workapp
 function __construct()
 {
     parent::__construct();
     $this->dashboard =& $_SESSION["dashboard"];
     $this->logs = new Model_Logs();
 }
コード例 #4
0
 public function __construct()
 {
     parent::__construct();
 }
コード例 #5
0
ファイル: Photothumb.php プロジェクト: rosko/workapp
 function __construct($config)
 {
     parent::__construct($config);
     $this->_config = $config;
 }
コード例 #6
0
ファイル: Photo.php プロジェクト: rosko/workapp
 public function __construct()
 {
     parent::__construct($this->registry);
     $this->file = new Model_Photofile();
 }