More rewrites of constants and fix for loading mass-included scripts by GET_DIR_AS_AR...
[mailer.git] / index.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/25/2003 *
4  * ===============                              Last change: 11/23/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : index.php                                        *
8  * -------------------------------------------------------------------- *
9  * Short description : Index page. A simple redirection to modules.php  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Index-Seite. Eine simple Weiterleitung auf die   *
12  *           modules.php                                                *
13  * -------------------------------------------------------------------- *
14  *                                                                      *
15  * -------------------------------------------------------------------- *
16  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
17  * For more information visit: http://www.mxchange.org                  *
18  *                                                                      *
19  * This program is free software; you can redistribute it and/or modify *
20  * it under the terms of the GNU General Public License as published by *
21  * the Free Software Foundation; either version 2 of the License, or    *
22  * (at your option) any later version.                                  *
23  *                                                                      *
24  * This program is distributed in the hope that it will be useful,      *
25  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
26  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
27  * GNU General Public License for more details.                         *
28  *                                                                      *
29  * You should have received a copy of the GNU General Public License    *
30  * along with this program; if not, write to the Free Software          *
31  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
32  * MA  02110-1301  USA                                                  *
33  ************************************************************************/
34
35 // Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )
36 require("inc/libs/security_functions.php");
37
38 // Init "action" and "what"
39 $GLOBALS['what'] = "";
40 $GLOBALS['action'] = "";
41
42 // Set module
43 $GLOBALS['module'] = "index";
44
45 // Set "CSS-Mode"
46 $GLOBALS['output_mode'] = "0";
47
48 // Load config.php
49 require("inc/config.php");
50
51 // Is the script installed?
52 if (isInstalled()) {
53         // Header
54         LOAD_INC("inc/header.php");
55
56         // Fix missing array elements here
57         if (!isConfigEntrySet('index_delay'))  setConfigEntry('index_delay' , 0);
58         if (!isConfigEntrySet('index_cookie')) setConfigEntry('index_cookie', 0);
59
60         // Check for cookies
61         if ((isSessionVariableSet('visited')) || (getConfig('index_delay') == 0) || (getConfig('index_cookie') == 0)) {
62                 // Is the index page configured for redirect pr not?
63                 if (getConfig('index_cookie') > 0) {
64                         // Set cookie and remeber it for specified time
65                         set_session('visited', "true");
66                 } elseif (isSessionVariableSet('visited')) {
67                         // Remove cookie when admin set 0 in setup
68                         set_session('visited', "");
69                 }
70
71                 // Template laden
72                 LOAD_TEMPLATE("index", false, ADD_URL_DATA(""));
73
74                 // Shall I insert an automated forward?
75                 if (getConfig('index_delay') > 0) {
76                         // This will be a JavaScript-redirect!
77                         define('__DELAY_VALUE', (getConfig('index_delay') * 1000 + 500));
78                         define('__MOD_VALUE'  , ADD_URL_DATA("index"));
79                         LOAD_TEMPLATE("index_forward");
80                 }
81         } else {
82                 // Redirect to main page
83                 LOAD_URL("modules.php?module=index");
84         }
85
86         // Footer
87         LOAD_INC("inc/footer.php");
88 } else {
89         // You have to install first!
90         LOAD_URL("install.php");
91 }
92
93 // All done here...
94 ?>