本文整理汇总了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'));
}
}
示例2: init
public function init()
{
parent::init();
if (!$this->uid) {
$this->redirect(array('site/login'));
}
}
示例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的原创文章、精美图片及各类悉心收藏,快来看看吧!';
}
示例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的原创文章、精美图片及各类悉心收藏,快来看看吧!';
}
示例5: init
public function init()
{
parent::init();
}