10525b30e92d5075bb8103bb64ca366b1d14b7a4
[mailer.git] / inc / modules / index.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/23/2003 *
4  * ===============                              Last change: 03/27/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : index.php                                        *
8  * -------------------------------------------------------------------- *
9  * Short description : Entrance page                                    *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Eingangsseite                                    *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
21  * For more information visit: http://www.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 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
42         require($INC);
43 } elseif (!EXT_IS_ACTIVE('sql_patches')) {
44         // The extension 'sql_patches' *MUST* be activated or you have lot's of problems!
45         redirectToUrl('modules.php?module=admin&amp;ext_missing=sql_patches');
46 }
47
48 // Load adverstising template
49 define('__GUEST_ADVERT', LOAD_TEMPLATE('guest_advert', true));
50
51 // Generate a tableset for the menu title and content
52 LOAD_TEMPLATE('guest_header');
53
54 // Add code-message here
55 handleCodeMessage();
56
57 // Some of you needs this to be extracted into a template... ???
58 LOAD_TEMPLATE('guest_menu_td');
59
60 // When no what value is provided take the "home" value
61 if (!isWhatSet()) setWhatFromConfig('index_home');
62
63 // Adding the main content module here
64 if (!isActionSet()) {
65         // Get action value from what value
66         setAction(getModeAction('guest', getWhat()));
67 } // END - if
68
69 // Add the guest's menu here...
70 if ((getConfig('guest_menu') == 'Y') || (!EXT_IS_ACTIVE('sql_patches', true))) {
71         // Show only when guest menu is active
72         ADD_MENU('guest', getAction(), getWhat());
73 } // END - if
74
75 // TDs between menu and content
76 LOAD_TEMPLATE('guest_menu_content');
77
78 // Disable block-mode by default
79 $GLOBALS['block_mode'] = false;
80
81 // Construct FQFN
82 $INC = sprintf("inc/modules/guest/action-%s.php", getAction());
83
84 // Is the file there?
85 if ((isIncludeReadable($INC)) && (isMenuActionValid('guest', getAction(), getWhat()))) {
86         // Requested module is available so we load it
87         loadIncludeOnce($INC);
88 } else {
89         // Invalid module specified or not found...
90         redirectToUrl('modules.php?module=index');
91 }
92
93 if ((getConfig('guest_menu') == 'Y') || (!EXT_IS_ACTIVE('sql_patches', true))) {
94         // Right side of content (hint: a good place for 120x600 skyscraper banner!)
95         LOAD_TEMPLATE('guest_content_footer');
96
97         // Some advertising stuff?
98         LOAD_TEMPLATE('guest_advert2');
99
100         OUTPUT_HTML("  </td>
101 </tr>");
102
103         // Goto TOP template
104         LOAD_TEMPLATE('guest_goto_top');
105 } // END - if
106
107 // Footer template (Thanx to Mr. Glaus!)
108 LOAD_TEMPLATE('guest_footer');
109
110 //
111 ?>