Ejemplo n.º 1
0
 /**
  * Show login for if user is not authorized yet and if
  * not in first installation process.
  *
  * @return void
  */
 protected function outputLoginFormIfNotAuthorized()
 {
     if (!$this->session->isAuthorized() && !$this->isInitialInstallationInProgress()) {
         $this->output($this->loginForm());
     } else {
         $this->session->refreshSession();
     }
 }