Пример #1
0
 public function load()
 {
     if ($this->dbversion) {
         return tstorage::load($this);
     } else {
         return parent::load();
     }
 }
Пример #2
0
 public function load()
 {
     $result = parent::load();
     if ($this->filertype == 'auto') {
         $this->filertype = self::getprefered();
     }
     return $result;
 }
Пример #3
0
 public function load()
 {
     if ($this->name == '') {
         return false;
     }
     if (parent::load()) {
         self::$instances[$this->name] = $this;
         return true;
     }
     return $this->parsetheme();
 }