本文整理汇总了PHP中CommonAction::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP CommonAction::__construct方法的具体用法?PHP CommonAction::__construct怎么用?PHP CommonAction::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CommonAction
的用法示例。
在下文中一共展示了CommonAction::__construct方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct()
{
parent::__construct();
if (empty($_SESSION['info']['a_name'])) {
$this->redirect('Login/index');
}
}
示例2: D
function __construct()
{
parent::__construct();
$this->db = D("Model");
$this->field_db = D("ModelField");
$this->type_db = D("ModelType");
}
示例3: __construct
/**
* 构造函数,父类
* @Title: __construct
* @Description: todo(基础构造函数)
*
* @author quqiang
* @date 2015年5月12日 下午4:37:55
* @throws
*
*/
public function __construct()
{
parent::__construct();
// 加载基础配置信息
$dir = CONF_PATH;
$configDir = $dir . 'desing.php';
if (!file_exists($configDir)) {
$msg = '文件 ' . $configDir . ' 不存在!';
throw new NullDataExcetion($msg);
}
require $configDir;
$this->default = $desing_default;
$this->controls = $desing_controll;
// 合并组件配置元素
if ($this->controls && $this->default) {
unset($temp);
foreach ($this->controls as $k => $v) {
$array = array_merge($this->default, $v['property']);
sortArray($array, 'sort');
$temp[$k] = $array;
}
$this->controlsConfig = $temp;
}
$this->assign('config', $this->controlsConfig);
$this->assign('control', $this->controls);
$this->assign('tagIndentity', $this->tagIndentity);
$this->assign('propertyTagType', $this->propertyTagType);
}
示例4: __construct
public function __construct()
{
parent::__construct();
$this->server = DBC("remote.service.uri") . "Update/";
$this->local = ENTRY_PATH . "/Data/Updates/";
$this->currentVersion = DBC("system.version");
}
示例5: __construct
public function __construct()
{
parent::__construct();
$this->db = Db::getInstance();
$this->max_size = 800000;
//每卷800左右
}
示例6: __construct
public function __construct()
{
parent::__construct();
// $this->pM = D('Product');
// $this->bM = D('Brand');
// $this->sM = D('Store');
}
示例7: __construct
public function __construct()
{
require APP_ROOT_PATH . "app/Lib/common.php";
require APP_ROOT_PATH . "app/Lib/deal.php";
parent::__construct();
parent::assign('main_title', L(MODULE_NAME . "_" . ACTION_NAME));
}
示例8: D
function __construct()
{
parent::__construct();
$this->db = D("Content");
$this->model_db = D("Model");
$this->category_db = D("Category");
// $this->categorys = D('Category')->where("siteid = %d", $this->siteid)->select();
}
示例9: D
function __construct()
{
parent::__construct();
$this->db = D('Position');
$this->data_db = D('PositionData');
$this->model_db = D('Model');
$this->type_db = D('ModelType');
}
示例10: __construct
public function __construct()
{
parent::__construct();
//会员名
$user_id = intval($_REQUEST['user_id']);
$username = M("user")->where("id=" . $user_id)->getField("user_name");
$this->assign("username", $username);
$this->assign("user_id", $user_id);
}
示例11: __construct
public function __construct()
{
parent::__construct();
$nav = array('index' => array('name' => '首页'), 'deals' => array('name' => '项目列表', 'acts' => array('index' => '列表')), 'investor' => array('name' => '天使投资人', 'acts' => array('invester_list' => '列表')), 'deal' => array('name' => '项目详情', 'acts' => array('show' => '详情', 'update' => '动态', 'support' => '支持', 'comment' => '评论')), 'news' => array('name' => '动态', 'acts' => array('index' => '最新', 'fav' => '关注')), 'article_cate' => array('name' => '文章列表'), 'article' => array('name' => '文章内容', 'acts' => array('index' => '详情')), 'faq' => array('name' => '新手帮助'));
if (LICAI_TYPE) {
$nav['licai'] = array('name' => '理财模块', 'acts' => array('index' => '理财首页', 'deals' => '理财列表页', 'deal' => '理财详情页'));
}
$this->navs = $nav;
}
示例12: M
function __construct()
{
parent::__construct();
$this->node = M('Node')->where("id = %d", $_GET['cid'])->find();
if (isset($_GET['tablename'])) {
$this->db = D(trim($_GET['tablename']));
} else {
$this->db = D($node['module']);
}
}
示例13: __construct
public function __construct()
{
$this->provinceInfo = C('APPOINT_AD_PROVINCE');
$provinceIds = array();
foreach ($this->provinceInfo as $value) {
$provinceIds[] = $value['id'];
}
$this->provinceIds = $provinceIds;
//var_dump($_SESSION);
parent::__construct();
}
示例14: __construct
public function __construct()
{
parent::__construct();
$admin = M('Admin')->where('id=' . $this->LOGIN_KEY)->find();
$admin_name = $admin['name'] ? $admin['name'] : $admin['username'];
$this->assign('admin_name', $admin_name);
if ($admin['role_id']) {
$adminrole = M('Admin_role')->where('id=' . $admin['role_id'])->find();
$admin_role = $adminrole['name'];
} else {
$admin_role = '测试管理员->系统开发';
}
$this->assign('admin_role', $admin_role);
//dump($admin);
}
示例15: Snoopy
function __construct()
{
parent::__construct();
//伪装
$this->snoopy = new Snoopy();
$this->snoopy->agent = "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.97 Safari/537.11";
//伪装浏览器
$this->snoopy->rawheaders["Pragma"] = "no-cache";
//cache 的http头信息
//$this->snoopy->rawheaders["X_FORWARDED_FOR"] = "222.28.40.101"; //伪装ip
$this->snoopy->rawheaders["X-Requested-With"] = "XMLHttpRequest";
//伪装AJAX
$this->snoopy->rawheaders["Accept"] = "*/*; q=0.01";
//伪装AJAX
//$this->snoopy->rawheaders["Cookie"] = "JSESSIONID=C30C576FF8B75E962644997ECFC25D12;"; //伪装AJAX
//$this->snoopy->rawheaders["Referer"] = "http://www.simsimi.com/talk.htm?lc=ch";
}