query masking rewritten in more SQLs, several cleanups and fix on beg link
[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 (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 } elseif (!IS_LOGGED_IN()) {
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                 $ERROR = CODE_UNKNOWN_STATUS;
58                 break;
59         }
60         $URL = URL."/modules.php?module=index&login=".$ERROR;
61         LOAD_URL($URL);
62 }
63
64 // Recheck if he got logged out because bad cookies
65 if (!IS_LOGGED_IN())
66 {
67         $URL = URL."/modules.php?module=index";
68         LOAD_URL($URL);
69 }
70
71 // Load adverstising template
72 define('__MEMBER_ADVERT', LOAD_TEMPLATE("member_banner", true));
73
74 // Disable block mode by default
75 $BLOCK_MODE = false;
76
77 // Generate a tableset for the menu title and content
78 LOAD_TEMPLATE("member_header");
79
80 // Adding your title's template here...
81 OUTPUT_HTML("<TR>
82   <TD class=\"member_menu\">");
83
84 // Adding the main content module here
85 if (empty($GLOBALS['action']))
86 {
87         if (empty($GLOBALS['what'])) $GLOBALS['what'] = "welcome";
88 }
89  else
90 {
91         $act = SQL_ESCAPE($GLOBALS['action']);
92 }
93
94 // Add the member's menu here...
95 if (($CONFIG['member_menu'] == 'Y') || (!EXT_IS_ACTIVE("sql_patches", true)))
96 {
97         ADD_MENU("member", GET_ACTION("member", $GLOBALS['what']), $GLOBALS['what']);
98 }
99
100 OUTPUT_HTML("   </TD>
101   <TD valign=\"top\" align=\"center\" rowspan=\"3\" class=\"member_content\">");
102
103 $INC_ACTION = sprintf(PATH."inc/modules/member/action-%s.php", $act);
104 if ((file_exists($INC_ACTION)) && (is_readable($INC_ACTION)) && (VALIDATE_MENU_ACTION("member", GET_ACTION("member", $GLOBALS['what']), $GLOBALS['what'])))
105 {
106         // Requested module is available so we load it
107         include ($INC_ACTION);
108 }
109  else
110 {
111         // Invalid module specified or not found...
112         LOAD_URL("modules.php?module=login");
113 }
114
115 if (($CONFIG['member_menu'] == 'Y') || (!EXT_IS_ACTIVE("sql_patches", true)))
116 {
117         OUTPUT_HTML("  <BR></TD>
118 </TR>
119 <TR>
120   <TD align=\"center\" valign=\"top\" class=\"member_advert\">");
121
122         // Some advertising stuff?
123         LOAD_TEMPLATE("member_advert");
124 }
125
126 OUTPUT_HTML("  </TD>
127 </TR>");
128
129 // Load same template for "Goto TOP"
130 LOAD_TEMPLATE("member_goto_top");
131
132 // Footer template (Thanx to Mr. Glaus!)
133 LOAD_TEMPLATE("member_footer");
134
135 //
136 ?>