Автор: Georgos Giagas
Автор: Izzy (izzysoft AT qumran DOT org)
Наследование: 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];
 }