码迷,mamicode.com
首页 > 其他好文 > 详细

Yii 动作过滤的方法

时间:2014-12-04 19:49:58      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   sp   for   on   

bubuko.com,布布扣

 

 

 

 

bubuko.com,布布扣

 1     protected function _init()
 2     {
 3          4     }
 5     
 6     public function beforeAction($action)
 7     {
 8         //黑名单
 9         $blackList = array(‘test‘,‘login‘,‘registe‘,‘logout‘);
10         $action = $this->getAction()->getId();
11         if(!in_array($action, $blackList)){
12             parent::init();
13         }
14         return TRUE;
15     }



 

 

    protected $userId = 0;
    
    public function init()
    {
        header(‘Content-type:text/html;charset=utf-8‘);
        Yii::import(‘ext.functions‘, true); //加载公共函数
        $this->getUserId();
    }
    
    //获取用户
    protected function getUserId()
    {
        $userTicket = getRParam(‘ticket‘, ‘‘);
        Yii::app()->ssoClient->init($userTicket);
        $this->userId = (int)Yii::app()->ssoClient->userid;
    }
    
    public function filters()
    {
        return array(‘CheckLogin - login, registe, logout‘);
    }
    
    public function filterCheckLogin($chain)
    {
        if($this->userId > 0)
            $chain->run();
        else
            $this->ajaxError(100, ‘用户验证失败或已过期‘);
    }
    

 

Yii 动作过滤的方法

标签:style   blog   http   io   ar   color   sp   for   on   

原文地址:http://www.cnblogs.com/jami918/p/4143557.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!