X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=modules.php;h=f079d6e11a47819e032cad62f379c14bbffc82a9;hp=323b0d91894ab940d0c05ef4c5f82146d637205b;hb=b45475d69fb583418eca1314b57278dd9af7a4f4;hpb=b8c86fa12322603c24a88ea2b0fd3dbeba612752 diff --git a/modules.php b/modules.php index 323b0d9189..f079d6e11a 100644 --- a/modules.php +++ b/modules.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Hauptladedatei. Laedt alle benoetigten Dateien * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * 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 * * For more information visit: http://www.mxchange.org * @@ -35,46 +40,45 @@ //xdebug_start_trace(); // Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) ) -require("inc/libs/security_functions.php"); +require('inc/libs/security_functions.php'); // Init "action" and "what" $GLOBALS['startTime'] = microtime(true); $GLOBALS['output_mode'] = 0; -$GLOBALS['what'] = ""; -$GLOBALS['action'] = ""; -$GLOBALS['userid'] = 0; -$GLOBALS['module'] = ""; +$GLOBALS['what'] = ''; +$GLOBALS['action'] = ''; +$GLOBALS['module'] = ''; // Needed include files -require("inc/config.php"); +require('inc/config.php'); -// Fix missing module to "index" -if (!REQUEST_ISSET_GET(('module'))) REQUEST_SET_GET('module', "index"); +// Fix missing module to 'index' +if (!REQUEST_ISSET_GET('module')) REQUEST_SET_GET('module', 'index'); // Check if logged in if (IS_MEMBER()) { // Is still logged in so we welcome him with his name $result = SQL_QUERY_ESC("SELECT surname, family FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1", - array($GLOBALS['userid']), __FILE__, __LINE__); + array(getUserId()), __FILE__, __LINE__); if (SQL_NUMROWS($result) == 1) { // Load surname and family's name and build the username list($s, $f) = SQL_FETCHROW($result); - $username = $s." ".$f; + $username = $s.' '.$f; // Additionally admin? if (IS_ADMIN()) { // Add it - $username .= " ({!_ADMIN_SHORT!})"; + $username .= ' ({--_ADMIN_SHORT--})'; } // END - if } else { // Hmmm, logged in and no valid userid? - $username = "{!_UNKNOWN!}"; + $username = '{--_UNKNOWN--}'; // Destroy session destroy_user_session(); // Kill userid - $GLOBALS['userid'] = 0; + setUserId(0); } // Free memory @@ -88,11 +92,11 @@ if (IS_MEMBER()) { } // The header file -LOAD_INC_ONCE("inc/header.php"); +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")) { +$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)) { @@ -100,12 +104,12 @@ if ((getConfig('maintenance') == "Y") && (!IS_ADMIN()) && ($GLOBALS['module'] != 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 = CHECK_MODULE($GLOBALS['module']); + $check = checkModulePermissions($GLOBALS['module']); switch ($check) { - case "admin_only": - case "mem_only": - case "done": + 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... @@ -118,11 +122,11 @@ if ((getConfig('maintenance') == "Y") && (!IS_ADMIN()) && ($GLOBALS['module'] != } break; - case "404": + case '404': addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_404'), $GLOBALS['module'])); break; - case "locked": + case 'locked': if (!FILE_READABLE(constant('__MODULE'))) { // Module does addionally not exists addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_404'), $GLOBALS['module'])); @@ -152,7 +156,7 @@ if (($MOD_VALID) && (defined('__MODULE'))) { } // END - if // Next-to-end add the footer -LOAD_INC_ONCE("inc/footer.php"); +LOAD_INC_ONCE('inc/footer.php'); // ?>