本文整理汇总了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();
}