]> git.mxchange.org Git - mailer.git/blobdiff - inc/autopurge.php
More misc fixes and rewrites (sorry, lame description)
[mailer.git] / inc / autopurge.php
index 262bc3d1f3518bfc4a12d4a8c31af111fab6a050..5f2af6265f74bf608ea741f66e7c2d5923e4613f 100644 (file)
  * -------------------------------------------------------------------- *
  * 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                  *
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
        require($INC);
 } // END - if
 
-// Load all includes
-$INC_POOL = GET_DIR_AS_ARRAY("inc/autopurge/", "purge-");
+// Init & set the include pool
+INIT_INC_POOL();
+SET_INC_POOL(getArrayFromDirectory('inc/autopurge/', 'purge-'));
 
 // Run the filter
-RUN_FILTER('load_includes', $INC_POOL);
+runFilterChain('load_includes');
 
 // Run filters for extra autopurge
-RUN_FILTER('extra_autopurge');
+runFilterChain('extra_autopurge');
 
 //
 ?>