X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fautopurge.php;h=75bddcd86b15f2864ccb3d377222099beda077e1;hp=b312634738900081d372ac212bc97127dbd1a128;hb=77cdaff2afb97ed32985ced906a3a95ee078c2ef;hpb=7f104f6fe558bb56b4205241435a2357c2feece1 diff --git a/inc/autopurge.php b/inc/autopurge.php index b312634738..75bddcd86b 100644 --- a/inc/autopurge.php +++ b/inc/autopurge.php @@ -40,26 +40,11 @@ if (!defined('__SECURITY')) { // Load all includes $INC_POOL = GET_DIR_AS_ARRAY(PATH."inc/autopurge/", "purge-"); -// Include them all -foreach ($INC_POOL as $fqfn) { - // Load them only once - require_once($fqfn); -} // END - foreach +// Run the filter +RUN_FILTER('load_includes', $INC_POOL); -// Remove array -unset($INC_POOL); - -if (EXT_IS_ACTIVE("rallye")) { - // Check expired rallyes (hard-coded 3 days limit for displaying expired rallyes!) - require_once(PATH."inc/libs/rallye_functions.php"); - RALLYE_DELETE_EXPIRED_RALLYES(); -} - -if (EXT_IS_ACTIVE("bonus")) { - // Check for expired turbo bonus lines - require_once(PATH."inc/libs/bonus_functions.php"); - BONUS_PURGE_EXPIRED_TURBO_BONUS(); -} +// Run filters for extra autopurge +RUN_FILTER('extra_autopurge'); // ?>