X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Findex.php;h=ff21a48c258f0de5aecf113ce561ad4cf0f04fc2;hp=64f88cce418a5b4fcfdd6de013d062448eccfab6;hb=f97a999e0737c0007ae9c3c26dfef49f75a175ac;hpb=414570c5081d337bb6c28dcf521bd8bca02f69e7 diff --git a/inc/modules/index.php b/inc/modules/index.php index 64f88cce41..ff21a48c25 100644 --- a/inc/modules/index.php +++ b/inc/modules/index.php @@ -10,10 +10,10 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Eingangsseite * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * - * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009) $ * + * $Revision:: $ * + * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * - * $Author:: stelzi $ * + * $Author:: $ * * Needs to be in all Files and every File needs "svn propset * * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * @@ -38,10 +38,10 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); -} elseif (!EXT_IS_ACTIVE("sql_patches")) { - // The extension "sql_patches" *MUST* be activated or you have lot's of problems! +} elseif (!EXT_IS_ACTIVE('sql_patches')) { + // The extension 'sql_patches' *MUST* be activated or you have lot's of problems! LOAD_URL("admin.php"); } @@ -51,20 +51,8 @@ define('__GUEST_ADVERT', LOAD_TEMPLATE("guest_advert", true)); // Generate a tableset for the menu title and content LOAD_TEMPLATE("guest_header"); -// Add message here -if (REQUEST_ISSET_GET(('msg'))) { - // Default extension is "unknown" - $ext = "unknown"; - - // Is extension given? - if (REQUEST_ISSET_GET(('ext'))) $ext = REQUEST_GET(('ext')); - - // Which message shall we output? - $msg = convertCodeToMessage(REQUEST_GET('msg')); - - // Load message template - LOAD_TEMPLATE("message", false, $msg); -} // END - if +// Add code-message here +handleCodeMessage(); // Some of you needs this to be extracted into a template... ??? LOAD_TEMPLATE("guest_menu_td"); @@ -75,13 +63,13 @@ if (empty($GLOBALS['what'])) $GLOBALS['what'] = getConfig('index_home'); // Adding the main content module here if (empty($GLOBALS['action'])) { // Get action value from what value - $GLOBALS['action'] = GET_ACTION("guest", $GLOBALS['what']); + $GLOBALS['action'] = GET_ACTION('guest', $GLOBALS['what']); } // END - if // Add the guest's menu here... -if ((getConfig('guest_menu') == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) { +if ((getConfig('guest_menu') == 'Y') || (!EXT_IS_ACTIVE('sql_patches', true))) { // Show only when guest menu is active - ADD_MENU("guest", $GLOBALS['action'], $GLOBALS['what']); + ADD_MENU('guest', $GLOBALS['action'], $GLOBALS['what']); } // END - if // TDs between menu and content @@ -94,15 +82,15 @@ $GLOBALS['block_mode'] = false; $INC = sprintf("inc/modules/guest/action-%s.php", $GLOBALS['action']); // Is the file there? -if ((INCLUDE_READABLE($INC)) && (VALIDATE_MENU_ACTION("guest", $GLOBALS['action'], $GLOBALS['what']))) { +if ((INCLUDE_READABLE($INC)) && (VALIDATE_MENU_ACTION('guest', $GLOBALS['action'], $GLOBALS['what']))) { // Requested module is available so we load it LOAD_INC_ONCE($INC); } else { // Invalid module specified or not found... - LOAD_URL("modules.php?module=index"); + LOAD_URL('modules.php?module=index'); } -if ((getConfig('guest_menu') == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) { +if ((getConfig('guest_menu') == 'Y') || (!EXT_IS_ACTIVE('sql_patches', true))) { // Right side of content (hint: a good place for 120x600 skyscraper banner!) LOAD_TEMPLATE("guest_content_footer");