]> git.mxchange.org Git - mailer.git/commitdiff
Wrapper getTurboRates() introduced
authorRoland Häder <roland@mxchange.org>
Fri, 29 Jul 2011 00:14:49 +0000 (00:14 +0000)
committerRoland Häder <roland@mxchange.org>
Fri, 29 Jul 2011 00:14:49 +0000 (00:14 +0000)
inc/libs/bonus_functions.php
inc/modules/admin/what-config_bonus.php

index 7236987cad24dd561544159c2843e86fade70b03..dd62ec7e5678d9937278fe3b11a1a26ba5fbdf7e 100644 (file)
@@ -82,7 +82,7 @@ function addTurboBonus ($mid, $userid, $type) {
                $points = getConfig('turbo_bonus');
        } else {
                // Anything else so let's explode all entered rank points
-               $test = explode(';', getConfig('turbo_rates'));
+               $test = explode(';', getTurboRates());
                if (!empty($test[$rank - 2])) {
                        // Level found
                        $points = $test[$rank - 2];
@@ -123,7 +123,7 @@ function addBonusRanks ($data, $type, $userid) {
        $GLOBALS['ranking_content']['rankings'] = '';
 
        // How many ranks do we have?
-       $ranks = count(explode(';', getConfig('turbo_rates'))) + 1;
+       $ranks = count(explode(';', getTurboRates())) + 1;
 
        // Load current user's data
        $result = SQL_QUERY_ESC("SELECT `level`,`points`,`timemark` FROM `{?_MYSQL_PREFIX?}_bonus_turbo` WHERE `%s`=%s AND `userid`=%s LIMIT 1",
@@ -339,5 +339,17 @@ function getBonusRanks () {
        return $GLOBALS[__FUNCTION__];
 }
 
+// Getter for turbo_rates
+function getTurboRates () {
+       // Do we have cache?
+       if (!isset($GLOBALS[__FUNCTION__])) {
+               // Determine it
+               $GLOBALS[__FUNCTION__] = getConfig('turbo_rates');
+       } // END - if
+
+       // Return cache
+       return $GLOBALS[__FUNCTION__];
+}
+
 // [EOF]
 ?>
index fe4e8b81380eee6d6a65a0e1e321c8406ed50b68..143885c6994b4bec08e5bb7845063f4574814829 100644 (file)
@@ -74,10 +74,10 @@ if (isFormSent()) {
        $content['bonus_userid'] = addMemberSelectionBox(getBonusUserid(), false, true, true, 'bonus_userid');
 
        // Initialize array for the points list
-       $RANKS = explode(';', getConfig('turbo_rates'));
+       $RANKS = explode(';', getTurboRates());
 
        // Automatically calculate bonus points for ranks 2 and 3 when not set
-       if (getConfig('turbo_rates') == '') $RANKS = array(round(getConfig('turbo_bonus') / 2), round(getConfig('turbo_bonus') / 4));
+       if (getTurboRates() == '') $RANKS = array(round(getConfig('turbo_bonus') / 2), round(getConfig('turbo_bonus') / 4));
 
        // Generate list
        $OUT = '<ol start="2">';