Exemplo n.º 1
0
 function __construct($opt = null)
 {
     parent::__construct($opt);
     $this->name = 'medialist';
     $this->template = 'medialist.tpl';
     $this->playDb = $opt['PlaylistInfoDB'] ? $opt['PlaylistInfoDB'] : new PlaylistInfoDB();
 }
Exemplo n.º 2
0
 function __construct($opt = null)
 {
     parent::__construct($opt);
     $this->name = 'password';
     $this->template = 'password.tpl';
     $this->userDb = $opt['UserDB'] ? $opt['UserDB'] : new UserDB();
 }
Exemplo n.º 3
0
 function __construct($opt = null)
 {
     parent::__construct($opt);
     $this->name = 'manage';
     $this->templateGroup = 'manage';
     $this->template = 'top.tpl';
 }
Exemplo n.º 4
0
 function __construct($opt = null)
 {
     parent::__construct($opt);
     $this->name = 'session';
     $this->template = 'session.tpl';
     $this->db = $opt['UserDB'] ? $opt['UserDB'] : new UserDB();
 }
Exemplo n.º 5
0
 function __construct($opt = null)
 {
     parent::__construct($opt);
     $this->name = 'manage';
     $this->templateGroup = 'manage';
     $this->template = 'account.tpl';
     $this->userDb = $opt['UserDB'] ? $opt['UserDB'] : new UserDB();
 }
Exemplo n.º 6
0
 function __construct($opt = null)
 {
     parent::__construct($opt);
     $this->name = 'playlist';
     $this->template = 'playlist.tpl';
     $this->db = $opt['PlaylistInfoDB'] ? $opt['PlaylistInfoDB'] : new PlaylistInfoDB();
     $this->imageFile = $opt['ImageFile'] ? $opt['ImageFile'] : new ImageFile();
     $this->imageDb = $opt['ImageInfoDB'] ? $opt['ImageInfoDB'] : new ImageInfoDB();
 }
Exemplo n.º 7
0
 function __construct($opt = null)
 {
     parent::__construct($opt);
     $this->name = 'uploadlist';
     $this->template = 'uploadlist.tpl';
     $this->voiceDb = $opt['voiceDb'] ? $opt['voiceDb'] : new voiceInfoDB();
     $this->voiceFile = $opt['VoiceFile'] ? $opt['VoiceFile'] : new VoiceFile();
     $this->imageFile = $opt['ImageFile'] ? $opt['ImageFile'] : new ImageFile();
 }
Exemplo n.º 8
0
 function __construct($opt = null)
 {
     parent::__construct($opt);
     $this->name = 'mypage';
     $this->template = 'mypage.tpl';
 }
Exemplo n.º 9
0
 function __construct($opt = null)
 {
     parent::__construct($opt);
     $this->name = 'ranking';
     $this->template = 'ranking.tpl';
 }