]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/autopurge_functions.php
A lot calls saved, expression language rewritten:
[mailer.git] / inc / libs / autopurge_functions.php
index 76be497ee5ad86b9c2c499907b3aa116d2a10ac9..fe3cdd4b586c22d6f55f2e95f96677966c55089b 100644 (file)
@@ -40,7 +40,7 @@
 // Some security stuff...
 if (!defined('__SECURITY')) {
        die();
-}
+} // END - if
 
 // Add points in autopurge-mode
 function addPointsAutoPurge ($userid, $points) {
@@ -52,5 +52,17 @@ function addPointsAutoPurge ($userid, $points) {
        sendEmail($userid, '{--AUTOPURGE_MEMBER_SUBJECT--}', $message);
 }
 
+// Checks wether auto-purging is active
+function isAutoPurgingActive () {
+       // Do we have cache?
+       if (!isset($GLOBALS['auto_purging_active'])) {
+               // Determine it
+               $GLOBALS['auto_purging_active'] = (getConfig('auto_purge_active') == 'Y');
+       } // END - if
+
+       // Return cache
+       return $GLOBALS['auto_purging_active'];
+}
+
 // [EOF]
 ?>