X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fbeg_functions.php;h=e7faa39850f1d5d08bb08421aec1d69673afda1d;hb=bb3448dff42d948cc9752f81047ada54d69e80bd;hp=759c83d64cbf6a2374387d5b79a36ad4149df362;hpb=056162fe45aa0d850bb22870e1caf9595a847a9b;p=mailer.git diff --git a/inc/libs/beg_functions.php b/inc/libs/beg_functions.php index 759c83d64c..e7faa39850 100644 --- a/inc/libs/beg_functions.php +++ b/inc/libs/beg_functions.php @@ -1,7 +1,7 @@ 0) && ($_CONFIG['allow_direct_pay'] == "N")) $locked = true; - +function addPointsBeg ($userid, $points) { // Is begging rallye active? - if ($_CONFIG['beg_rallye'] == "Y") { + if (isBegRallyeEnabled()) { // Add points to rallye account - SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET beg_points=beg_points+%s WHERE userid=%s LIMIT 1", - array($points, $uid), __FILE__, __LINE__); + SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `beg_points`=`beg_points`+%s WHERE `userid`=%s LIMIT 1", + array($points, $userid), __FUNCTION__, __LINE__); } else { + // Set mode depending on how many mails the member has to confirm + $locked = false; + if ((getConfig('ref_payout') > 0) && (getConfig('allow_direct_pay') != 'Y')) $locked = true; + // Add points to account - unset($DEPTH); - ADD_POINTS_REFSYSTEM($uid, $points, false, "0", $locked, strtolower($_CONFIG['beg_mode'])); + // @TODO Try to rewrite the following unset() + unset($GLOBALS['ref_level']); + addPointsThroughReferalSystem('beg', $userid, $points, false, 0, $locked, strtolower(getConfig('beg_mode'))); } // Subtract begged points from member account if the admin has selected one - if ($_CONFIG['beg_uid'] > 0) { + if (getConfig('beg_userid') > 0) { // Subtract from this account - SUB_POINTS($_CONFIG['beg_uid'], $points); + subtractPoints('beg_payout', getConfig('beg_userid'), $points); } // END - if } +// Checks wether beg_rallye is enabled +function isBegRallyeEnabled () { + // Do we have cache? + if (!isset($GLOBALS['is_beg_rallye_enabled'])) { + // Determine it + $GLOBALS['is_beg_rallye_enabled'] = ((isExtensionInstalledAndNewer('beg', '0.2.8')) && (getConfig('beg_rallye') == 'Y')); + } // END - if + + // Return cache + return $GLOBALS['is_beg_rallye_enabled']; +} + +// "Getter" for beg_userid +function getBegUserid () { + // Do we have cache? + if (!isset($GLOBALS['beg_userid'])) { + // Get it + $GLOBALS['beg_userid'] = getConfig('beg_userid'); + } // END - if + + // Return cache + return $GLOBALS['beg_userid']; +} + // [EOF] ?>