Example #1
0
 public function __construct($parent)
 {
     parent::__construct($parent);
     $this->lang = null;
     $this->id = null;
     $this->url = null;
 }
Example #2
0
 public function __construct($parent)
 {
     parent::__construct($parent);
     if (!isset(self::$cache)) {
         self::$cache = array();
     }
     self::$path = "/tmp/wssub";
 }
Example #3
0
 /**
  * @return unknown_type
  */
 public function __construct($parent)
 {
     parent::__construct($parent);
     $this->num = null;
     $this->title = null;
     $this->subtitles = array();
     $this->url = null;
 }
Example #4
0
 public function __construct($parent)
 {
     parent::__construct($parent);
     $this->id = null;
     $this->name = null;
     $this->href = null;
     $this->languages = array();
     $this->seasons = array();
 }
Example #5
0
 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();
 }
Example #6
0
 public function __construct($parent)
 {
     parent::__construct($parent);
     $this->num = null;
     $this->episodes = array();
 }
Example #7
0
 public function __construct($parent)
 {
     parent::__construct($parent);
     $this->allowed = array('search', 'lang', 'episode', 'season');
 }
Example #8
0
 public function log_flush()
 {
     self::$log_array = null;
 }