]> git.mxchange.org Git - mailer.git/blob - inc/modules/index.php
3f4fb3da07950f484de682b15187de9ce6716e34
[mailer.git] / inc / modules / index.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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 - 2009 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         die();
42 } // END - if
43
44 // Generate a tableset for the menu title and content
45 loadTemplate('guest_header', false, array('date_time' => generateDateTime(time(), 1)));
46
47 // Add code-message here
48 handleCodeMessage();
49
50 // Some of you needs this to be extracted into a template... ???
51 loadTemplate('guest_menu_td');
52
53 // Add the guest's menu here...
54 if ((getConfig('guest_menu') == 'Y') || (!isExtensionActive('sql_patches', true))) {
55         // Show only when guest menu is active
56         addMenu('guest', getAction(), getWhat());
57 } // END - if
58
59 // TDs between menu and content
60 loadTemplate('guest_menu_content');
61
62 // Disable block-mode by default
63 enableBlockMode(false);
64
65 // Construct FQFN
66 $inc = sprintf("inc/modules/guest/action-%s.php", getAction());
67
68 // Is the file there?
69 if ((isIncludeReadable($inc)) && (isMenuActionValid('guest', getAction(), getWhat()))) {
70         // Requested module is available so we load it
71         loadIncludeOnce($inc);
72 } else {
73         // Invalid module specified or not found...
74         redirectToUrl('modules.php?module=index');
75 }
76
77 if ((getConfig('guest_menu') == 'Y') || (!isExtensionActive('sql_patches'))) {
78         // Right side of content (hint: a good place for 120x600 skyscraper banner!)
79         loadTemplate('guest_content_footer');
80
81         // Some advertising stuff?
82         loadTemplate('guest_advert2');
83
84         outputHtml("  </td>
85 </tr>");
86
87         // Goto TOP template
88         loadTemplate('guest_goto_top');
89 } // END - if
90
91 // Footer template (Thanx to Mr. Glaus!)
92 loadTemplate('guest_footer');
93
94 // [EOF]
95 ?>