Missing SVN properties set
[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 // When no what value is provided take the "home" value
54 if (!isWhatSet()) setWhatFromConfig('index_home');
55
56 // Adding the main content module here
57 if (!isActionSet()) {
58         // Get action value from what value
59         setAction(getModeAction('guest', getWhat()));
60 } // END - if
61
62 // Add the guest's menu here...
63 if ((getConfig('guest_menu') == 'Y') || (!isExtensionActive('sql_patches', true))) {
64         // Show only when guest menu is active
65         addMenu('guest', getAction(), getWhat());
66 } // END - if
67
68 // TDs between menu and content
69 loadTemplate('guest_menu_content');
70
71 // Disable block-mode by default
72 enableBlockMode(false);
73
74 // Construct FQFN
75 $inc = sprintf("inc/modules/guest/action-%s.php", getAction());
76
77 // Is the file there?
78 if ((isIncludeReadable($inc)) && (isMenuActionValid('guest', getAction(), getWhat()))) {
79         // Requested module is available so we load it
80         loadIncludeOnce($inc);
81 } else {
82         // Invalid module specified or not found...
83         redirectToUrl('modules.php?module=index');
84 }
85
86 if ((getConfig('guest_menu') == 'Y') || (!isExtensionActive('sql_patches'))) {
87         // Right side of content (hint: a good place for 120x600 skyscraper banner!)
88         loadTemplate('guest_content_footer');
89
90         // Some advertising stuff?
91         loadTemplate('guest_advert2');
92
93         outputHtml("  </td>
94 </tr>");
95
96         // Goto TOP template
97         loadTemplate('guest_goto_top');
98 } // END - if
99
100 // Footer template (Thanx to Mr. Glaus!)
101 loadTemplate('guest_footer');
102
103 // [EOF]
104 ?>