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