X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fautopurge_functions.php;h=fe3cdd4b586c22d6f55f2e95f96677966c55089b;hb=46aeda7c31aefbe313f5c4bcf7cdbef4f1826fcc;hp=a420f9ee13423a9945140c57d7e1f46e0eadc114;hpb=b8aa17b98b99c27eafbdca0fa090bae63527da9a;p=mailer.git diff --git a/inc/libs/autopurge_functions.php b/inc/libs/autopurge_functions.php index a420f9ee13..fe3cdd4b58 100644 --- a/inc/libs/autopurge_functions.php +++ b/inc/libs/autopurge_functions.php @@ -1,7 +1,7 @@ 0) && (!empty($payout))) { - // Yes, he has. - $target = 'locked_points'; - } elseif ($payout == '0') { - // No, he has not - $target = 'points'; - } +// Add points in autopurge-mode +function addPointsAutoPurge ($userid, $points) { + // Add points over the ref system directly now + addPointsDirectly('autopurge_add', $userid, $points); - // Add points... - if (empty($payout)) { - // ... to jackpot account - ADD_JACKPOT($points); - if (empty($jackpot)) $jackpot = 0; - $jackpot += $points; - } else { - // .. to user's account - SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_points` SET `%s`=`%s`+%s WHERE `userid`=%s AND `ref_depth`=0 LIMIT 1", - array($target, $target, $points, bigintval($uid)), __FUNCTION__, __LINE__); + // Send out mail to user + $message = loadEmailTemplate('member_autopurge_points', array('points' => $points), $userid); + sendEmail($userid, '{--AUTOPURGE_MEMBER_SUBJECT--}', $message); +} - // Update mediadata as well - if ((GET_EXT_VERSION('mediadata') >= '0.0.4') && ($target == 'points')) { - // Update database - MEDIA_UPDATE_ENTRY(array('total_points'), 'add', $points); - } // END - if +// 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 - // Send out mail to user - $message = LOAD_EMAIL_TEMPLATE('member_autopurge_points', translateComma($points), $uid); - sendEmail($uid, getMessage('AUTOPURGE_MEMBER_SUBJECT'), $message); - } + // Return cache + return $GLOBALS['auto_purging_active']; } -// +// [EOF] ?>