X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Findex.php;h=da924d85656957c9515b342c6df06bf7f47a7c5a;hb=5b285f7a67a114e9c75338fe3b1c1b02a268f059;hp=64f88cce418a5b4fcfdd6de013d062448eccfab6;hpb=414570c5081d337bb6c28dcf521bd8bca02f69e7;p=mailer.git diff --git a/inc/modules/index.php b/inc/modules/index.php index 64f88cce41..da924d8565 100644 --- a/inc/modules/index.php +++ b/inc/modules/index.php @@ -1,7 +1,7 @@ generateDateTime(time(), 1))); - // 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"); - -// When no what value is provided take the "home" value -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']); -} // END - if +loadTemplate('guest_menu_td'); // Add the guest's menu here... -if ((getConfig('guest_menu') == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) { +if ((getConfig('guest_menu') == 'Y') || (!isExtensionActive('sql_patches', true))) { // Show only when guest menu is active - ADD_MENU("guest", $GLOBALS['action'], $GLOBALS['what']); + addMenu('guest', getAction(), getWhat()); } // END - if // TDs between menu and content -LOAD_TEMPLATE("guest_menu_content"); +loadTemplate('guest_menu_content'); // Disable block-mode by default -$GLOBALS['block_mode'] = false; +enableBlockMode(false); // Construct FQFN -$INC = sprintf("inc/modules/guest/action-%s.php", $GLOBALS['action']); +$inc = sprintf("inc/modules/guest/action-%s.php", getAction()); // Is the file there? -if ((INCLUDE_READABLE($INC)) && (VALIDATE_MENU_ACTION("guest", $GLOBALS['action'], $GLOBALS['what']))) { +if ((isIncludeReadable($inc)) && (isMenuActionValid('guest', getAction(), getWhat()))) { // 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') || (!isExtensionActive('sql_patches'))) { // Right side of content (hint: a good place for 120x600 skyscraper banner!) - LOAD_TEMPLATE("guest_content_footer"); + loadTemplate('guest_content_footer'); // Some advertising stuff? - LOAD_TEMPLATE("guest_advert2"); + loadTemplate('guest_advert2'); - OUTPUT_HTML(" + outputHtml(" "); // Goto TOP template - LOAD_TEMPLATE("guest_goto_top"); + loadTemplate('guest_goto_top'); } // END - if // Footer template (Thanx to Mr. Glaus!) -LOAD_TEMPLATE("guest_footer"); +loadTemplate('guest_footer'); -// +// [EOF] ?>