예제 #1
0
파일: File.php 프로젝트: rosko/workapp
 function __construct($config)
 {
     parent::__construct($config);
     $this->config = $config;
     if (isset($this->registry["post"]["did"])) {
         $this->_curdir = $this->registry["post"]["did"];
     }
 }
예제 #2
0
파일: Dashboard.php 프로젝트: norayrx/otms
 function __construct()
 {
     parent::__construct();
     $this->dashboard =& $_SESSION["dashboard"];
 }
예제 #3
0
파일: Chat.php 프로젝트: rosko/workapp
 public function __construct($config)
 {
     parent::__construct($config);
     $this->db = new Model_Db_Chat();
 }
예제 #4
0
파일: Save.php 프로젝트: rosko/workapp
 function __construct($config)
 {
     parent::__construct($config);
     $this->_config = $config;
 }