ILIAS  release_7 Revision v7.30-3-g800a261c036
login.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
15// jump to setup if ILIAS3 is not installed
16if (!file_exists(getcwd() . "/ilias.ini.php")) {
17 header("Location: ./setup/setup.php");
18 exit();
19}
20
21require_once("Services/Init/classes/class.ilInitialisation.php");
23
24$ilCtrl->initBaseClass("ilStartUpGUI");
25$ilCtrl->setCmd('showLoginPageOrStartupPage');
26$ilCtrl->callBaseClass();
27$ilBench->save();
28
An exception for terminatinating execution or to throw for unit testing.
static initILIAS()
ilias initialisation
global $ilBench
Definition: ilias.php:21
exit
Definition: login.php:29