Cookie code removed, rewritten, internal URLs are now relative (see LOAD_URL()),...
[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 = "modules.php?module=index";
40         if ($check == "mem_only") $URL .= "&amp;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         $ERROR = GEN_ERROR_CODE_FROM_ACCOUNT_STATUS($status);
47
48         // Load URL
49         LOAD_URL("modules.php?module=index&amp;what=login&amp;login=".$ERROR);
50 } // END - if
51
52 // Load adverstising template
53 define('__MEMBER_ADVERT', LOAD_TEMPLATE("member_banner", true));
54
55 // Disable block mode by default
56 $BLOCK_MODE = false;
57
58 // Generate a tableset for the menu title and content
59 LOAD_TEMPLATE("member_header");
60
61 // Begin menu block here
62 OUTPUT_HTML("<TR>
63   <TD class=\"member_menu\">");
64
65 // Adding the main content module here
66 if (empty($GLOBALS['action'])) {
67         if (empty($GLOBALS['what'])) $GLOBALS['what'] = "welcome";
68 } else {
69         $act = SQL_ESCAPE($GLOBALS['action']);
70 }
71
72 // Add the member's menu here...
73 if ((getConfig('member_menu') == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) {
74         ADD_MENU("member", GET_ACTION("member", $GLOBALS['what']), $GLOBALS['what']);
75 } // END - if
76
77 // Menu -> content
78 OUTPUT_HTML("   </TD>
79   <TD valign=\"top\" align=\"center\" rowspan=\"3\" class=\"member_content\">");
80
81 $INC_ACTION = sprintf("%sinc/modules/member/action-%s.php", PATH, $act);
82 if ((FILE_READABLE($INC_ACTION)) && (VALIDATE_MENU_ACTION("member", GET_ACTION("member", $GLOBALS['what']), $GLOBALS['what']))) {
83         // Requested module is available so we load it
84         include ($INC_ACTION);
85 } else {
86         // Invalid module specified or not found...
87         LOAD_URL("modules.php?module=login");
88 }
89
90 if ((getConfig('member_menu') == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) {
91         // Right side of content (hint: a good place for 120x600 skyscraper banner!)
92         LOAD_TEMPLATE("member_content_right");
93
94         // Some advertising stuff?
95         LOAD_TEMPLATE("member_advert");
96 }
97
98 OUTPUT_HTML("  </TD>
99 </TR>");
100
101 // Load same template for "Goto TOP"
102 LOAD_TEMPLATE("member_goto_top");
103
104 // Footer template (Thanx to Mr. Glaus!)
105 LOAD_TEMPLATE("member_footer");
106
107 //
108 ?>