Old lost code removed
[mailer.git] / index.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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 - 2009 by Roland Haeder                           *
22  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
23  * For more information visit: http://www.mxchange.org                  *
24  *                                                                      *
25  * This program is free software; you can redistribute it and/or modify *
26  * it under the terms of the GNU General Public License as published by *
27  * the Free Software Foundation; either version 2 of the License, or    *
28  * (at your option) any later version.                                  *
29  *                                                                      *
30  * This program is distributed in the hope that it will be useful,      *
31  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
32  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
33  * GNU General Public License for more details.                         *
34  *                                                                      *
35  * You should have received a copy of the GNU General Public License    *
36  * along with this program; if not, write to the Free Software          *
37  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
38  * MA  02110-1301  USA                                                  *
39  ************************************************************************/
40
41 // Load security stuff here
42 require('inc/libs/security_functions.php');
43
44 // Init start time
45 $GLOBALS['startTime'] = microtime(true);
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-global.php');
55
56 // Set content type
57 setContentType('text/html');
58
59 // Fix missing array elements here
60 if (!isConfigEntrySet('index_delay'))  setConfigEntry('index_delay' , 0);
61 if (!isConfigEntrySet('index_cookie')) setConfigEntry('index_cookie', 0);
62
63 // Check for cookies
64 if ((isSessionVariableSet('visited')) || (getConfig('index_delay') > -1)) {
65         // Header
66         loadIncludeOnce('inc/header.php');
67
68         // Is the index page configured for redirect pr not?
69         if (getConfig('index_cookie') > 0) {
70                 // Set cookie and remeber it for specified time
71                 setSession('visited', 'true');
72         } elseif (isSessionVariableSet('visited')) {
73                 // Remove cookie when admin set 0 in setup
74                 setSession('visited', '');
75         }
76
77         // Template laden
78         loadTemplate('index');
79
80         // Shall I insert an automated forward?
81         if (getConfig('index_delay') > 0) {
82                 // This will be a JavaScript-redirect!
83                 $content['delay']  = (getConfig('index_delay') * 1000 + 500);
84                 $content['module'] = 'index';
85
86                 // Load template
87                 loadTemplate('index_forward', false, $content);
88         } // END - if
89
90         // Footer
91         loadIncludeOnce('inc/footer.php');
92 } else {
93         // Redirect to main page
94         redirectToUrl('modules.php?module=index');
95 }
96
97 // [EOF]
98 ?>