public function __construct($tv)
 {
     parent::__construct(self::ID);
     $this->tv = $tv;
     $this->profile = null;
     $this->profiles = null;
 }
 function __construct()
 {
     hd_print(__METHOD__);
     parent::__construct(self::ID);
     hd_print('teste setup screen');
 }
 public function __construct(Vod $vod)
 {
     parent::__construct(self::ID);
     $this->vod = $vod;
 }
 public function __construct()
 {
     parent::__construct(self::ID);
     $this->profile = null;
     $this->profiles = array();
 }
 public function __construct($session)
 {
     parent::__construct(self::ID);
     $this->session = $session;
 }