本文整理汇总了PHP中Cscms_Controller类的典型用法代码示例。如果您正苦于以下问题:PHP Cscms_Controller类的具体用法?PHP Cscms_Controller怎么用?PHP Cscms_Controller使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Cscms_Controller类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1:
function __construct()
{
parent::__construct();
$this->load->helper('string');
$this->load->library('user_agent');
$this->lang->load('user');
}
开发者ID:djqhuan,项目名称:CSCMS-v4.0-UTF8,代码行数:7,代码来源:reg.php
示例2:
function __construct()
{
parent::__construct();
$this->load->library('user_agent');
//关闭数据库缓存
$this->db->cache_off();
}
开发者ID:djqhuan,项目名称:CSCMS-v4.0-UTF8,代码行数:7,代码来源:ulog.php
示例3:
function __construct()
{
parent::__construct();
$this->load->helper('dance');
$this->load->model('CsdjTpl');
$this->load->model('CsdjUser');
}
开发者ID:djqhuan,项目名称:CSCMS-v4.0-UTF8,代码行数:7,代码来源:playsong.php
示例4:
function __construct()
{
parent::__construct();
$this->load->model('CsdjAdmin');
$this->lang->load('admin_pl');
$this->CsdjAdmin->Admin_Login();
}
开发者ID:djqhuan,项目名称:CSCMS-v4.0-UTF8,代码行数:7,代码来源:pl.php
示例5:
function __construct()
{
parent::__construct();
$this->load->helper('vod');
$this->load->model('CsdjTpl');
//装载视图模型
}
开发者ID:djqhuan,项目名称:CSCMS-v4.0-UTF8,代码行数:7,代码来源:topic.php
示例6: exit
function __construct()
{
parent::__construct();
if (empty($_SERVER['HTTP_REFERER'])) {
exit('error 404');
}
}
开发者ID:djqhuan,项目名称:CSCMS-v4.0-UTF8,代码行数:7,代码来源:pic.php
示例7:
function __construct()
{
parent::__construct();
$this->load->library('user_agent');
$this->load->library('card');
$this->load->model('CsdjAdmin');
}
开发者ID:djqhuan,项目名称:CSCMS-v4.0-UTF8,代码行数:7,代码来源:login.php
示例8:
function __construct()
{
parent::__construct();
$this->load->helper('dance');
$this->load->model('CsdjAdmin');
$this->CsdjAdmin->Admin_Login();
}
开发者ID:djqhuan,项目名称:CSCMS-v4.0-UTF8,代码行数:7,代码来源:topic.php
示例9:
function __construct()
{
parent::__construct();
//关闭数据库缓存
$this->db->cache_off();
$this->load->model('CsdjTpl');
$this->load->model('CsdjUser');
}
开发者ID:djqhuan,项目名称:CSCMS-v4.0-UTF8,代码行数:8,代码来源:pl.php
示例10:
function __construct()
{
parent::__construct();
$this->load->library('user_agent');
$this->load->library('pinyin');
$this->load->model('CsdjAdmin');
$this->CsdjAdmin->Admin_Login();
}
开发者ID:djqhuan,项目名称:CSCMS-v4.0-UTF8,代码行数:8,代码来源:opt.php
示例11:
function __construct()
{
parent::__construct();
$this->load->helper('vod');
$this->load->model('CsdjTpl');
$this->load->model('CsdjUser');
$this->CsdjUser->User_Login();
}
开发者ID:djqhuan,项目名称:CSCMS-v4.0-UTF8,代码行数:8,代码来源:look.php
示例12:
function __construct()
{
parent::__construct();
$this->load->model('CsdjAdmin');
$this->lang->load('admin_collect');
$this->CsdjAdmin->Admin_Login();
$this->load->library('caiji');
}
开发者ID:djqhuan,项目名称:CSCMS-v4.0-UTF8,代码行数:8,代码来源:collect.php
示例13:
function __construct()
{
parent::__construct();
$this->load->model('CsdjTpl');
$this->load->model('CsdjUser');
$this->lang->load('user');
$this->CsdjUser->User_Login();
}
开发者ID:djqhuan,项目名称:CSCMS-v4.0-UTF8,代码行数:8,代码来源:gbook.php
示例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');
}
开发者ID:djqhuan,项目名称:CSCMS-v4.0-UTF8,代码行数:9,代码来源:skin.php
示例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');
}
开发者ID:djqhuan,项目名称:CSCMS-v4.0-UTF8,代码行数:9,代码来源:plugins.php
示例16:
function __construct()
{
parent::__construct();
$this->load->library('user_agent');
if (!$this->agent->is_referral()) {
show_error('您访问的页面不存在~!', 404, Web_Name . '提醒您');
}
//关闭数据库缓存
$this->db->cache_off();
}
开发者ID:djqhuan,项目名称:CSCMS-v4.0-UTF8,代码行数:10,代码来源:hits.php
示例17: L
function __construct()
{
parent::__construct();
$this->load->library('user_agent');
if (!$this->agent->is_referral()) {
show_error(L('dance_01'), 404, Web_Name . L('dance_02'));
}
//关闭数据库缓存
$this->db->cache_off();
}
开发者ID:djqhuan,项目名称:CSCMS-v4.0-UTF8,代码行数:10,代码来源:hits.php
示例18: define
function __construct()
{
parent::__construct();
$this->load->model('CsdjTpl');
$this->load->model('CsdjUser');
$this->lang->load('home');
if (!defined('HOMEPATH')) {
define('HOMEPATH', 'home');
}
}
开发者ID:djqhuan,项目名称:CSCMS-v4.0-UTF8,代码行数:10,代码来源:gbook.php
示例19: L
function __construct()
{
parent::__construct();
$this->lang->load('home');
$this->load->library('user_agent');
if (!$this->agent->is_referral()) {
show_error(L('ajax_01'), 404, Web_Name . L('ajax_02'));
}
//关闭数据库缓存
$this->db->cache_off();
$this->load->model('CsdjUser');
}
开发者ID:djqhuan,项目名称:CSCMS-v4.0-UTF8,代码行数:12,代码来源:ajax.php
示例20: array
function __construct()
{
parent::__construct();
$this->load->helper('file');
$this->load->model('CsdjAdmin');
$this->CsdjAdmin->Admin_Login();
$this->lang->load('admin_upgrade');
$this->_upgrade = "http://upgrade.chshcms.com/";
//程序升级地址
$this->_filearr = array('.', 'packs', 'cscms');
//MD5效验目录
}
开发者ID:djqhuan,项目名称:CSCMS-v4.0-UTF8,代码行数:12,代码来源:upgrade.php
注:本文中的Cscms_Controller类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论