X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Findex.php;h=928ec04109431ae7c7fa97f053e885e791d3c829;hp=7c13b54fa4124644645ea50832c5a56b39f5f89e;hb=8fad776382e63b3f73f8dbe289f229d79cfc2c22;hpb=102d8ff4dc03d13ba12cc5181da83f48feb7a4d6 diff --git a/inc/modules/index.php b/inc/modules/index.php index 7c13b54fa4..928ec04109 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 (!isWhatSet()) setWhatFromConfig('index_home'); - -// Adding the main content module here -if (!isActionSet()) { - // Get action value from what value - setAction(getModeAction('guest', getWhat())); -} // 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', getAction(), getWhat()); + 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 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()))) { +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 ((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] ?>