X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Findex.php;h=28bb48b2a3ccac7b4d1332434f1564e75be745be;hb=cefaabcb0dd3c10223543ba8170bf8f700bf6ec9;hp=27111a3f10b3b72ff64de8f1a7bdd80bb160e0f1;hpb=a954ccdf4aba81ec0e75a1836aa4bc14cb245aba;p=mailer.git diff --git a/inc/modules/index.php b/inc/modules/index.php index 27111a3f10..28bb48b2a3 100644 --- a/inc/modules/index.php +++ b/inc/modules/index.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Eingangsseite * * -------------------------------------------------------------------- * - * * + * $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 * @@ -33,36 +38,24 @@ // 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! - LOAD_URL("admin.php"); +} elseif (!EXT_IS_ACTIVE('sql_patches')) { + // The extension 'sql_patches' *MUST* be activated or you have lot's of problems! + redirectToUrl('modules.php?module=admin&ext_missing=sql_patches'); } // Load adverstising template -define('__GUEST_ADVERT', LOAD_TEMPLATE("guest_advert", true)); +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 (!empty($_GET['msg'])) { - // Default extension is "unknown" - $ext = "unknown"; - - // Is extension given? - if (!empty($_GET['ext'])) $ext = SQL_ESCAPE($_GET['ext']); +LOAD_TEMPLATE('guest_header'); - // Which message shall we output? - $msg = convertCodeToMessage($_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"); +LOAD_TEMPLATE('guest_menu_td'); // When no what value is provided take the "home" value if (empty($GLOBALS['what'])) $GLOBALS['what'] = getConfig('index_home'); @@ -70,49 +63,49 @@ 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'] = getModeAction('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 -LOAD_TEMPLATE("guest_menu_content"); +LOAD_TEMPLATE('guest_menu_content'); // Disable block-mode by default -$BLOCK_MODE = false; +$GLOBALS['block_mode'] = false; // Construct FQFN $INC = sprintf("inc/modules/guest/action-%s.php", $GLOBALS['action']); // Is the file there? -if ((FILE_READABLE($INC)) && (VALIDATE_MENU_ACTION("guest", $GLOBALS['action'], $GLOBALS['what']))) { +if ((isIncludeReadable($INC)) && (isMenuActionValid('guest', $GLOBALS['action'], $GLOBALS['what']))) { // Requested module is available so we load it - LOAD_INC_ONCE($INC); + loadIncludeOnce($INC); } else { // Invalid module specified or not found... - LOAD_URL("modules.php?module=index"); + redirectToUrl('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"); + LOAD_TEMPLATE('guest_content_footer'); // Some advertising stuff? - LOAD_TEMPLATE("guest_advert2"); + LOAD_TEMPLATE('guest_advert2'); OUTPUT_HTML(" "); // Goto TOP template - LOAD_TEMPLATE("guest_goto_top"); + LOAD_TEMPLATE('guest_goto_top'); } // END - if // Footer template (Thanx to Mr. Glaus!) -LOAD_TEMPLATE("guest_footer"); +LOAD_TEMPLATE('guest_footer'); // ?>