当前位置: 首页>>代码示例>>PHP>>正文


PHP CommonAction::__construct方法代码示例

本文整理汇总了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');
     }
 }
开发者ID:snowtl,项目名称:tanglang,代码行数:7,代码来源:CenterAction.class.php

示例2: D

 function __construct()
 {
     parent::__construct();
     $this->db = D("Model");
     $this->field_db = D("ModelField");
     $this->type_db = D("ModelType");
 }
开发者ID:lxp521125,项目名称:TP-Admin,代码行数:7,代码来源:ModelAction.class.php

示例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);
 }
开发者ID:tmlsoft,项目名称:main,代码行数:38,代码来源:DesingFormBaseAction.class.php

示例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");
 }
开发者ID:bqx619,项目名称:ones_dev,代码行数:7,代码来源:SystemUpdateAction.class.php

示例5: __construct

 public function __construct()
 {
     parent::__construct();
     $this->db = Db::getInstance();
     $this->max_size = 800000;
     //每卷800左右
 }
开发者ID:bharatthakkar,项目名称:stock-crowd-funding-system,代码行数:7,代码来源:DatabaseAction.class.php

示例6: __construct

 public function __construct()
 {
     parent::__construct();
     //        $this->pM = D('Product');
     //        $this->bM = D('Brand');
     //        $this->sM = D('Store');
 }
开发者ID:bennylii,项目名称:waterfall,代码行数:7,代码来源:IndexAction.class.php

示例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));
 }
开发者ID:eliu03,项目名称:fanweP2P,代码行数:7,代码来源:TransferAction.class.php

示例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();
 }
开发者ID:lxp521125,项目名称:TP-Admin,代码行数:8,代码来源:ContentAction.class.php

示例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');
 }
开发者ID:lxp521125,项目名称:TP-Admin,代码行数:8,代码来源:PositionAction.class.php

示例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);
 }
开发者ID:centaurustech,项目名称:crowdfunding-9,代码行数:9,代码来源:UserBankAction.class.php

示例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;
 }
开发者ID:BruceJi,项目名称:fanwe,代码行数:9,代码来源:NavAction.class.php

示例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']);
     }
 }
开发者ID:lxp521125,项目名称:TP-Admin,代码行数:10,代码来源:EnumCommonAction.class.php

示例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();
 }
开发者ID:qiuai,项目名称:tools,代码行数:11,代码来源:ProvinceAdvAction.class.php

示例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);
 }
开发者ID:xuyi5918,项目名称:ThinkPHPDistribution,代码行数:15,代码来源:IndexAction.class.php

示例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";
 }
开发者ID:ArronYR,项目名称:collect,代码行数:17,代码来源:IndexAction.class.php


注:本文中的CommonAction::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。