]> git.mxchange.org Git - mailer.git/blobdiff - inc/autopurge.php
More constant rewrites
[mailer.git] / inc / autopurge.php
index ee4ec0224aaf1a6ff562f40e63ddbe17d162325c..72b242a0b41048526634c85707077ce35a92d8fc 100644 (file)
@@ -38,22 +38,13 @@ if (!defined('__SECURITY')) {
 } // END - if
 
 // Load all includes
-$INC_POOL = GET_DIR_AS_ARRAY(PATH."inc/autopurge/", "purge-");
+$INC_POOL = GET_DIR_AS_ARRAY("inc/autopurge/", "purge-");
 
-// Include them all
-foreach ($INC_POOL as $fqfn) {
-       // Load them only once
-       require_once($fqfn);
-} // END - foreach
+// Run the filter
+runFilterChain('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();
-}
+// Run filters for extra autopurge
+runFilterChain('extra_autopurge');
 
 //
 ?>