コード例 #1
0
ファイル: medialist.php プロジェクト: hidetobara/voices
 function __construct($opt = null)
 {
     parent::__construct($opt);
     $this->name = 'medialist';
     $this->template = 'medialist.tpl';
     $this->playDb = $opt['PlaylistInfoDB'] ? $opt['PlaylistInfoDB'] : new PlaylistInfoDB();
 }
コード例 #2
0
ファイル: password.php プロジェクト: hidetobara/voices
 function __construct($opt = null)
 {
     parent::__construct($opt);
     $this->name = 'password';
     $this->template = 'password.tpl';
     $this->userDb = $opt['UserDB'] ? $opt['UserDB'] : new UserDB();
 }
コード例 #3
0
ファイル: index.php プロジェクト: hidetobara/voices
 function __construct($opt = null)
 {
     parent::__construct($opt);
     $this->name = 'manage';
     $this->templateGroup = 'manage';
     $this->template = 'top.tpl';
 }
コード例 #4
0
ファイル: session.php プロジェクト: hidetobara/voices
 function __construct($opt = null)
 {
     parent::__construct($opt);
     $this->name = 'session';
     $this->template = 'session.tpl';
     $this->db = $opt['UserDB'] ? $opt['UserDB'] : new UserDB();
 }
コード例 #5
0
ファイル: account.php プロジェクト: hidetobara/voices
 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();
 }
コード例 #6
0
ファイル: playlist.php プロジェクト: hidetobara/voices
 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();
 }
コード例 #7
0
ファイル: uploadlist.php プロジェクト: hidetobara/voices
 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();
 }
コード例 #8
0
ファイル: mypage.php プロジェクト: hidetobara/voices
 function __construct($opt = null)
 {
     parent::__construct($opt);
     $this->name = 'mypage';
     $this->template = 'mypage.tpl';
 }
コード例 #9
0
ファイル: ranking.php プロジェクト: hidetobara/voices
 function __construct($opt = null)
 {
     parent::__construct($opt);
     $this->name = 'ranking';
     $this->template = 'ranking.tpl';
 }