]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/autopurge_functions.php
Moved surfbar-related functions, unnessary array element removed
[mailer.git] / inc / libs / autopurge_functions.php
index 8c5372fd113553a9ea909716d9e3f16930ee094c..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) {
@@ -49,7 +49,19 @@ function addPointsAutoPurge ($userid, $points) {
 
        // Send out mail to user
        $message = loadEmailTemplate('member_autopurge_points', array('points' => $points), $userid);
-       sendEmail($userid, getMessage('AUTOPURGE_MEMBER_SUBJECT'), $message);
+       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]