X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Findex.php;h=366c6d16c7db47a46d1b6802ab9ebcc8fe9828e0;hb=8c62082711b89c0efdca02d2662aa04bf248b31b;hp=e5019640be8c23f2fcc7cc2f82c26aa3443ab687;hpb=ccb0aa72b20c48415037e14ec572df588ef69236;p=mailer.git diff --git a/inc/modules/index.php b/inc/modules/index.php index e5019640be..366c6d16c7 100644 --- a/inc/modules/index.php +++ b/inc/modules/index.php @@ -48,8 +48,7 @@ LOAD_TEMPLATE("guest_header"); // Add message here if (!empty($_GET['msg'])) { - switch ($_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; @@ -65,8 +64,10 @@ if (!empty($_GET['msg'])) { 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 // Some of you needs this to be extracted into a template... ??? LOAD_TEMPLATE("guest_menu_td"); @@ -75,41 +76,33 @@ LOAD_TEMPLATE("guest_menu_td"); if (empty($GLOBALS['what'])) $GLOBALS['what'] = $_CONFIG['index_home']; // Adding the main content module here -if (empty($GLOBALS['action'])) -{ +if (empty($GLOBALS['action'])) { // Get action value from what value $act = GET_ACTION("guest", $GLOBALS['what']); -} - else -{ +} else { // Get action value directly from URL $act = COMPILE_CODE($GLOBALS['action']); } // Add the guest's menu here... -if (($_CONFIG['guest_menu'] == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) -{ +if (($_CONFIG['guest_menu'] == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) { // Show only when guest menu is active ADD_MENU("guest", $act, $GLOBALS['what']); -} +} // END - if // TDs between menu and content LOAD_TEMPLATE("guest_menu_content"); $INC_ACTION = sprintf("%sinc/modules/guest/action-%s.php", PATH, $act); -if ((file_exists($INC_ACTION)) && (is_readable($INC_ACTION)) && (VALIDATE_MENU_ACTION("guest", $act, $GLOBALS['what']))) -{ +if ((FILE_READABLE($INC_ACTION)) && (VALIDATE_MENU_ACTION("guest", $act, $GLOBALS['what']))) { // Requested module is available so we load it require_once($INC_ACTION); -} - else -{ +} else { // Invalid module specified or not found... LOAD_URL("modules.php?module=index"); } -if (($_CONFIG['guest_menu'] == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) -{ +if (($_CONFIG['guest_menu'] == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) { // TDs between content and LOAD_TEMPLATE("guest_content_footer"); @@ -121,7 +114,7 @@ if (($_CONFIG['guest_menu'] == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) // Goto TOP template LOAD_TEMPLATE("guest_goto_top"); -} +} // END - if // Footer template (Thanx to Mr. Glaus!) LOAD_TEMPLATE("guest_footer");