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