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'))); } // Subtract begged points from member account if the admin has selected one if (getConfig('beg_userid') > 0) { // Subtract from this account 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] ?>