X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Flibs%2Fbeg_functions.php;h=5fb6055eb74898c3c2030b31115faf0b7f1618f5;hb=5736dfb1b51bff78b3594a166f350e76784fa0ff;hp=9cd94d10eb7c8620257de35fe44c4ad0833feda5;hpb=319aa278f51afe669e6d51c4dfe08ba101599d72;p=mailer.git diff --git a/inc/libs/beg_functions.php b/inc/libs/beg_functions.php index 9cd94d10eb..5fb6055eb7 100644 --- a/inc/libs/beg_functions.php +++ b/inc/libs/beg_functions.php @@ -50,14 +50,10 @@ function addPointsBeg ($userid, $points) { 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 // @TODO Try to rewrite the following unset() unset($GLOBALS['ref_level']); - addPointsThroughReferalSystem('beg', $userid, $points, false, 0, $locked, strtolower(getConfig('beg_mode'))); + addPointsThroughReferalSystem('beg', $userid, $points, false, 0, strtolower(getConfig('beg_mode'))); } // Subtract begged points from member account if the admin has selected one @@ -70,13 +66,37 @@ function addPointsBeg ($userid, $points) { // Checks wether beg_rallye is enabled function isBegRallyeEnabled () { // Do we have cache? - if (!isset($GLOBALS['is_beg_rallye_enabled'])) { + if (!isset($GLOBALS[__FUNCTION__])) { // Determine it - $GLOBALS['is_beg_rallye_enabled'] = ((isExtensionInstalledAndNewer('beg', '0.2.8')) && (getConfig('beg_rallye') == 'Y')); + $GLOBALS[__FUNCTION__] = ((isExtensionInstalledAndNewer('beg', '0.2.8')) && (getConfig('beg_rallye') == 'Y')); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// Checks wether beg_rallye is enabled +function isBegNewMemberNotifyEnabled () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = ((isExtensionInstalledAndNewer('beg', '0.2.7')) && (getConfig('beg_new_member_notify') == 'Y')); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for beg_userid +function getBegUserid () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Get it + $GLOBALS[__FUNCTION__] = getConfig('beg_userid'); } // END - if // Return cache - return $GLOBALS['is_beg_rallye_enabled']; + return $GLOBALS[__FUNCTION__]; } // [EOF]