Even more variables renamed and login procedure prepared for filter
[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  * $Revision::                                                        $ *
15  * $Date::                                                            $ *
16  * $Tag:: 0.2.1-FINAL                                                 $ *
17  * $Author::                                                          $ *
18  * Needs to be in all Files and every File needs "svn propset           *
19  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
20  * -------------------------------------------------------------------- *
21  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )
41 require("inc/libs/security_functions.php");
42
43 // Init "action" and "what"
44 $GLOBALS['what'] = "";
45 $GLOBALS['action'] = "";
46
47 // Set module
48 $GLOBALS['module'] = "index";
49
50 // Set "CSS-Mode"
51 $GLOBALS['output_mode'] = "0";
52
53 // Load config.php
54 require("inc/config.php");
55
56 // Is the script installed?
57 if (isInstalled()) {
58         // Header
59         LOAD_INC("inc/header.php");
60
61         // Fix missing array elements here
62         if (!isConfigEntrySet('index_delay'))  setConfigEntry('index_delay' , 0);
63         if (!isConfigEntrySet('index_cookie')) setConfigEntry('index_cookie', 0);
64
65         // Check for cookies
66         if ((isSessionVariableSet('visited')) || (getConfig('index_delay') == 0) || (getConfig('index_cookie') == 0)) {
67                 // Is the index page configured for redirect pr not?
68                 if (getConfig('index_cookie') > 0) {
69                         // Set cookie and remeber it for specified time
70                         set_session('visited', "true");
71                 } elseif (isSessionVariableSet('visited')) {
72                         // Remove cookie when admin set 0 in setup
73                         set_session('visited', "");
74                 }
75
76                 // Template laden
77                 LOAD_TEMPLATE("index", false, ADD_URL_DATA(""));
78
79                 // Shall I insert an automated forward?
80                 if (getConfig('index_delay') > 0) {
81                         // This will be a JavaScript-redirect!
82                         define('__DELAY_VALUE', (getConfig('index_delay') * 1000 + 500));
83                         define('__MOD_VALUE'  , ADD_URL_DATA("index"));
84                         LOAD_TEMPLATE("index_forward");
85                 } // END - if
86         } else {
87                 // Redirect to main page
88                 LOAD_URL("modules.php?module=index");
89         }
90
91         // Footer
92         LOAD_INC("inc/footer.php");
93 } else {
94         // You have to install first!
95         LOAD_URL("install.php");
96 }
97
98 // All done here...
99 shutdown();
100
101 //
102 ?>