本文整理匯總了PHP中Cscms_Controller類的典型用法代碼示例。如果您正苦於以下問題:PHP Cscms_Controller類的具體用法?PHP Cscms_Controller怎麽用?PHP Cscms_Controller使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了Cscms_Controller類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1:
function __construct()
{
parent::__construct();
$this->load->helper('string');
$this->load->library('user_agent');
$this->lang->load('user');
}
示例2:
function __construct()
{
parent::__construct();
$this->load->library('user_agent');
//關閉數據庫緩存
$this->db->cache_off();
}
示例3:
function __construct()
{
parent::__construct();
$this->load->helper('dance');
$this->load->model('CsdjTpl');
$this->load->model('CsdjUser');
}
示例4:
function __construct()
{
parent::__construct();
$this->load->model('CsdjAdmin');
$this->lang->load('admin_pl');
$this->CsdjAdmin->Admin_Login();
}
示例5:
function __construct()
{
parent::__construct();
$this->load->helper('vod');
$this->load->model('CsdjTpl');
//裝載視圖模型
}
示例6: exit
function __construct()
{
parent::__construct();
if (empty($_SERVER['HTTP_REFERER'])) {
exit('error 404');
}
}
示例7:
function __construct()
{
parent::__construct();
$this->load->library('user_agent');
$this->load->library('card');
$this->load->model('CsdjAdmin');
}
示例8:
function __construct()
{
parent::__construct();
$this->load->helper('dance');
$this->load->model('CsdjAdmin');
$this->CsdjAdmin->Admin_Login();
}
示例9:
function __construct()
{
parent::__construct();
//關閉數據庫緩存
$this->db->cache_off();
$this->load->model('CsdjTpl');
$this->load->model('CsdjUser');
}
示例10:
function __construct()
{
parent::__construct();
$this->load->library('user_agent');
$this->load->library('pinyin');
$this->load->model('CsdjAdmin');
$this->CsdjAdmin->Admin_Login();
}
示例11:
function __construct()
{
parent::__construct();
$this->load->helper('vod');
$this->load->model('CsdjTpl');
$this->load->model('CsdjUser');
$this->CsdjUser->User_Login();
}
示例12:
function __construct()
{
parent::__construct();
$this->load->model('CsdjAdmin');
$this->lang->load('admin_collect');
$this->CsdjAdmin->Admin_Login();
$this->load->library('caiji');
}
示例13:
function __construct()
{
parent::__construct();
$this->load->model('CsdjTpl');
$this->load->model('CsdjUser');
$this->lang->load('user');
$this->CsdjUser->User_Login();
}
示例14:
function __construct()
{
parent::__construct();
$this->load->model('CsdjAdmin');
$this->CsdjAdmin->Admin_Login();
$this->load->helper('directory');
$this->load->library('csapp');
$this->lang->load('admin_skin');
}
示例15:
function __construct()
{
parent::__construct();
$this->load->model('CsdjAdmin');
$this->CsdjAdmin->Admin_Login();
$this->load->helper('file');
$this->lang->load('admin_plugins');
$this->load->library('csapp');
}