Removed comment introduced by Profi-Concept, this comment should fine (in a much...
[mailer.git] / inc / modules / login.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/15/2003 *
4  * ===================                          Last change: 04/18/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : login.php                                        *
8  * -------------------------------------------------------------------- *
9  * Short description : Login area for members                           *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Login-Bereich fuer Mitglieder                    *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
20  * For more information visit: http://www.mxchange.org                  *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } elseif (!isMember()) {
42         $url = 'modules.php?module=index';
43         if (checkModulePermissions('login') == 'mem_only') $url .= '&amp;code=' . getCode('MODULE_MEMBER_ONLY') . '&amp;mod=' . getModule();
44         redirectToUrl($url);
45 } // END - if
46
47 // Disable block mode by default
48 enableBlockMode(false);
49
50 // Generate a tableset for the menu title and content
51 loadTemplate('member_header', false, array('date_time' => generateDateTime(time(), 1)));
52
53 // Add code-message here
54 handleCodeMessage();
55
56 // Begin menu block here
57 loadTemplate('member_menu_start');
58
59 // Adding the main content module here
60 if (!isActionSet()) {
61         if (!isWhatSet()) setWhat('welcome');
62 } else {
63         $action = getAction();
64 }
65
66 // Add the member's menu here...
67 if ((getConfig('member_menu') == 'Y') || (!isExtensionActive('sql_patches', true))) {
68         addMenu('member', getActionFromModuleWhat('member', getWhat()), getWhat());
69 } // END - if
70
71 // Disable block-mode again
72 enableBlockMode(false);
73
74 // Menu -> content
75 outputHtml("   </td>
76   <td valign=\"top\" align=\"center\" rowspan=\"3\" class=\"member_content\">");
77
78 $inc = sprintf("inc/modules/member/action-%s.php", $action);
79 if ((isIncludeReadable($inc)) && (isMenuActionValid('member', getAction(), getWhat()))) {
80         // Requested module is available so we load it
81         loadInclude($inc);
82 } else {
83         // Invalid module specified or not found...
84         redirectToUrl('modules.php?module=login');
85 }
86
87 if ((getConfig('member_menu') == 'Y') || (!isExtensionActive('sql_patches', true))) {
88         // Right side of content (hint: a good place for 120x600 skyscraper banner!)
89         loadTemplate('member_content_right');
90
91         // Some advertising stuff?
92         loadTemplate('member_advert');
93 }
94
95 outputHtml("  </td>
96 </tr>");
97
98 // Load same template for 'Goto TOP'
99 loadTemplate('member_goto_top');
100
101 // Footer template (Thanx to Mr. Glaus!)
102 loadTemplate('member_footer');
103
104 //
105 ?>