Add information to Yii::app()->user by extending CWebUser (better version)

Comparing #7 with #8

Revision #8 was created by Anas AbuDayah Anas AbuDayah on Mar 13, 2014, 9:40:46 AM.

add getId function, add tags

Tags

Yii, user, rbac

Content

[...]
}

public function login($identity, $duration) {
$this->setState('__userInfo', $identity->getUser());
parent::login($identity, $duration);
}
 
 
/* 
 
* Required to checkAccess function
 
* Yii::app()->user->checkAccess('operation')
 
*/
 
public function getId()
 
{
 
return $this->id;
 
}

}
?>
```

remember to set that class as Yii::app()->user class:
[...]