function __construct($opt = null) { parent::__construct($opt); $this->name = 'medialist'; $this->template = 'medialist.tpl'; $this->playDb = $opt['PlaylistInfoDB'] ? $opt['PlaylistInfoDB'] : new PlaylistInfoDB(); }
function __construct($opt = null) { parent::__construct($opt); $this->name = 'password'; $this->template = 'password.tpl'; $this->userDb = $opt['UserDB'] ? $opt['UserDB'] : new UserDB(); }
function __construct($opt = null) { parent::__construct($opt); $this->name = 'manage'; $this->templateGroup = 'manage'; $this->template = 'top.tpl'; }
function __construct($opt = null) { parent::__construct($opt); $this->name = 'session'; $this->template = 'session.tpl'; $this->db = $opt['UserDB'] ? $opt['UserDB'] : new UserDB(); }
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(); }
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(); }
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(); }
function __construct($opt = null) { parent::__construct($opt); $this->name = 'mypage'; $this->template = 'mypage.tpl'; }
function __construct($opt = null) { parent::__construct($opt); $this->name = 'ranking'; $this->template = 'ranking.tpl'; }