X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Ffooter.php;h=9907b0608f15455f6c038a7e75775fd6e81dd978;hb=7f3f860c580046c17d18f2149f6c24a6bda2c901;hp=9c97434af5092f2a7b4a73b4ecf7266927e698b8;hpb=64c8349613addc3da2242c5cd6b99d64e3fb5f8e;p=mailer.git diff --git a/inc/footer.php b/inc/footer.php index 9c97434af5..9907b0608f 100644 --- a/inc/footer.php +++ b/inc/footer.php @@ -43,46 +43,12 @@ if (!defined('__SECURITY')) { // Footer disabled or already sent? // 1234 5 54 45 5 5 543 3 321 -if ((((!isset($GLOBALS['footer_sent'])) || (($GLOBALS['footer_sent'] != '1') && ($GLOBALS['footer_sent'] != '2'))) && (getOutputMode() != '1'))) { - // @TODO Rewrite these all into filters - // Handle fatal errors - handleFatalErrors(); - - // Shall we display the copyright notice? - if ((!isGetRequestElementSet('frame')) && (basename($_SERVER['PHP_SELF']) != 'mailid_top.php') && ((getConfig('WRITE_FOOTER') == 'Y') || (isInstalling())) && ($GLOBALS['header_sent'] == '2')) { - // Backlink enabled? - if ((getConfig('ENABLE_BACKLINK') == 'Y') || (isInstalling())) { - // Copyright with backlink, thanks! :-) - loadTemplate('copyright_backlink'); - } else { - // No backlink in Copyright note - loadTemplate('copyright'); - } - } // END - if - - // Shall we display the parsing time and number of queries? - if ((((isExtensionInstalledAndNewer('sql_patches', '0.4.1')) && (getConfig('show_timings') == 'Y') && (!isGetRequestElementSet('frame'))) || (isInstallationPhase())) && ($GLOBALS['header_sent'] == '2')) { - // Then display it here - displayParsingTime(); - } // END - if - - // Shall we display SQL queries? - if ((isAdmin()) && (isExtensionInstalledAndNewer('other', '0.2.2')) && (getConfig('display_debug_sqls') == 'Y') && (!isGetRequestElementSet('frame')) && ($GLOBALS['header_sent'] == '2')) { - // Then display it here - displayDebugSqls(); - } // END - if - - // Shall we include the uberwach snippet? - if ((!isGetRequestElementSet('frame')) && (isExtensionActive('uberwach')) && (getModule() != 'admin') && ($GLOBALS['header_sent'] == '2')) { - // Then display it here - loadUberwachSnippet(); - } // END - if +if ((((!isset($GLOBALS['footer_sent'])) || (($GLOBALS['footer_sent'] != 1) && ($GLOBALS['footer_sent'] != 2))) && (getOutputMode() != 1))) { + // Run the filter, sweet huh? + runFilterChain('page_footer'); // Load page footer loadTemplate('page_footer'); - - // And the last closing HTML tag - outputHtml(''); } // END - if // Footer has been reached