当前位置: 首页>>代码示例>>PHP>>正文


PHP Q::init方法代码示例

本文整理汇总了PHP中Q::init方法的典型用法代码示例。如果您正苦于以下问题:PHP Q::init方法的具体用法?PHP Q::init怎么用?PHP Q::init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Q的用法示例。


在下文中一共展示了Q::init方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: init

 public function init()
 {
     parent::init();
     if (!Yii::app()->request->isAjaxRequest) {
         $this->jsonOutPut(0, Yii::t('default', 'forbiddenaction'));
     }
 }
开发者ID:ph7pal,项目名称:mei,代码行数:7,代码来源:AjaxController.php

示例2: init

 public function init()
 {
     parent::init();
     if (!$this->uid) {
         $this->redirect(array('site/login'));
     }
 }
开发者ID:ph7pal,项目名称:momo,代码行数:7,代码来源:UsersController.php

示例3: init

 function init()
 {
     parent::init();
     $this->layout = 'user';
     if (!$this->uid) {
         $this->redirect(array('site/login'));
     }
     if ($this->uid == zmf::uid()) {
         $this->mySelf = 'yes';
     }
     $this->pageTitle = $this->userInfo['truename'] . ' - ' . zmf::config('sitename');
     $this->mobileTitle = '个人中心';
     $this->pageDescription = $this->userInfo['truename'] . '的【' . zmf::config('sitename') . '】的个人主页,包括TA的原创文章、精美图片及各类悉心收藏,快来看看吧!';
 }
开发者ID:ph7pal,项目名称:naodong,代码行数:14,代码来源:UsersController.php

示例4: init

 function init()
 {
     parent::init();
     if ($this->isMobile == 'yes') {
         $this->message(0, '感谢你的支持!本页面暂还在拼命制作中...');
     }
     $this->uid = zmf::filterInput($_GET['id']);
     if (!$this->uid) {
         $this->uid = zmf::uid();
     }
     if (!$this->uid) {
         $this->redirect(array('site/login'));
     }
     if ($this->uid == zmf::uid()) {
         $this->mySelf = 'yes';
     }
     $this->userInfo = Users::getUserInfo($this->uid);
     $this->pageTitle = $this->userInfo['username'] . ' - ' . zmf::config('sitename');
     $this->pageDescription = $this->userInfo['username'] . '的【' . zmf::config('sitename') . '】的个人主页,包括TA的原创文章、精美图片及各类悉心收藏,快来看看吧!';
 }
开发者ID:ph7pal,项目名称:mei,代码行数:20,代码来源:UsersController.php

示例5: init

 public function init()
 {
     parent::init();
 }
开发者ID:ph7pal,项目名称:naodong,代码行数:4,代码来源:SiteController.php


注:本文中的Q::init方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。