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