X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=modules.php;h=914724847e6027565c8601416c2ce7cd097b611d;hp=ae7948fe925fecc02de1fd34cbee5d45cf6cb9ab;hb=4373e155854012d687fdfcae4c69d1a940883fab;hpb=fb7120ffa230b62b54895bcf95952e1cf30f8594 diff --git a/modules.php b/modules.php index ae7948fe92..914724847e 100644 --- a/modules.php +++ b/modules.php @@ -1,7 +1,7 @@ {--_UNKNOWN--}"; +//* DEBUG: */ xdebug_start_trace(); - // Destroy session - destroy_user_session(); +// Load security stuff here +require('inc/libs/security_functions.php'); - // Kill userid - setUserId(0); - } +// Init start time +$GLOBALS['__start_time'] = microtime(TRUE); - // Free memory - SQL_FREERESULT($result); -} elseif (IS_ADMIN()) { - // Admin is there - $username = getMessage('_ADMIN'); -} else { - // He's a guest, hello there... ;-) - $username = getMessage('_GUEST'); -} +// Init output mode and module +$GLOBALS['__module'] = 'unknown'; +$GLOBALS['__output_mode'] = '0'; -// The header file -LOAD_INC_ONCE("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(__FILE__, __LINE__, getMessage('LANG_DOWN_MAINTAINCE')); -} elseif ((SQL_IS_LINK_UP()) && (getTotalFatalErrors() == 0)) { - // Construct module name - define('__MODULE', sprintf("inc/modules/%s.php", SQL_ESCAPE($GLOBALS['module']))); - - // Did we found the module listed in allowed modules and are we successfully connected? - $check = checkModulePermissions($GLOBALS['module']); - switch ($check) - { - case "admin_only": - case "mem_only": - case "done": - // Does the module exists on local file system? - if ((FILE_READABLE(constant('__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(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_404'), $GLOBALS['module'])); - } - break; - - case "404": - addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_404'), $GLOBALS['module'])); - break; - - case "locked": - if (!FILE_READABLE(constant('__MODULE'))) { - // Module does addionally not exists - addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_404'), $GLOBALS['module'])); - } // END - if - - // Add fatal message - addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_LOCKED'), $GLOBALS['module'])); - break; - - default: - DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown status %s return from module check. Module=%s", $check, $GLOBALS['module'])); - addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_UNKNOWN'), $check)); - break; - } -} elseif (getTotalFatalErrors() == 0) { - // MySQL problems! - addFatalMessage(__FILE__, __LINE__, getMessage('MYSQL_ERRORS')); -} - -if (($MOD_VALID) && (defined('__MODULE'))) { - ///////////////////////////////////////////// - // Main including line DO NOT REMOVE/EDIT! // - ///////////////////////////////////////////// - // - // Everything is okay so we can load the module - LOAD_INC_ONCE(constant('__MODULE')); -} // END - if +// Needed include files +require('inc/config-global.php'); -// Next-to-end add the footer -LOAD_INC_ONCE("inc/footer.php"); +// Include module +doIncludeModule(); -// +// [EOF] ?>