| <?php | |
| header("Location: http://wiki.eclipse.org/IT_Infrastructure_Doc"); | |
| exit; | |
| require_once("/home/data/httpd/eclipse-php-classes/system/app.class.php"); | |
| require_once("/home/data/httpd/eclipse-php-classes/people/ldapperson.class.php"); | |
| require_once("/home/data/httpd/eclipse-php-classes/menu/menu.class.php"); | |
| #***************************************************************************** | |
| # | |
| # status.php | |
| # | |
| # Author: Denis Roy | |
| # Date: 2005-04-04 | |
| # | |
| # Description: Get infrastructure status | |
| # | |
| # HISTORY: | |
| # | |
| #**************************************************************************** | |
| $App = new App(); | |
| $App->runStdWebAppCacheable(); | |
| $LDAPPerson = new LDAPPerson(); | |
| $LDAPPerson = $LDAPPerson->redirectIfNotLoggedIn(); | |
| # Incoming parameters | |
| $_STATE = ($_GET['state'] ? $_GET['state'] : $_POST['state']); | |
| include("inc/en_howdoi.php"); | |
| ?> |