Use new wrapper isPhpExtensionLoaded() instead of extension_loaded().
[mailer.git] / modules.php
index b94a2a0414c8bec6be55e2c3baa7f1331227d4ca..914724847e6027565c8601416c2ce7cd097b611d 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 08/25/2003 *
- * ===============                              Last change: 07/01/2005 *
+ * Mailer v0.2.1-FINAL                                Start: 08/25/2003 *
+ * ===================                          Last change: 07/01/2005 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : modules.php                                      *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Hauptladedatei. Laedt alle benoetigten Dateien   *
  * -------------------------------------------------------------------- *
- *                                                                      *
- * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
  ************************************************************************/
 
 // XDEBUG call
-//xdebug_start_trace();
-
-// Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )
-require_once("inc/libs/security_functions.php");
+//* DEBUG: */ xdebug_start_trace();
 
-// Init "action" and "what"
-global $what, $action, $startTime;
-$GLOBALS['startTime'] = microtime(true);
-$CSS = 0;
-$GLOBALS['what'] = ""; $GLOBALS['action'] = "";
-$GLOBALS['userid'] = 0;
+// Load security stuff here
+require('inc/libs/security_functions.php');
 
-// Fix missing module to "index"
-if (empty($_GET['module'])) $_GET['module'] = "index";
+// Init start time
+$GLOBALS['__start_time'] = microtime(TRUE);
 
-// Secure action/what if present
-if (!empty($_GET['action'])) $GLOBALS['action'] = secureString($_GET['action']);
-if (!empty($_GET['what'])) $GLOBALS['what'] = secureString($_GET['what']);
-
-// Secure the module name (very important line!)
-$GLOBALS['module'] = secureString($_GET['module']);
+// Init output mode and module
+$GLOBALS['__module']      = 'unknown';
+$GLOBALS['__output_mode'] = '0';
 
 // Needed include files
-require("inc/config.php");
-
-// Check if logged in
-if (IS_MEMBER()) {
-       // Is still logged in so we welcome him with his name
-       $result = SQL_QUERY_ESC("SELECT surname, family FROM `"._MYSQL_PREFIX."_user_data` WHERE userid=%s LIMIT 1",
-        array($GLOBALS['userid']), __FILE__, __LINE__);
-       if (SQL_NUMROWS($result) == 1) {
-               // Load surname and family's name and build the username
-               list($s, $f) = SQL_FETCHROW($result);
-               $username = $s." ".$f;
-
-               // Additionally admin?
-               if (IS_ADMIN()) {
-                       // Add it
-                       $username .= " ("._ADMIN_SHORT.")";
-               } // END - if
-       } else {
-               // Hmmm, logged in and no valid userid?
-               $username = "<em>"._UNKNOWN."</em>";
-
-               // Destroy session
-               destroy_user_session();
-
-               // Kill userid
-               $GLOBALS['userid'] = 0;
-       }
-
-       // Free memory
-       SQL_FREERESULT($result);
-} elseif (IS_ADMIN()) {
-       // Admin is there
-       $username = _ADMIN;
-} else {
-       // He's a guest, hello there... ;-)
-       $username = _GUEST;
-}
-
-// The header file
-include (PATH."inc/header.php");
-
-// Modules are by default not valid!
-$MOD_VALID = false; $check = "failed";
-if ((getConfig('maintenance') == "Y") && (!IS_ADMIN()) && ($GLOBALS['module'] != "admin")) {
-       // Maintain mode is active and you are no admin
-       addFatalMessage(LANG_DOWN_MAINTAINCE);
-} elseif (($link) && ($db) && (getTotalFatalErrors() == 0)) {
-       // Did we found the module listed in allowed modules and are we successfully connected?
-       $check = CHECK_MODULE($GLOBALS['module']);
-       switch ($check)
-       {
-       case "admin_only":
-       case "mem_only":
-       case "done":
-               // Construct module name
-               define('__MODULE', sprintf("%sinc/modules/%s.php", PATH, SQL_ESCAPE($GLOBALS['module'])));
-
-               // Does the module exists on local file system?
-               if ((FILE_READABLE(__MODULE)) && (getTotalFatalErrors() == 0)) {
-                       // Module is valid, active and located on the local disc...
-                       $MOD_VALID = true;
-               } elseif (!empty($URL)) {
-                       // An URL was specified so we load the de-referrer module
-                       LOAD_URL(DEREFERER($URL));
-               } elseif (getTotalFatalErrors() == 0) {
-                       addFatalMessage(LANG_MOD_REG_404_1.$GLOBALS['module'].LANG_MOD_REG_404_2);
-               }
-               break;
-
-       case "404":
-               addFatalMessage(LANG_MOD_REG_404_1.$GLOBALS['module'].LANG_MOD_REG_404_2);
-               break;
-
-       case "locked":
-               if (!FILE_READABLE(PATH."inc/modules/".$GLOBALS['module'].".php")) {
-                       // Module does addionally not exists
-                       addFatalMessage(LANG_MOD_REG_404_1.$GLOBALS['module'].LANG_MOD_REG_404_2);
-               } // END - if
-
-               // Add fatal message
-               addFatalMessage(LANG_MOD_LOCKED_1.$GLOBALS['module'].LANG_MOD_LOCKED_2);
-               break;
-
-       default:
-               DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown status %s return from module check. Module=%s", $check, $GLOBALS['module']));
-               addFatalMessage(LANG_MOD_UNKNOWN_1.$check.LANG_MOD_UNKNOWN_2);
-               break;
-       }
-} elseif (getTotalFatalErrors() == 0) {
-       // MySQL problems!
-       addFatalMessage(MYSQL_ERRORS);
-}
-
-if (($MOD_VALID) && (defined('__MODULE'))) {
-       /////////////////////////////////////////////
-       // Main including line DO NOT REMOVE/EDIT! //
-       /////////////////////////////////////////////
-       //
-       // Everything is okay so we can load the module
-       include (__MODULE);
-} // END - if
+require('inc/config-global.php');
 
-// Next-to-end add the footer
-include (PATH."inc/footer.php");
+// Include module
+doIncludeModule();
 
-//
+// [EOF]
 ?>