本文整理汇总了PHP中desktop_controller类的典型用法代码示例。如果您正苦于以下问题:PHP desktop_controller类的具体用法?PHP desktop_controller怎么用?PHP desktop_controller使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了desktop_controller类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct(&$app)
{
if (defined('WITHOUT_DESKTOP_RPCNOTIFY') && constant('WITHOUT_DESKTOP_RPCNOTIFY')) {
die(app::get('desktop')->_('通知已被禁用'));
}
parent::__construct($app);
}
示例2: __construct
public function __construct($app)
{
parent::__construct($app);
header("cache-control: no-store, no-cache, must-revalidate");
//$cnt = kernel::single('b2c_shop')->getShopBindStatus();
$this->pagedata['cnt'] = $cnt;
}
示例3: __construct
public function __construct($app)
{
parent::__construct($app);
header('cache-control: no-store, no-cache, must-revalidate');
$this->mPages = $this->app->model('pages');
$this->_request = vmc::singleton('base_component_request');
}
示例4: __construct
/**
* 췽
* @params object app object
* @return null
*/
public function __construct($app)
{
parent::__construct($app);
header("cache-control: no-store, no-cache, must-revalidate");
$this->certi_id = base_certificate::certi_id();
$this->token = base_certificate::token();
}
示例5: header
function __construct($app)
{
parent::__construct($app);
$this->ui = new base_component_ui($this);
$this->app = $app;
header("cache-control: no-store, no-cache, must-revalidate");
}
示例6: __construct
public function __construct($app)
{
parent::__construct($app);
$this->app = $app;
//$this->mAd = $this->app->model('ad');
$this->mSetting = $this->app->model('setting');
}
示例7:
function __construct($app)
{
parent::__construct($app);
$this->_request = kernel::single('base_component_request');
$this->_response = kernel::single('base_component_response');
$this->_qrcode_model = $this->app->model('qrcode');
}
示例8: index
function index($cpnsId = null)
{
if ($cpnsId) {
parent::index(array('params' => array('cpns_id' => $cpnsId)));
} else {
parent::index();
}
}
示例9: __construct
public function __construct(&$app)
{
parent::__construct($app);
if (!$this->user->is_super()) {
header('Content-Type:text/html; charset=utf-8');
echo '您无权操作';
exit;
}
}
示例10: __construct
/**
* 构造方法
* @param object $app
* @access public
* @version 2 Jun 20, 2011 修改
*/
public function __construct($app)
{
//调用父类构造方法
parent::__construct($app);
//初始化请求
$this->_request = kernel::single('base_component_request');
//初始化响应
$this->_response = kernel::single('base_component_response');
}
示例11: __construct
public function __construct($app)
{
parent::__construct($app);
header('cache-control: no-store, no-cache, must-revalidate');
$this->mPages = $this->app->model('pages');
$this->mPosition = $this->app->model('pages_position');
$this->mContent = $this->app->model('pages_content');
$this->_request = vmc::singleton('base_component_request');
$this->_filter = $this->_request->get_get('filter');
}
示例12: page
function page($page = '')
{
$get_params = $_GET;
unset($get_params['menu']);
$this->pagedata['_QUERY_STRING'] = http_build_query($get_params);
$this->pagedata['_PAGE_'] = $page;
if (true) {
$this->pagedata['_ACTIONS_'] = array('inbox' => '事务', 'account' => '账号', 'status' => '状态');
}
parent::display('flow/page.html');
}
示例13: header
function __construct($app)
{
header("cache-control: no-store, no-cache, must-revalidate");
kernel::single('base_session')->start();
$o = kernel::single("desktop_user");
$o->user_data['status'] = true;
if (!$o->get_id()) {
exit('error');
}
parent::__construct($app);
}
示例14: __construct
public function __construct(&$app)
{
if (defined('WITHOUT_DESKTOP_APPMGR') && constant('WITHOUT_DESKTOP_APPMGR')) {
die(app::get('desktop')->_('APP管理已被禁用'));
}
parent::__construct($app);
if (!$this->user->is_super()) {
header('Content-Type:text/html; charset=utf-8');
echo "您无权操作";
exit;
}
}
示例15: __construct
public function __construct($app)
{
parent::__construct($app);
header("cache-control: no-store, no-cache, must-revalidate");
define('DPGB_TMP_MODE', 1);
define('DPGB_HOME_MODE', 2);
$this->pagedata['dpi'] = intval(app::get('b2c')->getConf('system.clientdpi'));
if (!$this->pagedata['dpi']) {
$this->pagedata['dpi'] = 96;
}
$this->model = $this->app->model('print_tmpl');
$this->o =& app::get('image')->model('image_attach');
$this->obj = $this;
}