Beispiel #1
0
 function __construct()
 {
     parent::__construct();
     $args = func_get_args();
     for ($i = 0, $n = count($args); $i < $n; $i++) {
         $this->add($args[$i]);
     }
 }
Beispiel #2
0
 function __construct($cache_name = null)
 {
     //		if (!empty($this->lang_dirname)) {
     //			$this->cache_path = PHPB2B_ROOT."data".DS."cache".DS.$this->lang_dirname.DS;
     //		}else{
     $this->cache_path = CACHE_PATH;
     //		}
     if (!empty($cache_name)) {
         $this->cache_name = $cache_name;
     }
     parent::__construct();
     if (!is_dir($this->cache_path)) {
         mkdir($this->cache_path, 0777, true);
     }
 }
Beispiel #3
0
 function __construct()
 {
     $this->overload();
     parent::__construct();
 }
Beispiel #4
0
 function Files()
 {
     parent::__construct();
 }
Beispiel #5
0
 public function __construct()
 {
     parent::__construct();
 }