RevBomb patch applied (thanks to profi-concept)
[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:: 856                                                    $ *
14  * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009)              $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author:: stelzi                                                   $ *
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         LOAD_URL("admin.php");
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 message here
55 if (REQUEST_ISSET_GET(('msg'))) {
56         // Default extension is "unknown"
57         $ext = "unknown";
58
59         // Is extension given?
60         if (REQUEST_ISSET_GET(('ext'))) $ext = REQUEST_GET(('ext'));
61
62         // Which message shall we output?
63         $msg = convertCodeToMessage(REQUEST_GET('msg'));
64
65         // Load message template
66         LOAD_TEMPLATE("message", false, $msg);
67 } // END - if
68
69 // Some of you needs this to be extracted into a template... ???
70 LOAD_TEMPLATE("guest_menu_td");
71
72 // When no what value is provided take the "home" value
73 if (empty($GLOBALS['what'])) $GLOBALS['what'] = getConfig('index_home');
74
75 // Adding the main content module here
76 if (empty($GLOBALS['action'])) {
77         // Get action value from what value
78         $GLOBALS['action'] = GET_ACTION("guest", $GLOBALS['what']);
79 } // END - if
80
81 // Add the guest's menu here...
82 if ((getConfig('guest_menu') == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) {
83         // Show only when guest menu is active
84         ADD_MENU("guest", $GLOBALS['action'], $GLOBALS['what']);
85 } // END - if
86
87 // TDs between menu and content
88 LOAD_TEMPLATE("guest_menu_content");
89
90 // Disable block-mode by default
91 $GLOBALS['block_mode'] = false;
92
93 // Construct FQFN
94 $INC = sprintf("inc/modules/guest/action-%s.php", $GLOBALS['action']);
95
96 // Is the file there?
97 if ((INCLUDE_READABLE($INC)) && (VALIDATE_MENU_ACTION("guest", $GLOBALS['action'], $GLOBALS['what']))) {
98         // Requested module is available so we load it
99         LOAD_INC_ONCE($INC);
100 } else {
101         // Invalid module specified or not found...
102         LOAD_URL("modules.php?module=index");
103 }
104
105 if ((getConfig('guest_menu') == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) {
106         // Right side of content (hint: a good place for 120x600 skyscraper banner!)
107         LOAD_TEMPLATE("guest_content_footer");
108
109         // Some advertising stuff?
110         LOAD_TEMPLATE("guest_advert2");
111
112         OUTPUT_HTML("  </td>
113 </tr>");
114
115         // Goto TOP template
116         LOAD_TEMPLATE("guest_goto_top");
117 } // END - if
118
119 // Footer template (Thanx to Mr. Glaus!)
120 LOAD_TEMPLATE("guest_footer");
121
122 //
123 ?>