X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=modules.php;h=5437ef3e6ec225e67c9100d5f9fec57f3c3723f7;hp=0d26db9cf0367e5f4f55f78e8f9dc4b55c09443e;hb=a50f5113fe25ed5f125e3377914a5c0d84b4c1ae;hpb=a38de258ffd36319f8b8338fa057957c205d89e3 diff --git a/modules.php b/modules.php index 0d26db9cf0..5437ef3e6e 100644 --- a/modules.php +++ b/modules.php @@ -17,7 +17,7 @@ * Needs to be in all Files and every File needs "svn propset * * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * - * Copyright (c) 2003 - 2008 by Roland Haeder * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -37,7 +37,7 @@ ************************************************************************/ // XDEBUG call -//xdebug_start_trace(); +//* DEBUG: */ xdebug_start_trace(); // Load security stuff here require('inc/libs/security_functions.php'); @@ -46,42 +46,47 @@ require('inc/libs/security_functions.php'); $GLOBALS['startTime'] = microtime(true); // Init output mode and module -$GLOBALS['output_mode'] = 0; +$GLOBALS['output_mode'] = '0'; $GLOBALS['module'] = ''; // Needed include files require('inc/config-global.php'); +// Set content type +setContentType('text/html'); + // Fix missing module to 'index' -if (!REQUEST_ISSET_GET('module')) REQUEST_SET_GET('module', 'index'); +if (!isGetRequestElementSet('module')) setRequestGetElement('module', 'index'); // The header file loadIncludeOnce('inc/header.php'); // Modules are by default not valid! -$isModuleValid = false; $check = 'failed'; -if ((getConfig('maintenance') == 'Y') && (!IS_ADMIN()) && (getModule() != 'admin')) { +$isModuleValid = false; +$URL = ''; +$check = 'failed'; + +// Is the maintenance mode active or goes all well? +if ((isExtensionActive('maintenance')) && (getConfig('maintenance') == 'Y') && (!isAdmin()) && (getModule() != 'admin')) { // Maintain mode is active and you are no admin addFatalMessage(__FILE__, __LINE__, getMessage('LANG_DOWN_MAINTAINCE')); -} elseif ((SQL_IS_LINK_UP()) && (getTotalFatalErrors() == 0)) { +} elseif ((SQL_IS_LINK_UP()) && (getTotalFatalErrors() == '0')) { // Construct module name - $GLOBALS['module_inc'] = sprintf("inc/modules/%s.php", SQL_ESCAPE(getModule())); + $GLOBALS['module_inc'] = sprintf("inc/modules/%s.php", getModule()); - // Did we found the module listed in allowed modules and are we successfully connected? - $check = checkModulePermissions(getModule()); + // Check module permission (again) + $check = checkModulePermissions(); switch ($check) { case 'cache_miss': // The cache is gone case 'admin_only': // Admin-only access case 'mem_only': // Member-only access case 'done': // All fine! // Does the module exists on local file system? - if ((isFileReadable($GLOBALS['module_inc'])) && (getTotalFatalErrors() == 0)) { + if ((isIncludeReadable($GLOBALS['module_inc'])) && (getTotalFatalErrors() == '0')) { // Module is valid, active and located on the local disc... $isModuleValid = true; - } elseif (!empty($URL)) { - // An URL was specified so we load the de-referrer module - redirectToUrl(DEREFERER($URL)); - } elseif (getTotalFatalErrors() == 0) { + } elseif (getTotalFatalErrors() == '0') { + // Module not found! addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_404'), getModule())); } break; @@ -91,7 +96,7 @@ if ((getConfig('maintenance') == 'Y') && (!IS_ADMIN()) && (getModule() != 'admin break; case 'locked': - if (!isFileReadable($GLOBALS['module_inc'])) { + if (!isIncludeReadable($GLOBALS['module_inc'])) { // Module does addionally not exists addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_404'), getModule())); } // END - if @@ -101,26 +106,22 @@ if ((getConfig('maintenance') == 'Y') && (!IS_ADMIN()) && (getModule() != 'admin break; default: - DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown status %s return from module check. Module=%s", $check, getModule())); + logDebugMessage(__FILE__, __LINE__, sprintf("Unknown status %s return from module check. Module=%s", $check, getModule())); addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_UNKNOWN'), $check)); break; - } -} elseif (getTotalFatalErrors() == 0) { + } // END - switch +} elseif (getTotalFatalErrors() == '0') { // MySQL problems! addFatalMessage(__FILE__, __LINE__, getMessage('MYSQL_ERRORS')); } if (($isModuleValid === true) && (isset($GLOBALS['module_inc']))) { - ///////////////////////////////////////////// - // Main including line DO NOT REMOVE/EDIT! // - ///////////////////////////////////////////// - // // Everything is okay so we can load the module loadIncludeOnce($GLOBALS['module_inc']); } // END - if -// Next-to-end add the footer +// Add the footer (this will call shutdown()) loadIncludeOnce('inc/footer.php'); -// +// [EOF] ?>