Beispiel #1
0
 private function onCrossLoginB(GWF_User $user)
 {
     if ($user->isDeleted()) {
         return GWF_HTML::err('ERR_NO_PERMISSION');
     }
     if (false === GWF_Session::onLogin($user, false, true)) {
         return $this->module->error('ERR_GENERAL', array(__FILE__, __LINE__));
     }
     return $this->module->message('msg_cross_login');
 }