Esempio n. 1
0
 /**
  * Logs out the current user and redirect to homepage.
  */
 public function actionLogout()
 {
     ## audit trail tracker
     AuditTrail::logout();
     ## logout user
     Yii::app()->user->logout();
     $this->redirect(Yii::app()->homeUrl);
 }