X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=modules.php;h=cf9d281b446b86a07c97be980bf83c19422def53;hp=a5f7420f61710ef98ad14bcc6d3a421a4e7fce04;hb=0f3a135204757cc8750262871c8e62c42300acb4;hpb=414570c5081d337bb6c28dcf521bd8bca02f69e7 diff --git a/modules.php b/modules.php index a5f7420f61..cf9d281b44 100644 --- a/modules.php +++ b/modules.php @@ -1,7 +1,7 @@ {--_UNKNOWN--}"; - - // Destroy session - destroy_user_session(); - - // Kill userid - $GLOBALS['userid'] = 0; - } - - // Free memory - SQL_FREERESULT($result); -} elseif (IS_ADMIN()) { - // Admin is there - $username = getMessage('_ADMIN'); -} else { - // He's a guest, hello there... ;-) - $username = getMessage('_GUEST'); -} - -// The header file -LOAD_INC_ONCE("inc/header.php"); +// Init output mode and module +$GLOBALS['output_mode'] = '0'; +$GLOBALS['module'] = 'unknown'; -// 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] ?>