本文整理匯總了PHP中adminReadBase::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP adminReadBase::__construct方法的具體用法?PHP adminReadBase::__construct怎麽用?PHP adminReadBase::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類adminReadBase
的用法示例。
在下文中一共展示了adminReadBase::__construct方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: __construct
public function __construct()
{
$this->mPrmsMethods = array('manage' => '管理', '_node' => array('name' => '小店分類', 'filename' => 'cat.php', 'node_uniqueid' => 'cat_node'));
parent::__construct();
include CUR_CONF_PATH . 'lib/fleamarket.class.php';
$this->obj = new road();
}
示例2: __construct
public function __construct()
{
parent::__construct();
$this->obj = new Core();
include CUR_CONF_PATH . 'lib/UpYun.class.php';
$this->upyun = new UpYun();
}
示例3: __construct
public function __construct()
{
parent::__construct();
$this->archiveContent = new archiveContent();
$this->archive_id = intval($this->input['archive_id']);
$this->tableName = $this->archiveContent->get_tableName_by_id($this->archive_id);
}
示例4: __construct
public function __construct()
{
parent::__construct();
$this->mode = new leancloud_user();
$this->applant = new app();
$this->company = new company();
}
示例5: __construct
public function __construct()
{
parent::__construct();
$this->mode = new developer_auth_mode();
$this->app_info_mode = new app_info_mode();
$this->app = new app();
}
示例6:
function __construct()
{
parent::__construct();
if ($this->mNeedCheckIn && !$this->prms['program']) {
$this->errorOutput(NO_OPRATION_PRIVILEGE);
}
}
示例7: __construct
public function __construct()
{
parent::__construct();
/*********權限驗證開始*********/
$this->verify_content_prms(array('_action' => 'show'));
/*********權限驗證結束*********/
}
示例8: __construct
public function __construct()
{
$this->mPrmsMethods = array('show' => '查看', 'operate' => '操作', 'delete' => '刪除', 'audit' => '審核', '_node' => array('name' => '地鐵分類', 'filename' => 'subway_sort.php', 'node_uniqueid' => 'subway_sort'));
parent::__construct();
include CUR_CONF_PATH . 'lib/subway.class.php';
$this->obj = new subway();
}
示例9: __construct
public function __construct()
{
$this->mPrmsMethods = array('show' => '查看', 'manage' => '管理');
parent::__construct();
class_exists('emailSettings') or (require CUR_CONF_PATH . 'lib/email_settings.class.php');
$this->mEmailSettings = new emailSettings();
}
示例10: __construct
public function __construct()
{
$this->mPrmsMethods = array('manage' => '管理', '_node' => array('name' => '會員分類', 'filename' => 'member_node.php', 'node_uniqueid' => 'member_node'));
parent::__construct();
require_once CUR_CONF_PATH . 'lib/member.class.php';
$this->mMember = new member();
}
示例11: __construct
public function __construct()
{
$this->mPrmsMethods = array('show' => '查看', 'create' => '增加', 'update' => '修改', 'delete' => '刪除', 'audit' => '狀態', '_node' => array('name' => '頻道分類', 'filename' => 'channel_node.php', 'node_uniqueid' => 'channel_node'));
parent::__construct();
require_once CUR_CONF_PATH . 'lib/channel.class.php';
$this->mChannel = new channel();
}
示例12: __construct
public function __construct()
{
$this->mPrmsMethods = array('show' => '查看', 'presenter' => '主持人頁', 'director' => '導播頁', 'manage' => '管理', '_node' => array('name' => '頻道', 'filename' => 'node.php', 'node_uniqueid' => 'topic'));
parent::__construct();
include_once CUR_CONF_PATH . 'lib/mode.class.php';
$this->mode = new mode();
}
示例13: __construct
public function __construct()
{
parent::__construct();
$this->obj = new Core();
$this->stateconfig = $this->settings['order_status'];
$this->trace_stepconfig = $this->settings['trace_step'];
}
示例14: __construct
public function __construct()
{
parent::__construct();
$this->mode = new report_center_mode();
$this->app = new app();
$this->members = new members();
}
示例15: __construct
/**
* 構造函數
* @author wangleyuan
* @category hogesoft
* @copyright hogesoft
* @include recycle.class.php
*/
public function __construct()
{
$this->mPrmsMethods = array('manage' => '管理', '_node' => array('name' => '回收站節點', 'filename' => 'recycle_node.php', 'node_uniqueid' => 'recycle_node'));
parent::__construct();
include CUR_CONF_PATH . 'lib/recycle.class.php';
$this->obj = new recycle();
}