X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Ffooter.php;h=9907b0608f15455f6c038a7e75775fd6e81dd978;hb=7f3f860c580046c17d18f2149f6c24a6bda2c901;hp=d4f6a4d1d7ac95be0f5017e865ee50462a16b9ed;hpb=c2e17d983fcbc0c3bd1dd37908d87c678f0367df;p=mailer.git diff --git a/inc/footer.php b/inc/footer.php index d4f6a4d1d7..9907b0608f 100644 --- a/inc/footer.php +++ b/inc/footer.php @@ -44,46 +44,11 @@ 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? - // 1234 5 54 4 5 5 4 4 5 543 3 4432 2 33 2 2 21 - if ((((isExtensionInstalledAndNewer('sql_patches', '0.4.1')) && (getConfig('show_timings') == 'Y') && (!isGetRequestElementSet('frame'))) || (isInstallationPhase())) && (getOutputMode() == 0) && ($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 + // 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