Author: Georgos Giagas
Author: Izzy (izzysoft AT qumran DOT org)
Inheritance: extends Config
示例#1
0
 /**
  * @param string id IMDBID to use for data retrieval
  */
 public function __construct($id, Config $config = null)
 {
     parent::__construct($config);
     $this->setid($id);
     $this->reset_lang();
 }
示例#2
0
 protected function getPage($page = null)
 {
     if (!empty($this->page[$page])) {
         return $this->page[$page];
     }
     $this->page[$page] = parent::getPage($page);
     return $this->page[$page];
 }