X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-payout.php;h=c0f6f66d53bcd7070748c742f60777bd5b8c7354;hp=e0bba7eee52b59dda96982013d9c7fd17f8b5c7a;hb=155492a5b96cec674846973a8524238b0365a848;hpb=2df9f7a53f8b1dd5164f87824a324ccb3b6634cb diff --git a/inc/modules/member/what-payout.php b/inc/modules/member/what-payout.php index e0bba7eee5..c0f6f66d53 100644 --- a/inc/modules/member/what-payout.php +++ b/inc/modules/member/what-payout.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * Copyright (c) 2009 - 2013 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -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,40 +70,40 @@ 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 - p.`id`, - p.`payout_total`, - p.`target_account`, - p.`target_bank`, - t.`type`, - p.`payout_timestamp`, - p.`status`, - t.`allow_url` AS `allow`, - p.`target_url` AS `url`, - p.`link_text`, - p.`banner_url` AS `banner` + $result_payouts = sqlQueryEscaped('SELECT + `p`.`id`, + `p`.`payout_total`, + `p`.`target_account`, + `p`.`target_bank`, + `t`.`type`, + `p`.`payout_timestamp`, + `p`.`status`, + `t`.`allow_url`, + `p`.`target_url`, + `p`.`link_text`, + `p`.`banner_url` FROM `{?_MYSQL_PREFIX?}_user_payouts` AS `p` LEFT JOIN `{?_MYSQL_PREFIX?}_payout_types` AS `t` ON - p.`payout_id` = t.`id` + `p`.`payout_id`=`t`.`id` WHERE - p.`userid` = %s + `p`.`userid`=%s ORDER BY - p.`payout_timestamp` DESC", + `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'] == 'Y') { + if ($content['allow_url'] == 'Y') { // Banner/Textlink views/clicks request if (!empty($content['banner'])) { // Banner @@ -112,22 +112,22 @@ ORDER BY // Textlink $content['target_account'] = $content['link_text']; } - $content['target_bank'] = '{--CLICK_HERE--}'; + $content['target_bank'] = '{--CLICK_HERE--}'; } // END - if // Prepare data for the template $content['payout_timestamp'] = generateDateTime($content['payout_timestamp'], 2); // Load row template and switch colors - $OUT .= loadTemplate('member_payout_row', true, $content); + $OUT .= loadTemplate('member_payout_row', TRUE, $content); } // END - while // Load template - loadTemplate('member_payout', false, $OUT); + loadTemplate('member_payout', FALSE, $OUT); } // 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` AS allow 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); @@ -167,9 +167,9 @@ ORDER BY subtractPoints('payout', getMemberId(), $points); // Add entry to his tranfer history - if ($content['allow'] == 'Y') { + 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(), @@ -222,7 +222,7 @@ VALUES (%s,%s,%s,'%s',%s, UNIX_TIMESTAMP(), 'NEW','%s')", // Load template and output it displayMessage('{--MEMBER_PAYOUT_REQUEST_SENT--}'); - } elseif ($content['allow'] == 'Y') { + } elseif ($content['allow_url'] == 'Y') { // Prepare content $content = array( 'max' => $max, @@ -231,7 +231,7 @@ VALUES (%s,%s,%s,'%s',%s, UNIX_TIMESTAMP(), 'NEW','%s')", ); // Generate banner order form - loadTemplate('member_payout_form_banner', false, $content); + loadTemplate('member_payout_form_banner', FALSE, $content); } else { // Prepare content $content = array( @@ -241,7 +241,7 @@ VALUES (%s,%s,%s,'%s',%s, UNIX_TIMESTAMP(), 'NEW','%s')", ); // Generate normal form - loadTemplate('member_payout_form', false, $content); + loadTemplate('member_payout_form', FALSE, $content); } } else { // Not enougth points @@ -253,7 +253,7 @@ VALUES (%s,%s,%s,'%s',%s, UNIX_TIMESTAMP(), 'NEW','%s')", } // Free result - SQL_FREERESULT($result); + sqlFreeResult($result); } // [EOF]