X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Ffilter-functions.php;h=e83211bd9d394ffd7a211dba1e0309bab8c814b6;hb=d1ca15cbf3bbbf1281a24fdf204aa5a9bae80e0f;hp=e65b789167c411a17bd3fc2165084f7eda160ac6;hpb=7fabfadce30a7bea7ce3ad1f1e2e7e5e616f2669;p=mailer.git diff --git a/inc/filter-functions.php b/inc/filter-functions.php index e65b789167..e83211bd9d 100644 --- a/inc/filter-functions.php +++ b/inc/filter-functions.php @@ -119,13 +119,15 @@ ORDER BY // Init filters registerFilter('init', 'LOAD_CONFIGURATION'); registerFilter('init', 'INIT_EXTENSIONS'); + registerFilter('init', 'INIT_RANDOMIZER'); registerFilter('init', 'LOAD_RUNTIME_INCLUDES'); + registerFilter('init', 'INIT_RANDOM_NUMBER'); registerFilter('init', 'CHECK_SVN_REVISION'); registerFilter('init', 'RUN_DAILY_RESET'); - registerFilter('init', 'INIT_RANDOMIZER'); registerFilter('init', 'TRIGGER_SENDING_POOL'); registerFilter('init', 'DETERMINE_USERNAME'); registerFilter('init', 'DETERMINE_WHAT_ACTION'); + registerFilter('init', 'COUNT_MODULE'); registerFilter('init', 'UPDATE_LOGIN_DATA'); registerFilter('init', 'ACTIVATE_EXCHANGE'); @@ -156,6 +158,7 @@ ORDER BY // Register shutdown filters registerFilter('shutdown', 'FLUSH_FILTERS'); registerFilter('shutdown', 'FLUSH_STATS'); + registerFilter('shutdown', 'FLUSH_TEMPLATE_CACHE'); registerFilter('shutdown', 'FLUSH_OUTPUT'); // Compiling code @@ -173,6 +176,14 @@ ORDER BY // Exclude some users registerFilter('exclude_users', 'HTML_INCLUDE_USERS'); + + // Handling of fatal errors + registerFilter('handle_fatal_errors', 'HANDLE_FATAL_ERRORS'); + + // Page footer filters + registerFilter('page_footer', 'HANDLE_FATAL_ERRORS'); + registerFilter('page_footer', 'DISPLAY_COPYRIGHT'); + registerFilter('page_footer', 'DISPLAY_PARSING_TIME'); } // "Registers" a new filter function @@ -197,7 +208,7 @@ function registerFilter ($filterName, $filterFunction, $silentAbort = true, $for // Is the function there? if (!function_exists($filterFunction)) { // Then abort here - addFatalMessage(__FUNCTION__, __LINE__, sprintf(getMessage('FILTER_FAILED_404'), $filterFunction, $filterName)); + addFatalMessage(__FUNCTION__, __LINE__, sprintf("Filter function %s could not be added to filter chain %s.", $filterFunction, $filterName)); return false; } // END - if