Beispiel #1
0
 /**
  * The last page of the installer, showing a few infos and links how to go on
  */
 public function finish()
 {
     $strReturn = "";
     if (isset($_GET["autoInstall"]) && $_GET["autoInstall"] == "true") {
         $this->strLogfile = $this->processAutoInstall();
     }
     $this->objSession->sessionUnset("install_username");
     $this->objSession->sessionUnset("install_password");
     $strReturn .= $this->getLang("installer_finish_intro");
     $strReturn .= $this->getLang("installer_finish_hints");
     $strReturn .= $this->getLang("installer_finish_hints_update");
     $strReturn .= $this->getLang("installer_finish_closer");
     $this->strOutput = $strReturn;
     $this->strBackwardLink = $this->getBackwardLink(_webpath_ . "/installer.php?step=samplecontent");
 }