typo fixed
[mailer.git] / 0.2.1 / modules.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/25/2003 *
4  * ===============                              Last change: 07/01/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : modules.php                                      *
8  * -------------------------------------------------------------------- *
9  * Short description : Main loader file. Loads our needed stuff         *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Hauptladedatei. Laedt alle benoetigten Dateien   *
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 // APD call (if you have this apache extension and want to debug this script for us)
35 //apd_set_pprof_trace();
36
37 // Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )
38 require_once ("inc/libs/security_functions.php");
39
40 // Init "action" and "what"
41 global $what, $action;
42 $CSS = 0;
43 $GLOBALS['what'] = ""; $GLOBALS['action'] = "";
44 $GLOBALS['userid'] = 0;
45 if (!empty($_GET['action'])) $GLOBALS['action'] = secureString($_GET['action']);
46 if (!empty($_GET['what'])) $GLOBALS['what'] = secureString($_GET['what']);
47 if (empty($_GET['module'])) $_GET['module'] = "index";
48
49 // Secure the module name (very important line!)
50 $GLOBALS['module'] = htmlentities(strip_tags($_GET['module']), ENT_QUOTES);
51
52 // Needed include files
53 require ("inc/config.php");
54
55 // Check if logged in
56 if (IS_LOGGED_IN())
57 {
58         // Is still logged in so we welcome him with his name
59         $result = SQL_QUERY_ESC("SELECT surname, family FROM "._MYSQL_PREFIX."_user_data WHERE userid=%d LIMIT 1",
60          array($GLOBALS['userid']), __FILE__, __LINE__);
61         if (SQL_NUMROWS($result) == 1)
62         {
63                 // Load surname and family's name and build the username
64                 list($s, $f) = SQL_FETCHROW($result);
65                 $username = $s." ".$f;
66
67                 // Update only cookies and no login data!
68                 UPDATE_LOGIN_DATA(false);
69         }
70          else
71         {
72
73                 // Hmmm, logged in and no valid cookies???
74                 $username = "<I>"._UNKNOWN."</I>";
75         }
76
77         // Free memory
78         SQL_FREERESULT($result);
79 }
80  elseif (IS_ADMIN())
81 {
82         $username = _ADMIN;
83 }
84  else
85 {
86         // He's a guest, hello there... ;-)
87         $username = _GUEST;
88 }
89
90 // The header file
91 include (PATH."inc/header.php");
92
93 // Modules are by default not valid!
94 $MOD_VALID = false; $check = "failed";
95 if ((!empty($CONFIG['maintenance'])) && ($CONFIG['maintenance'] == "Y") && (!IS_ADMIN()) && ($GLOBALS['module'] != "admin"))
96 {
97         // Maintain mode is active and you are no admin
98         ADD_FATAL(LANG_DOWN_MAINTAINCE);
99 }
100  elseif (($link) && ($db) && (sizeof($FATAL) == 0))
101 {
102         // Did we found the module listed in allowed modules and are we successfully connected?
103         $check = CHECK_MODULE($GLOBALS['module']);
104         switch ($check)
105         {
106         case "admin_only":
107         case "mem_only":
108         case "done":
109                 // Construct module name
110                 define('__MODULE', sprintf(PATH."inc/modules/%s.php", $GLOBALS['module']));
111
112                 // Does the module exists on local file system?
113                 if (((file_exists(__MODULE)) || (!empty($URL))) && (sizeof($FATAL) == 0))
114                 {
115                         // Module is valid, active and located on the local disc...
116                         $MOD_VALID = true;
117                 }
118                  elseif (!empty($URL))
119                 {
120                         // An URL was specified so we load the de-referrer module
121                         include (PATH."inc/loader.php");
122                 }
123                  elseif (sizeof($FATAL) == 0)
124                 {
125                         ADD_FATAL(LANG_MOD_REG_404_1.$GLOBALS['module'].LANG_MOD_REG_404_2);
126                 }
127                 break;
128
129         case "404":
130                 ADD_FATAL(LANG_MOD_REG_404_1.$GLOBALS['module'].LANG_MOD_REG_404_2);
131                 break;
132
133         case "locked":
134                 if (!file_exists(PATH."inc/modules/".$GLOBALS['module'].".php"))
135                 {
136                         // Module does addionally not exists
137                         ADD_FATAL(LANG_MOD_REG_404_1.$GLOBALS['module'].LANG_MOD_REG_404_2);
138                 }
139                 ADD_FATAL(LANG_MOD_LOCKED_1.$GLOBALS['module'].LANG_MOD_LOCKED_2);
140                 break;
141
142         default:
143                 ADD_FATAL(LANG_MOD_UNKNOWN_1.$check.LANG_MOD_UNKNOWN_2);
144                 break;
145         }
146 }
147  elseif (sizeof($FATAL) == 0)
148 {
149         // MySQL problems!
150         ADD_FATAL(MYSQL_ERRORS);
151 }
152
153 if ($MOD_VALID)
154 {
155         /////////////////////////////////////////////
156         // Main including line DO NOT REMOVE/EDIT! //
157         /////////////////////////////////////////////
158         //
159         // Everything is okay so we can load the module
160         include (__MODULE);
161 }
162
163 // Next-to-end add the footer
164 include (PATH."inc/footer.php");
165
166 //
167 ?>