X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Findex.php;h=928ec04109431ae7c7fa97f053e885e791d3c829;hp=366c6d16c7db47a46d1b6802ab9ebcc8fe9828e0;hb=8fad776382e63b3f73f8dbe289f229d79cfc2c22;hpb=4ef4c88fc481335dc0631b223111c15a84cccb51 diff --git a/inc/modules/index.php b/inc/modules/index.php index 366c6d16c7..928ec04109 100644 --- a/inc/modules/index.php +++ b/inc/modules/index.php @@ -1,7 +1,7 @@ generateDateTime(time(), 1))); -// Add message here -if (!empty($_GET['msg'])) { - switch ($_GET['msg']) { - case CODE_LOGOUT_DONE : $msg = LOGOUT_DONE; break; - case CODE_LOGOUT_FAILED : $msg = "".LOGOUT_FAILED.""; break; - case CODE_DATA_INVALID : $msg = MAIL_DATA_INVALID; break; - case CODE_POSSIBLE_INVALID : $msg = MAIL_POSSIBLE_INVALID; break; - case CODE_ACCOUNT_LOCKED : $msg = MEMBER_ACCOUNT_LOCKED_UNC; break; - case CODE_USER_404 : $msg = USER_NOT_FOUND; break; - case CODE_STATS_404 : $msg = MAIL_STATS_404; break; - case CODE_ALREADY_CONFIRMED: $msg = MAIL_ALREADY_CONFIRMED; break; - case CODE_ERROR_MAILID : if (EXT_IS_ACTIVE("mailid", true)) { $msg = ERROR_CONFIRMING_MAIL; } else { $msg = sprintf(EXTENSION_PROBLEM_NOT_INSTALLED, "mailid"); } break; - case CODE_EXTENSION_PROBLEM: $msg = sprintf(EXTENSION_PROBLEM_EXT_INACTIVE, "mailid"); break; - case CODE_COOKIES_DISABLED : $msg = LOGIN_NO_COOKIES; break; - case CODE_BEG_SAME_AS_OWN : $msg = BEG_SAME_UID_AS_OWN; break; - case CODE_LOGIN_FAILED : $msg = LOGIN_FAILED_GENERAL; break; - default : $msg = UNKNOWN_MAILID_CODE_1.$_GET['msg'].UNKNOWN_MAILID_CODE_2; break; - } - - // 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'] = $_CONFIG['index_home']; - -// Adding the main content module here -if (empty($GLOBALS['action'])) { - // Get action value from what value - $act = GET_ACTION("guest", $GLOBALS['what']); -} else { - // Get action value directly from URL - $act = COMPILE_CODE($GLOBALS['action']); -} +loadTemplate('guest_menu_td'); // Add the guest's menu here... -if (($_CONFIG['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", $act, $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 +enableBlockMode(false); + +// Construct FQFN +$inc = sprintf("inc/modules/guest/action-%s.php", getAction()); -$INC_ACTION = sprintf("%sinc/modules/guest/action-%s.php", PATH, $act); -if ((FILE_READABLE($INC_ACTION)) && (VALIDATE_MENU_ACTION("guest", $act, $GLOBALS['what']))) { +// Is the file there? +if ((isIncludeReadable($inc)) && (isMenuActionValid('guest', getAction(), getWhat()))) { // Requested module is available so we load it - require_once($INC_ACTION); + loadIncludeOnce($inc); } else { // Invalid module specified or not found... - LOAD_URL("modules.php?module=index"); + redirectToUrl('modules.php?module=index'); } -if (($_CONFIG['guest_menu'] == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) { - // TDs between content and - LOAD_TEMPLATE("guest_content_footer"); +if ((getConfig('guest_menu') == 'Y') || (!isExtensionActive('sql_patches'))) { + // Right side of content (hint: a good place for 120x600 skyscraper banner!) + 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] ?>