コード例 #1
0
ファイル: UserListener.php プロジェクト: 4nxiety/pagekit
 /**
  * Updates user's last access time
  */
 public function onUserAccess()
 {
     if ($user = App::user() and $user->isAuthenticated()) {
         User::updateAccess($user);
     }
 }