X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fautopurge.php;h=d824f93912de3b3294786bab23d0ebdceb1ac118;hb=17bf2b3d87d31caef7b3de26d16a4b184a9bf975;hp=b312634738900081d372ac212bc97127dbd1a128;hpb=7f104f6fe558bb56b4205241435a2357c2feece1;p=mailer.git diff --git a/inc/autopurge.php b/inc/autopurge.php index b312634738..d824f93912 100644 --- a/inc/autopurge.php +++ b/inc/autopurge.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Auto-Loeschung von veralteten Mail-Links * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $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,29 +42,15 @@ 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 - -// Remove array -unset($INC_POOL); +// Init & set the include pool +INIT_INC_POOL(); +SET_INC_POOL(GET_DIR_AS_ARRAY("inc/autopurge/", "purge-")); -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'); -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'); // ?>