本文整理汇总了PHP中adminPage::adminPage方法的典型用法代码示例。如果您正苦于以下问题:PHP adminPage::adminPage方法的具体用法?PHP adminPage::adminPage怎么用?PHP adminPage::adminPage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类adminPage
的用法示例。
在下文中一共展示了adminPage::adminPage方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
function ctl_kft(){
parent::adminPage();
$this->kft=&$this->system->loadModel('service/kft');
$this->certi_id=$this->kft->getCerti();
$this->token=$this->kft->getToken();
$this->API_URL='http://api-client.shopex.cn/api.php';
}
示例2:
function admin_sales_ctl()
{
parent::adminPage();
$appmgr = $this->system->loadModel('system/appmgr');
$tb_api =& $appmgr->load('tb_sales_download');
$this->tb =& $tb_api;
}
示例3:
function ctl_supplier()
{
parent::adminPage();
if (!$this->system->getConf('certificate.distribute')) {
$this->errorJump();
}
}
示例4:
function ctl_certificate()
{
parent::adminPage();
$this->lang = 'zh-cn';
$this->base_url = 'http://service.shopex.cn/info.php';
$this->sess_id = $this->system->session->sess_id;
$this->license_url = "index.php?ctl=service/certificate&act=download";
}
示例5: objectPage
function objectPage()
{
parent::adminPage();
$this->model =& $this->system->loadModel($this->object);
$frontend =& $this->system->loadModel('system/frontend');
$frontend->register_function('toolset', array(&$this, '_getTools'));
$this->objectName = substr(get_class($this), 4);
$this->path[] = array('text' => $this->name . '管理', 'url' => 'index.php?ctl=' . $_GET['ctl'] . '&act=index');
}
示例6:
function ctl_demo_data()
{
parent::adminPage();
}
示例7:
function ctl_dashboard()
{
parent::adminPage();
$system =& $GLOBALS['system'];
$system->__session_close(false);
}
示例8:
function admin_stat_ctl()
{
parent::adminPage();
}
示例9:
function ctl_template()
{
parent::adminPage();
regex_file($_GET);
}
示例10:
/**
* construct the wss
*/
function ctl_wss()
{
parent::adminPage();
$this->ENCODESTR = 'A34dfwfF';
}
示例11: array
function ctl_addon()
{
$this->path[] = array('text' => '工具箱', 'url' => 'index.php?ctl=system/tools&act=welcome');
$this->path[] = array('text' => '网店扩展');
parent::adminPage();
}
示例12: objectPage
function objectPage()
{
parent::adminPage();
$this->model =& $this->system->loadModel($this->object);
$this->path[] = array('text' => $this->name . __('管理'), 'url' => 'index.php?ctl=' . $_GET['ctl'] . '&act=index');
}
示例13: array
function ctl_tools()
{
parent::adminPage();
$this->path = array(array('text' => __('工具箱')));
}