X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=modules.php;h=4034faef7d39d43af39461c91a9ae1c640c3f240;hp=2eb272b2be3a3061a5afadc62d8a01efa6f47ad3;hb=3e2e8ea82079f4e76b8add38efccf6c24afda507;hpb=fe1e1d3b8291b1ca991e3d2e639cb28097c53d74 diff --git a/modules.php b/modules.php index 2eb272b2be..4034faef7d 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'); @@ -52,38 +52,41 @@ $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'; +$isModuleValid = false; +$URL = ''; +$check = 'failed'; // Is the maintenance mode active or goes all well? -if ((EXT_IS_ACTIVE('maintenance')) && (getConfig('maintenance') == 'Y') && (!IS_ADMIN()) && (getModule() != 'admin')) { +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)) { // 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) { + // Module not found! addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_404'), getModule())); } break; @@ -93,7 +96,7 @@ if ((EXT_IS_ACTIVE('maintenance')) && (getConfig('maintenance') == 'Y') && (!IS_ 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 @@ -103,26 +106,22 @@ if ((EXT_IS_ACTIVE('maintenance')) && (getConfig('maintenance') == 'Y') && (!IS_ 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; - } + } // 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] ?>