Final back of language id renaming (ticket #219)
[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  * -------------------------------------------------------------------- *
19  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
20  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
21  * For more information visit: http://mxchange.org                      *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // XDEBUG call
40 //* DEBUG: */ xdebug_start_trace();
41
42 // Load security stuff here
43 require('inc/libs/security_functions.php');
44
45 // Init start time
46 $GLOBALS['startTime'] = microtime(true);
47
48 // Set module/what
49 $GLOBALS['__module'] = 'index';
50 $GLOBALS['__what'] = 'welcome';
51
52 // Set CSS mode
53 $GLOBALS['output_mode'] = '0';
54
55 // Load config.php
56 require('inc/config-global.php');
57
58 // Fix what to 'home'
59 setWhat(getIndexHome());
60
61 // Shall we display 'home' in index.php?
62 if ((isExtensionInstalledAndNewer('sql_patches', '0.8.3')) && (isDisplayHomeInIndexEnabled())) {
63         // Include module (and exit in inc/footer.php)
64         doIncludeModule();
65 } // END - if
66
67 //////////////////////////////////////////////////
68 // Display regular index 'front' page from here
69 //////////////////////////////////////////////////
70
71 // Check for cookies
72 if ((isSessionVariableSet('visited')) || (getConfig('index_delay') > -1)) {
73         // Set content type
74         setContentType('text/html');
75
76         // Header
77         loadIncludeOnce('inc/header.php');
78
79         // Is the index page configured for redirect pr not?
80         if (getConfig('index_cookie') > 0) {
81                 // Set cookie and remeber it for specified time
82                 setSession('visited', 'true');
83         } elseif (isSessionVariableSet('visited')) {
84                 // Remove cookie when admin set 0 in setup
85                 setSession('visited', '');
86         }
87
88         // Template laden
89         loadTemplate('index');
90
91         // Shall I insert an automated forward?
92         if (getConfig('index_delay') > 0) {
93                 // This will be a JavaScript-redirect!
94                 $content['delay']  = (getConfig('index_delay') * 1000 + 500);
95                 $content['module'] = 'index';
96
97                 // Load template
98                 loadTemplate('index_forward', false, $content);
99         } // END - if
100
101         // Footer (which will call shutdown() for us)
102         loadIncludeOnce('inc/footer.php');
103 } else {
104         // Redirect to main page
105         redirectToUrl('modules.php?module=index');
106 }
107
108 // [EOF]
109 ?>