예제 #1
0
 public function login()
 {
     $form = Authentification::$form;
     $id = $user->callLoginProcess(Authentification::$login_user, Authentification::$login_pwd);
     echo '<pre style="font-family: sans-serif; font-size: 1.5rem;display:block; width: 100%; word-wrap: break-word;">';
     var_dump($id);
     echo '</pre>';
     if ($id) {
     } else {
         Tools::throwWarningMessage('wrong identification');
     }
     Authentification::isMemberConnected();
 }