2 /************************************************************************
3 * MXChange v0.2.1 Start: 10/15/2003 *
4 * =============== Last change: 04/18/2004 *
6 * -------------------------------------------------------------------- *
8 * -------------------------------------------------------------------- *
9 * Short description : Login area for members *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Login-Bereich fuer Mitglieder *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
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 *
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. *
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. *
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, *
37 ************************************************************************/
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
43 } elseif (!IS_MEMBER()) {
44 $URL = "modules.php?module=index";
45 if ($check == "mem_only") $URL .= "&msg=".urlencode(LANG_MEM_ONLY_1.$GLOBALS['module'].LANG_MEM_ONLY_2);
49 if ($status != "CONFIRMED") {
50 // If the status is different than confirmed move the user away from here
51 $ERROR = GEN_ERROR_CODE_FROM_ACCOUNT_STATUS($status);
54 LOAD_URL("modules.php?module=index&what=login&login=".$ERROR);
57 // Load adverstising template
58 define('__MEMBER_ADVERT', LOAD_TEMPLATE("member_banner", true));
60 // Disable block mode by default
61 $GLOBALS['block_mode'] = false;
63 // Generate a tableset for the menu title and content
64 LOAD_TEMPLATE("member_header");
66 // Begin menu block here
68 <td class=\"member_menu\">");
70 // Adding the main content module here
71 if (empty($GLOBALS['action'])) {
72 if (empty($GLOBALS['what'])) $GLOBALS['what'] = "welcome";
74 $act = SQL_ESCAPE($GLOBALS['action']);
77 // Add the member's menu here...
78 if ((getConfig('member_menu') == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) {
79 ADD_MENU("member", GET_ACTION("member", $GLOBALS['what']), $GLOBALS['what']);
84 <td valign=\"top\" align=\"center\" rowspan=\"3\" class=\"member_content\">");
86 $INC = sprintf("inc/modules/member/action-%s.php", $act);
87 if ((INCLUDE_READABLE($INC)) && (VALIDATE_MENU_ACTION("member", $GLOBALS['action'], $GLOBALS['what']))) {
88 // Requested module is available so we load it
91 // Invalid module specified or not found...
92 LOAD_URL("modules.php?module=login");
95 if ((getConfig('member_menu') == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) {
96 // Right side of content (hint: a good place for 120x600 skyscraper banner!)
97 LOAD_TEMPLATE("member_content_right");
99 // Some advertising stuff?
100 LOAD_TEMPLATE("member_advert");
106 // Load same template for "Goto TOP"
107 LOAD_TEMPLATE("member_goto_top");
109 // Footer template (Thanx to Mr. Glaus!)
110 LOAD_TEMPLATE("member_footer");