X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Flibs%2Fautopurge_functions.php;h=275cdfcacc43349af7403147c36e01a0be0fe5b9;hp=70c63916c60daad8f45b140c3eb9aeefa845452c;hb=e3934352dffa6eb9da59a137ae1a9414e5b4d80b;hpb=3f51c40f4fede87228216f9285b745a339e3891d diff --git a/inc/libs/autopurge_functions.php b/inc/libs/autopurge_functions.php index 70c63916c6..275cdfcacc 100644 --- a/inc/libs/autopurge_functions.php +++ b/inc/libs/autopurge_functions.php @@ -1,7 +1,7 @@ $points), $userid); + sendEmail($userid, '{--MEMBER_AUTOPURGE_SUBJECT--}', $message); } -function AUTOPURGE_ADD_POINTS($uid, $points) { - // Check if he has locked points or not - $result = SQL_QUERY_ESC("SELECT `ref_payout` FROM `{!_MYSQL_PREFIX!}_user_data` WHERE `userid`=%s LIMIT 1", - array(bigintval($uid)), __FUNCTION__, __LINE__); - list($payout) = SQL_FETCHROW($result); - SQL_FREERESULT($result); +// Checks wether auto-purging is enabled +function isAutoPurgingActive () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = (getConfig('auto_purge_active') == 'Y'); + } // END - if - if (($payout > 0) && (!empty($payout))) { - // Yes, he has. - $target = 'locked_points'; - } elseif ($payout == '0') { - // No, he has not - $target = 'points'; - } + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// Wrapper for 'autopurge_inactive +function getAutopurgeInactive () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = (getConfig('autopurge_inactive') == 'Y'); + } // END - if - // 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__); + // Return cache + return $GLOBALS[__FUNCTION__]; +} - // 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 purging of inactive accounts is enabled +function isAutopurgeInactiveEnabled () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = (getAutopurgeInactive() == 'Y'); + } // END - if - // Send out mail to user - $msg = LOAD_EMAIL_TEMPLATE('member_autopurge_points', translateComma($points), $uid); - sendEmail($uid, getMessage('AUTOPURGE_MEMBER_SUBJECT'), $msg); - } + // Return cache + return $GLOBALS[__FUNCTION__]; } -// +// [EOF] ?>