예제 #1
0
 public function __construct($parent)
 {
     parent::__construct($parent);
     $this->lang = null;
     $this->id = null;
     $this->url = null;
 }
예제 #2
0
파일: wssubCache.php 프로젝트: showi/prog
 public function __construct($parent)
 {
     parent::__construct($parent);
     if (!isset(self::$cache)) {
         self::$cache = array();
     }
     self::$path = "/tmp/wssub";
 }
예제 #3
0
파일: wssubEpisode.php 프로젝트: showi/prog
 /**
  * @return unknown_type
  */
 public function __construct($parent)
 {
     parent::__construct($parent);
     $this->num = null;
     $this->title = null;
     $this->subtitles = array();
     $this->url = null;
 }
예제 #4
0
파일: wssubTvShow.php 프로젝트: showi/prog
 public function __construct($parent)
 {
     parent::__construct($parent);
     $this->id = null;
     $this->name = null;
     $this->href = null;
     $this->languages = array();
     $this->seasons = array();
 }
예제 #5
0
파일: wssubSite.php 프로젝트: showi/prog
 public function __construct($parent)
 {
     parent::__construct($parent);
     $this->prefix_url = null;
     $this->search_url = null;
     $this->search_id_url = null;
     $this->download_id_url = null;
     $this->name = null;
     $this->url = null;
     $this->request = null;
     self::$data_store = array();
     $this->log_array = array();
 }
예제 #6
0
파일: wssubSeason.php 프로젝트: showi/prog
 public function __construct($parent)
 {
     parent::__construct($parent);
     $this->num = null;
     $this->episodes = array();
 }
예제 #7
0
파일: wssubRequest.php 프로젝트: showi/prog
 public function __construct($parent)
 {
     parent::__construct($parent);
     $this->allowed = array('search', 'lang', 'episode', 'season');
 }
예제 #8
0
파일: wssubMother.php 프로젝트: showi/prog
 public function log_flush()
 {
     self::$log_array = null;
 }