Fixed logfile writing in installation phase, .revision is now ignored
[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  * $Revision:: 856                                                    $ *
14  * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009)              $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author:: stelzi                                                   $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
42         require($INC);
43 } elseif (!IS_MEMBER()) {
44         $URL = "modules.php?module=index";
45         if ($check == "mem_only") $URL .= "&amp;msg=".urlencode(LANG_MEM_ONLY_1.$GLOBALS['module'].LANG_MEM_ONLY_2);
46         LOAD_URL($URL);
47 }
48
49 if ($status != "CONFIRMED") {
50         // If the status is different than confirmed move the user away from here
51         $ERROR = GEN_ERROR_CODE_FROM_ACCOUNT_STATUS($status);
52
53         // Load URL
54         LOAD_URL("modules.php?module=index&amp;what=login&amp;login=".$ERROR);
55 } // END - if
56
57 // Load adverstising template
58 define('__MEMBER_ADVERT', LOAD_TEMPLATE("member_banner", true));
59
60 // Disable block mode by default
61 $GLOBALS['block_mode'] = false;
62
63 // Generate a tableset for the menu title and content
64 LOAD_TEMPLATE("member_header");
65
66 // Begin menu block here
67 OUTPUT_HTML("<tr>
68   <td class=\"member_menu\">");
69
70 // Adding the main content module here
71 if (empty($GLOBALS['action'])) {
72         if (empty($GLOBALS['what'])) $GLOBALS['what'] = "welcome";
73 } else {
74         $act = SQL_ESCAPE($GLOBALS['action']);
75 }
76
77 // Add the member's menu here...
78 if ((getConfig('member_menu') == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) {
79         ADD_MENU("member", GET_ACTION("member", $GLOBALS['what']), $GLOBALS['what']);
80 } // END - if
81
82 // Menu -> content
83 OUTPUT_HTML("   </td>
84   <td valign=\"top\" align=\"center\" rowspan=\"3\" class=\"member_content\">");
85
86 $INC = sprintf("inc/modules/member/action-%s.php", $act);
87 if ((INCLUDE_READABLE($INC)) && (VALIDATE_MENU_ACTION("member", $GLOBALS['action'], $GLOBALS['what']))) {
88         // Requested module is available so we load it
89         LOAD_INC($INC);
90 } else {
91         // Invalid module specified or not found...
92         LOAD_URL("modules.php?module=login");
93 }
94
95 if ((getConfig('member_menu') == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) {
96         // Right side of content (hint: a good place for 120x600 skyscraper banner!)
97         LOAD_TEMPLATE("member_content_right");
98
99         // Some advertising stuff?
100         LOAD_TEMPLATE("member_advert");
101 }
102
103 OUTPUT_HTML("  </td>
104 </tr>");
105
106 // Load same template for "Goto TOP"
107 LOAD_TEMPLATE("member_goto_top");
108
109 // Footer template (Thanx to Mr. Glaus!)
110 LOAD_TEMPLATE("member_footer");
111
112 //
113 ?>