63871f1ecdab71bffb6f51eee62bd24863ea6d4e
[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 } // END - if
63
64 // Recheck if he got logged out because bad cookies
65 if (!IS_LOGGED_IN()) {
66         $URL = URL."/modules.php?module=index";
67         LOAD_URL($URL);
68 } // END - if
69
70 // Load adverstising template
71 define('__MEMBER_ADVERT', LOAD_TEMPLATE("member_banner", true));
72
73 // Disable block mode by default
74 $BLOCK_MODE = false;
75
76 // Generate a tableset for the menu title and content
77 LOAD_TEMPLATE("member_header");
78
79 // Adding your title's template here...
80 OUTPUT_HTML("<TR>
81   <TD class=\"member_menu\">");
82
83 // Adding the main content module here
84 if (empty($GLOBALS['action'])) {
85         if (empty($GLOBALS['what'])) $GLOBALS['what'] = "welcome";
86 } else {
87         $act = SQL_ESCAPE($GLOBALS['action']);
88 }
89
90 // Add the member's menu here...
91 if (($_CONFIG['member_menu'] == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) {
92         ADD_MENU("member", GET_ACTION("member", $GLOBALS['what']), $GLOBALS['what']);
93 }
94
95 OUTPUT_HTML("   </TD>
96   <TD valign=\"top\" align=\"center\" rowspan=\"3\" class=\"member_content\">");
97
98 $INC_ACTION = sprintf("%sinc/modules/member/action-%s.php", PATH, $act);
99 if ((FILE_READABLE($INC_ACTION)) && (VALIDATE_MENU_ACTION("member", GET_ACTION("member", $GLOBALS['what']), $GLOBALS['what']))) {
100         // Requested module is available so we load it
101         include ($INC_ACTION);
102 } else {
103         // Invalid module specified or not found...
104         LOAD_URL("modules.php?module=login");
105 }
106
107 if (($_CONFIG['member_menu'] == "Y") || (!EXT_IS_ACTIVE("sql_patches", true)))
108 {
109         OUTPUT_HTML("  <br /></TD>
110 </TR>
111 <TR>
112   <TD align=\"center\" valign=\"top\" class=\"member_advert\">");
113
114         // Some advertising stuff?
115         LOAD_TEMPLATE("member_advert");
116 }
117
118 OUTPUT_HTML("  </TD>
119 </TR>");
120
121 // Load same template for "Goto TOP"
122 LOAD_TEMPLATE("member_goto_top");
123
124 // Footer template (Thanx to Mr. Glaus!)
125 LOAD_TEMPLATE("member_footer");
126
127 //
128 ?>