X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Findex.php;h=a24d7d7b5cc35e15df31c3a2b22a00a5bd3bae6a;hp=128dc6e3a77a7eec2b6fb3db9bc80d98a6f746b7;hb=095f5ab59b539834d2c67e5d409d01820e10d8be;hpb=64c8349613addc3da2242c5cd6b99d64e3fb5f8e diff --git a/inc/modules/index.php b/inc/modules/index.php index 128dc6e3a7..a24d7d7b5c 100644 --- a/inc/modules/index.php +++ b/inc/modules/index.php @@ -1,7 +1,7 @@ generateDateTime(time(), 1))); // Add code-message here handleCodeMessage(); @@ -53,17 +52,8 @@ handleCodeMessage(); // Some of you needs this to be extracted into a template... ??? loadTemplate('guest_menu_td'); -// When no what value is provided take the "home" value -if (!isWhatSet()) setWhatFromConfig('index_home'); - -// Adding the main content module here -if (!isActionSet()) { - // Get action value from what value - setAction(getModeAction('guest', getWhat())); -} // END - if - // Add the guest's menu here... -if ((getConfig('guest_menu') == 'Y') || (!isExtensionActive('sql_patches', true))) { +if ((isGuestMenuEnabled()) || (!isExtensionActive('sql_patches', TRUE))) { // Show only when guest menu is active addMenu('guest', getAction(), getWhat()); } // END - if @@ -72,10 +62,10 @@ if ((getConfig('guest_menu') == 'Y') || (!isExtensionActive('sql_patches', true) loadTemplate('guest_menu_content'); // Disable block-mode by default -enableBlockMode(false); +enableBlockMode(FALSE); // Construct FQFN -$inc = sprintf("inc/modules/guest/action-%s.php", getAction()); +$inc = sprintf('inc/modules/guest/action-%s.php', getAction()); // Is the file there? if ((isIncludeReadable($inc)) && (isMenuActionValid('guest', getAction(), getWhat()))) { @@ -86,15 +76,15 @@ if ((isIncludeReadable($inc)) && (isMenuActionValid('guest', getAction(), getWha redirectToUrl('modules.php?module=index'); } -if ((getConfig('guest_menu') == 'Y') || (!isExtensionActive('sql_patches'))) { +if ((isGuestMenuEnabled()) || (!isExtensionActive('sql_patches'))) { // Right side of content (hint: a good place for 120x600 skyscraper banner!) loadTemplate('guest_content_footer'); // Some advertising stuff? loadTemplate('guest_advert2'); - outputHtml(" -"); + outputHtml(' +'); // Goto TOP template loadTemplate('guest_goto_top');