]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/beg_functions.php
Slogan added, logout added to ext-sponsor:
[mailer.git] / inc / libs / beg_functions.php
index e7faa39850f1d5d08bb08421aec1d69673afda1d..cc648742f04b4ead6951694dcbd87cfecdccbcad 100644 (file)
@@ -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
@@ -79,6 +75,18 @@ function isBegRallyeEnabled () {
        return $GLOBALS['is_beg_rallye_enabled'];
 }
 
+// Checks wether beg_rallye is enabled
+function isBegNewMemberNotifyEnabled () {
+       // Do we have cache?
+       if (!isset($GLOBALS['is_beg_new_member_notify_enabled'])) {
+               // Determine it
+               $GLOBALS['is_beg_new_member_notify_enabled'] = ((isExtensionInstalledAndNewer('beg', '0.2.7')) && (getConfig('beg_new_member_notify') == 'Y'));
+       } // END - if
+
+       // Return cache
+       return $GLOBALS['is_beg_new_member_notify_enabled'];
+}
+
 // "Getter" for beg_userid
 function getBegUserid () {
        // Do we have cache?