Пример #1
0
 function __construct($id = null, $folder_views = null)
 {
     // hd_print(__METHOD__);
     if (!is_null($id) && !is_null($folder_views)) {
         // hd_print('parent' . print_r($folder_views, true));
         parent::__construct($id, $folder_views);
     } else {
         parent::__construct(self::ID, $this->get_folder_views());
     }
 }
 public function __construct(Tv $tv, $folder_views)
 {
     parent::__construct(self::ID, $folder_views);
     $this->tv = $tv;
     UserInputHandlerRegistry::get_instance()->register_handler($this);
 }
 public function __construct($session, $folder_views)
 {
     parent::__construct(self::ID, $folder_views);
     $this->session = $session;
 }
Пример #4
0
 public function __construct(Vod $vod)
 {
     $this->vod = $vod;
     parent::__construct(self::ID, $vod->get_vod_list_folder_views());
     UserInputHandlerRegistry::get_instance()->register_handler($this);
 }
 function __construct()
 {
     hd_print(__METHOD__);
     parent::__construct(self::ID, $this->get_folder_views());
 }
 public function __construct(Vod $vod)
 {
     $this->vod = $vod;
     parent::__construct(self::ID, $this->get_folder_views());
 }
Пример #7
0
 public function __construct($tv, $folder_views)
 {
     parent::__construct(self::ID, $folder_views);
     $this->tv = $tv;
 }
 function __construct($id = null)
 {
     hd_print(__METHOD__);
     $name = !$id ? self::ID : $id;
     parent::__construct($name, $this->get_folder_views());
 }
Пример #9
0
 function __construct()
 {
     // hd_print(__METHOD__);
     parent::__construct(self::ID, $this->get_folder_views());
     UserInputHandlerRegistry::get_instance()->register_handler($this);
 }