X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Findex.php;h=a24d7d7b5cc35e15df31c3a2b22a00a5bd3bae6a;hp=28bb48b2a3ccac7b4d1332434f1564e75be745be;hb=095f5ab59b539834d2c67e5d409d01820e10d8be;hpb=ccc4a69ce9b17aa8d7b1554a3b2b017db091821b diff --git a/inc/modules/index.php b/inc/modules/index.php index 28bb48b2a3..a24d7d7b5c 100644 --- a/inc/modules/index.php +++ b/inc/modules/index.php @@ -1,7 +1,7 @@ generateDateTime(time(), 1))); // 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'] = getModeAction('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 ((isGuestMenuEnabled()) || (!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 ((isIncludeReadable($INC)) && (isMenuActionValid('guest', $GLOBALS['action'], $GLOBALS['what']))) { +if ((isIncludeReadable($inc)) && (isMenuActionValid('guest', getAction(), getWhat()))) { // Requested module is available so we load it - loadIncludeOnce($INC); + loadIncludeOnce($inc); } else { // Invalid module specified or not found... redirectToUrl('modules.php?module=index'); } -if ((getConfig('guest_menu') == 'Y') || (!EXT_IS_ACTIVE('sql_patches', true))) { +if ((isGuestMenuEnabled()) || (!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] ?>