]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-payout.php
Renamed all SQL-related functions to camel-case notation
[mailer.git] / inc / modules / member / what-payout.php
index ca1e63910b889340f9b569674d90988d1e37deff..c0f6f66d53bcd7070748c742f60777bd5b8c7354 100644 (file)
@@ -57,7 +57,7 @@ $payoutPoints = getPayoutPoints(getMemberId());
 
 if (!isGetRequestElementSet('payout')) {
        // Load payout types
-       $result = SQL_QUERY_ESC("SELECT
+       $result = sqlQueryEscaped("SELECT
        `id`,
        `type`,
        `rate`,
@@ -70,12 +70,12 @@ WHERE
 ORDER BY
        `type` ASC",
                array($payoutPoints), __FILE__, __LINE__);
-       if (!SQL_HASZERONUMS($result)) {
+       if (!ifSqlHasZeroNums($result)) {
                // Free memory
-               SQL_FREERESULT($result);
+               sqlFreeResult($result);
 
                // Check for his payouts
-               $result_payouts = SQL_QUERY_ESC('SELECT
+               $result_payouts = sqlQueryEscaped('SELECT
        `p`.`id`,
        `p`.`payout_total`,
        `p`.`target_account`,
@@ -98,10 +98,10 @@ WHERE
 ORDER BY
        `p`.`payout_timestamp` DESC',
                        array(getMemberId()), __FILE__, __LINE__);
-               if (!SQL_HASZERONUMS($result_payouts)) {
+               if (!ifSqlHasZeroNums($result_payouts)) {
                        // List all his requests
                        $OUT = '';
-                       while ($content = SQL_FETCHARRAY($result_payouts)) {
+                       while ($content = sqlFetchArray($result_payouts)) {
                                // Nothing entered must be secured in member/what-payputs.php !
                                if ($content['allow_url'] == 'Y') {
                                        // Banner/Textlink views/clicks request
@@ -127,7 +127,7 @@ ORDER BY
                } // END - if
 
                // Free memory
-               SQL_FREERESULT($result_payouts);
+               sqlFreeResult($result_payouts);
 
                // Output payout list
                outputPayoutList($payoutPoints);
@@ -137,12 +137,12 @@ ORDER BY
        }
 } else {
        // Chedk if he can get paid by selected type
-       $result = SQL_QUERY_ESC("SELECT `type`, `rate`, `min_points`, `allow_url` FROM `{?_MYSQL_PREFIX?}_payout_types` WHERE `id`=%s LIMIT 1",
+       $result = sqlQueryEscaped("SELECT `type`, `rate`, `min_points`, `allow_url` FROM `{?_MYSQL_PREFIX?}_payout_types` WHERE `id`=%s LIMIT 1",
                array(bigintval(getRequestElement('payout'))), __FILE__, __LINE__);
 
-       if (SQL_NUMROWS($result) == 1) {
+       if (sqlNumRows($result) == 1) {
                // id is valid so load the data
-               $content = SQL_FETCHARRAY($result);
+               $content = sqlFetchArray($result);
 
                // Calculate maximum value
                $max     = round($payoutPoints * $content['rate'] - 0.5);
@@ -169,7 +169,7 @@ ORDER BY
                                // Add entry to his tranfer history
                                if ($content['allow_url'] == 'Y') {
                                        // Banner/textlink ordered
-                                       SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_payouts` (`userid`, `payout_total`, `payout_id`, `payout_timestamp`, `status`, `target_url`, `link_text`, `banner_url`)
+                                       sqlQueryEscaped("INSERT INTO `{?_MYSQL_PREFIX?}_user_payouts` (`userid`, `payout_total`, `payout_id`, `payout_timestamp`, `status`, `target_url`, `link_text`, `banner_url`)
 VALUES (%s,%s,%s, UNIX_TIMESTAMP(), 'NEW','%s','%s','%s')",
                                        array(
                                                getMemberId(),
@@ -189,7 +189,7 @@ VALUES (%s,%s,%s, UNIX_TIMESTAMP(), 'NEW','%s','%s','%s')",
                                        }
                                } else {
                                        // e-currency payout requested
-                                       SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_payouts` (`userid`, `payout_total`, `target_account`, `target_bank`, `payout_id`, `payout_timestamp`, `status`, `password`)
+                                       sqlQueryEscaped("INSERT INTO `{?_MYSQL_PREFIX?}_user_payouts` (`userid`, `payout_total`, `target_account`, `target_bank`, `payout_id`, `payout_timestamp`, `status`, `password`)
 VALUES (%s,%s,%s,'%s',%s, UNIX_TIMESTAMP(), 'NEW','%s')",
                                        array(
                                                getMemberId(),
@@ -253,7 +253,7 @@ VALUES (%s,%s,%s,'%s',%s, UNIX_TIMESTAMP(), 'NEW','%s')",
        }
 
        // Free result
-       SQL_FREERESULT($result);
+       sqlFreeResult($result);
 }
 
 // [EOF]