Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- class WebUser extends CWebUser
- {
- public function afterLogout()
- {
- $userrecord = new Userrecord();
- $userrecord->userName = Yii::app()->user->name; // is this working?
- $userrecord->save();
- parent::afterLogout();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement