]> git.mxchange.org Git - mailer.git/blobdiff - inc/autopurge.php
Re-added, now the right ones
[mailer.git] / inc / autopurge.php
index f3b1af8477fb5d2ab76add04b6475032c1e8e782..e74810d1b3e1cdafd6a5cd532e4a26d108e64565 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Auto-Loeschung von veralteten Mail-Links         *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision:: 856                                                    $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
+ * Needs to be in all Files and every File needs "svn propset           *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
  * For more information visit: http://www.mxchange.org                  *
@@ -37,26 +42,11 @@ if (!defined('__SECURITY')) {
        require($INC);
 } // END - if
 
-// 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
-
-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 the filter
+runFilterChain('load_includes', GET_DIR_AS_ARRAY("inc/autopurge/", "purge-"));
 
-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
+runFilterChain('extra_autopurge');
 
 //
 ?>