d0918d5b12fda434fb44acbfabc1a8694923ba04
[mailer.git] / inc / modules / login.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    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  * 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 } elseif (!isMember()) {
43         $URL = 'modules.php?module=index';
44         if (checkModulePermissions('login') == 'mem_only') $URL .= '&amp;code=' . getCode('MODULE_MEM_ONLY') . '&amp;mod=' . getModule();
45         redirectToUrl($URL);
46 }
47
48 if ($GLOBALS['status'] != 'CONFIRMED') {
49         // If the status is different than confirmed move the user away from here
50         $errorCode = generateErrorCodeFromUserStatus($GLOBALS['status']);
51
52         // Load URL
53         redirectToUrl('modules.php?module=index&amp;what=login&amp;login=' . $errorCode);
54 } // END - if
55
56 // Disable block mode by default
57 enableBlockMode(false);
58
59 // Generate a tableset for the menu title and content
60 loadTemplate('member_header');
61
62 // Add code-message here
63 handleCodeMessage();
64
65 // Begin menu block here
66 loadTemplate('member_menu_start');
67
68 // Adding the main content module here
69 if (!isActionSet()) {
70         if (!isWhatSet()) setWhat('welcome');
71 } else {
72         $action = getAction();
73 }
74
75 // Add the member's menu here...
76 if ((getConfig('member_menu') == 'Y') || (!isExtensionActive('sql_patches', true))) {
77         addMenu('member', getModeAction('member', getWhat()), getWhat());
78 } // END - if
79
80 // Disable block-mode again
81 enableBlockMode(false);
82
83 // Menu -> content
84 outputHtml("   </td>
85   <td valign=\"top\" align=\"center\" rowspan=\"3\" class=\"member_content\">");
86
87 $inc = sprintf("inc/modules/member/action-%s.php", $action);
88 if ((isIncludeReadable($inc)) && (isMenuActionValid('member', getAction(), getWhat()))) {
89         // Requested module is available so we load it
90         loadInclude($inc);
91 } else {
92         // Invalid module specified or not found...
93         redirectToUrl('modules.php?module=login');
94 }
95
96 if ((getConfig('member_menu') == 'Y') || (!isExtensionActive('sql_patches', true))) {
97         // Right side of content (hint: a good place for 120x600 skyscraper banner!)
98         loadTemplate('member_content_right');
99
100         // Some advertising stuff?
101         loadTemplate('member_advert');
102 }
103
104 outputHtml("  </td>
105 </tr>");
106
107 // Load same template for 'Goto TOP'
108 loadTemplate('member_goto_top');
109
110 // Footer template (Thanx to Mr. Glaus!)
111 loadTemplate('member_footer');
112
113 //
114 ?>