Пример #1
0
 /**
  * Do not override this function.
  */
 public function processLogin()
 {
     $this->memorizeURL();
     $this->app->template->tryDel('Menu');
     $this->showLoginForm();
     $this->app->hook('post-init');
     $this->app->hook('pre-exec');
     if (isset($_GET['submit']) && $_POST) {
         $this->app->hook('submitted');
     }
     $this->app->hook('post-submit');
     $this->app->execute();
     exit;
 }