X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-payout.php;h=26ae46ee72716ddb11b0ab73a2c1736c23219205;hb=34db702d004b245e5528b0ba20c6de441f61820a;hp=edb05b80424fb096c29798ba73caf3bcfb007072;hpb=c364e5bc64df1f184602dec6a86ad2d70e8f83a9;p=mailer.git diff --git a/inc/modules/member/what-payout.php b/inc/modules/member/what-payout.php index edb05b8042..26ae46ee72 100644 --- a/inc/modules/member/what-payout.php +++ b/inc/modules/member/what-payout.php @@ -54,17 +54,8 @@ if ((!isExtensionActive('payout')) && (!isAdmin())) { return; } // END - if -// Get total points -$totalPoints = countSumTotalData(getMemberId(), 'user_points', 'points'); - -// Get used points -$usedPoints = countSumTotalData(getMemberId(), 'user_data', 'used_points'); - // Translate point into comma -$totalPoints = ($totalPoints - $usedPoints); - -// Sanity check... -if (empty($totalPoints)) $totalPoints = '0.00000'; +$totalPoints = getTotalPoints(getMemberId()); if (!isGetRequestParameterSet('payout')) { // Load payout types @@ -83,7 +74,7 @@ ORDER BY // 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 AS alt, p.banner_url AS banner + 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 FROM `{?_MYSQL_PREFIX?}_user_payouts` AS p LEFT JOIN @@ -99,32 +90,21 @@ ORDER BY // List all his requests $OUT = ''; while ($content = SQL_FETCHARRAY($result_payouts)) { - // Translate status - $content['status'] = translatePayoutStatus(); - $content['status'] = '
' . $content['status'] . '
'; - // Nothing entered must be secured in member/what-payputs.php ! if ($content['allow'] == 'Y') { // Banner/Textlink views/clicks request if (!empty($content['banner'])) { // Banner - $content['target_account'] = '' . $content['alt'] . ''; + $content['target_account'] = '' . $content['link_text'] . ''; } else { // Textlink - $content['target_account'] = $content['alt']; + $content['target_account'] = $content['link_text']; } $content['target_bank'] = '{--CLICK_HERE--}'; } // END - if // Prepare data for the template - $content = array( - 'target_account' => $content['target_account'], - 'payout_total' => $content['payout_total'], - 'target_bank' => $content['target_bank'], - 'payout_timestamp' => generateDateTime($content['payout_timestamp'], 2), - 'status' => $content['status'], - 'type' => $content['type'], - ); + $content['payout_timestamp'] = generateDateTime($content['payout_timestamp'], 2); // Load row template and switch colors $OUT .= loadTemplate('member_payout_row', true, $content); @@ -184,7 +164,7 @@ VALUES (%s,%s,%s, UNIX_TIMESTAMP(), 'NEW','%s','%s','%s')", bigintval(postRequestParameter('payout')), bigintval(getRequestParameter('payout')), postRequestParameter('turl'), - postRequestParameter('alt'), + postRequestParameter('link_text'), postRequestParameter('banner') ), __FILE__, __LINE__);