X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=modules.php;h=914724847e6027565c8601416c2ce7cd097b611d;hp=8368d269c1bfd7b44c8ba4f57d4c649a744287b9;hb=4373e155854012d687fdfcae4c69d1a940883fab;hpb=ae80e170b5d25a4782af90a7c3d81fbb176fa293 diff --git a/modules.php b/modules.php index 8368d269c1..914724847e 100644 --- a/modules.php +++ b/modules.php @@ -1,7 +1,7 @@ "._UNKNOWN.""; - } - - // Free memory - SQL_FREERESULT($result); -} elseif (IS_ADMIN()) { - $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 ((!empty($_CONFIG['maintenance'])) && ($_CONFIG['maintenance'] == "Y") && (!IS_ADMIN()) && ($GLOBALS['module'] != "admin")) { - // Maintain mode is active and you are no admin - ADD_FATAL(LANG_DOWN_MAINTAINCE); -} elseif (($link) && ($db) && (sizeof($FATAL) == 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, $GLOBALS['module'])); - - // Does the module exists on local file system? - if ((FILE_READABLE(__MODULE)) && (sizeof($FATAL) == 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 (sizeof($FATAL) == 0) { - ADD_FATAL(LANG_MOD_REG_404_1.$GLOBALS['module'].LANG_MOD_REG_404_2); - } - break; - - case "404": - ADD_FATAL(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 - ADD_FATAL(LANG_MOD_REG_404_1.$GLOBALS['module'].LANG_MOD_REG_404_2); - } - ADD_FATAL(LANG_MOD_LOCKED_1.$GLOBALS['module'].LANG_MOD_LOCKED_2); - break; - - default: - ADD_FATAL(LANG_MOD_UNKNOWN_1.$check.LANG_MOD_UNKNOWN_2); - break; - } -} - elseif (sizeof($FATAL) == 0) -{ - // MySQL problems! - ADD_FATAL(MYSQL_ERRORS); -} - -if ($MOD_VALID) { - ///////////////////////////////////////////// - // Main including line DO NOT REMOVE/EDIT! // - ///////////////////////////////////////////// - // - // Everything is okay so we can load the module - include (__MODULE); -} +require('inc/config-global.php'); -// Next-to-end add the footer -include (PATH."inc/footer.php"); +// Include module +doIncludeModule(); -// +// [EOF] ?>