Example #1
0
 /**
  * Get project object from
  * session storage
  * @return Designer_Project
  */
 protected function _getProject()
 {
     if (is_null(self::$_poject)) {
         self::$_poject = unserialize($this->_session->get('project'));
     }
     return self::$_poject;
 }
Example #2
0
 public function __construct()
 {
     parent::__construct();
     $this->_checkLoaded();
     $this->_checkObject();
     $this->_checkFilter();
 }
Example #3
0
 public function __construct()
 {
     parent::__construct();
     $this->_checkLoaded();
     $this->_checkObject();
     $this->_checkColumn();
     $this->_checkAction();
 }
Example #4
0
File: Db.php Project: vgrish/dvelum
 public function __construct()
 {
     parent::__construct();
     $this->_connConfig = Config::factory(Config::File_Array, $this->_config->get('connections'));
 }