]> git.mxchange.org Git - mailer.git/blob - inc/modules/login.php
Fixes for login bonus, some minor rewrites
[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  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 } elseif (!IS_MEMBER()) {
39         $URL = URL."/modules.php?module=index";
40         if ($check == "mem_only") $URL .= "&msg=".urlencode(LANG_MEM_ONLY_1.$GLOBALS['module'].LANG_MEM_ONLY_2);
41         LOAD_URL($URL);
42 }
43
44 if ($status != "CONFIRMED") {
45         // If the status is different than confirmed move the user away from here
46         switch ($status)
47         {
48         case "LOCKED":
49                 $ERROR = CODE_ID_LOCKED;
50                 break;
51
52         case "UNCONFIRMED":
53                 $ERROR = CODE_ID_UNCONFIRMED;
54                 break;
55
56         default:
57                 DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown status %s detected.", $status));
58                 $ERROR = CODE_UNKNOWN_STATUS;
59                 break;
60         }
61         $URL = URL."/modules.php?module=index&login=".$ERROR;
62         LOAD_URL($URL);
63 } // END - if
64
65 // Load adverstising template
66 define('__MEMBER_ADVERT', LOAD_TEMPLATE("member_banner", true));
67
68 // Disable block mode by default
69 $BLOCK_MODE = false;
70
71 // Generate a tableset for the menu title and content
72 LOAD_TEMPLATE("member_header");
73
74 // Begin menu block here
75 OUTPUT_HTML("<TR>
76   <TD class=\"member_menu\">");
77
78 // Adding the main content module here
79 if (empty($GLOBALS['action'])) {
80         if (empty($GLOBALS['what'])) $GLOBALS['what'] = "welcome";
81 } else {
82         $act = SQL_ESCAPE($GLOBALS['action']);
83 }
84
85 // Add the member's menu here...
86 if (($_CONFIG['member_menu'] == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) {
87         ADD_MENU("member", GET_ACTION("member", $GLOBALS['what']), $GLOBALS['what']);
88 } // END - if
89
90 // Menu -> content
91 OUTPUT_HTML("   </TD>
92   <TD valign=\"top\" align=\"center\" rowspan=\"3\" class=\"member_content\">");
93
94 $INC_ACTION = sprintf("%sinc/modules/member/action-%s.php", PATH, $act);
95 if ((FILE_READABLE($INC_ACTION)) && (VALIDATE_MENU_ACTION("member", GET_ACTION("member", $GLOBALS['what']), $GLOBALS['what']))) {
96         // Requested module is available so we load it
97         include ($INC_ACTION);
98 } else {
99         // Invalid module specified or not found...
100         LOAD_URL("modules.php?module=login");
101 }
102
103 if (($_CONFIG['member_menu'] == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) {
104         // Right side of content (hint: a good place for 120x600 skyscraper banner!)
105         LOAD_TEMPLATE("member_content_right");
106
107         // Some advertising stuff?
108         LOAD_TEMPLATE("member_advert");
109 }
110
111 OUTPUT_HTML("  </TD>
112 </TR>");
113
114 // Load same template for "Goto TOP"
115 LOAD_TEMPLATE("member_goto_top");
116
117 // Footer template (Thanx to Mr. Glaus!)
118 LOAD_TEMPLATE("member_footer");
119
120 //
121 ?>