Fixed broken german umlauts
[mailer.git] / 0.2.1 / 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 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 }
40  elseif (!IS_LOGGED_IN())
41 {
42         $URL = URL."/modules.php?module=index";
43         if ($check == "mem_only") $URL .= "&msg=".urlencode(LANG_MEM_ONLY_1.$GLOBALS['module'].LANG_MEM_ONLY_2);
44         LOAD_URL($URL);
45 }
46
47 if ($status != "CONFIRMED")
48 {
49         // If the status is different than confirmed move the user away from here
50         switch ($status)
51         {
52         case "LOCKED":
53                 $ERROR = CODE_ID_LOCKED;
54                 break;
55
56         case "UNCONFIRMED":
57                 $ERROR = CODE_ID_UNCONFIRMED;
58                 break;
59
60         default:
61                 $ERROR = CODE_UNKNOWN_STATUS;
62                 break;
63         }
64         $URL = URL."/modules.php?module=index&login=".$ERROR;
65         LOAD_URL($URL);
66 }
67
68 // Recheck if he got logged out because bad cookies
69 if (!IS_LOGGED_IN())
70 {
71         $URL = URL."/modules.php?module=index";
72         LOAD_URL($URL);
73 }
74
75 // Load adverstising template
76 define('__MEMBER_ADVERT', LOAD_TEMPLATE("member_banner", true));
77
78 // Disable block mode by default
79 $BLOCK_MODE = false;
80
81 // Generate a tableset for the menu title and content
82 LOAD_TEMPLATE("member_header");
83
84 // Adding your title's template here...
85 OUTPUT_HTML ("<TR>
86   <TD class=\"member_menu\">");
87
88 // Adding the main content module here
89 if (empty($GLOBALS['action']))
90 {
91         if (empty($GLOBALS['what'])) $GLOBALS['what'] = "welcome";
92 }
93  else
94 {
95         $act = SQL_ESCAPE($GLOBALS['action']);
96 }
97
98 // Add the member's menu here...
99 if (($CONFIG['member_menu'] == "Y") || (!EXT_IS_ACTIVE("sql_patches", true)))
100 {
101         ADD_MENU("member", GET_ACTION("member", $GLOBALS['what']), $GLOBALS['what']);
102 }
103
104 OUTPUT_HTML ("   </TD>
105   <TD valign=\"top\" align=\"center\" rowspan=\"3\" class=\"member_content\">");
106
107 $INC_ACTION = sprintf(PATH."inc/modules/member/action-%s.php", $act);
108 if ((file_exists($INC_ACTION)) && (is_readable($INC_ACTION)) && (VALIDATE_MENU_ACTION("member", GET_ACTION("member", $GLOBALS['what']), $GLOBALS['what'])))
109 {
110         // Requested module is available so we load it
111         include ($INC_ACTION);
112 }
113  else
114 {
115         // Invalid module specified or not found...
116         LOAD_URL("modules.php?module=login");
117 }
118
119 if (($CONFIG['member_menu'] == "Y") || (!EXT_IS_ACTIVE("sql_patches", true)))
120 {
121         OUTPUT_HTML ("  <BR></TD>
122 </TR>
123 <TR>
124   <TD align=\"center\" valign=\"top\" class=\"member_advert\">");
125
126         // Some advertising stuff?
127         LOAD_TEMPLATE("member_advert");
128 }
129
130 OUTPUT_HTML ("  </TD>
131 </TR>");
132
133 // Load same template for "Goto TOP"
134 LOAD_TEMPLATE("member_goto_top");
135
136 // Footer template (Thanx to Mr. Glaus!)
137 LOAD_TEMPLATE("member_footer");
138
139 //
140 ?>