本文整理匯總了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";
}