]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-payout.php
www is out-dated
[mailer.git] / inc / modules / member / what-payout.php
index 1a3811e04e69330c429822489c55a930d9b9fac2..366aa4fffb942812e6ab438db0b4b39c9ccd2d0e 100644 (file)
@@ -17,7 +17,7 @@
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
- * For more information visit: http://www.mxchange.org                  *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
@@ -55,10 +55,10 @@ if ((!isExtensionActive('payout')) && (!isAdmin())) {
 // Translate point into comma
 $payoutPoints = getPayoutPoints(getMemberId());
 
-if (!isGetRequestParameterSet('payout')) {
+if (!isGetRequestElementSet('payout')) {
        // Load payout types
        $result = SQL_QUERY_ESC("SELECT
-       `id`, `type`, `rate`, `min_points`, `allow_url`
+       `id`,`type`,`rate`,`min_points`,`allow_url`
 FROM
        `{?_MYSQL_PREFIX?}_payout_types`
 WHERE
@@ -123,8 +123,8 @@ 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",
-               array(bigintval(getRequestParameter('payout'))), __FILE__, __LINE__);
+       $result = SQL_QUERY_ESC("SELECT `type`,`rate`,`min_points`,`allow_url` AS allow FROM `{?_MYSQL_PREFIX?}_payout_types` WHERE `id`=%s LIMIT 1",
+               array(bigintval(getRequestElement('payout'))), __FILE__, __LINE__);
 
        if (SQL_NUMROWS($result) == 1) {
                // id is valid so load the data
@@ -136,8 +136,8 @@ ORDER BY
 
                // Calulcate points from submitted amount
                $points = '0';
-               if (isPostRequestParameterSet('payout')) {
-                       $points  = bigintval(postRequestParameter('payout')) / $content['rate'];
+               if (isPostRequestElementSet('payout')) {
+                       $points  = bigintval(postRequestElement('payout')) / $content['rate'];
                        $PAY_MAX = $max / $content['rate'];
                }
 
@@ -146,24 +146,24 @@ ORDER BY
                        // Ok, he can get be paid
                        if ((isFormSent()) && ($points <= $PAY_MAX) && ($points >= $content['min_points'])) {
                                // Remember points in array
-                               setPostRequestParameter('payout_points', $points);
-                               setPostRequestParameter('type'         , $content['type']);
+                               setPostRequestElement('payout_points', $points);
+                               setPostRequestElement('type'         , $content['type']);
 
-                               // Subtract points from member's account
+                               // Subtract points from member's account and ignore return status
                                subtractPoints('payout', getMemberId(), $points);
 
                                // Add entry to his tranfer history
                                if ($content['allow'] == '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`)
+                                       SQL_QUERY_ESC("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(),
-                                               bigintval(postRequestParameter('payout')),
-                                               bigintval(getRequestParameter('payout')),
-                                               postRequestParameter('turl'),
-                                               postRequestParameter('link_text'),
-                                               postRequestParameter('banner')
+                                               bigintval(postRequestElement('payout')),
+                                               bigintval(getRequestElement('payout')),
+                                               postRequestElement('turl'),
+                                               postRequestElement('link_text'),
+                                               postRequestElement('banner')
                                        ), __FILE__, __LINE__);
 
                                        // Load templates
@@ -175,15 +175,15 @@ 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`)
+                                       SQL_QUERY_ESC("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(),
-                                               bigintval(postRequestParameter('payout')),
-                                               bigintval(postRequestParameter('account')),
-                                               postRequestParameter('bank'),
-                                               bigintval(getRequestParameter('payout')),
-                                               postRequestParameter('password')
+                                               bigintval(postRequestElement('payout')),
+                                               bigintval(postRequestElement('account')),
+                                               postRequestElement('bank'),
+                                               bigintval(getRequestElement('payout')),
+                                               postRequestElement('password')
                                        ), __FILE__, __LINE__);
 
                                        // Load templates
@@ -213,7 +213,7 @@ VALUES (%s,%s,%s,'%s',%s, UNIX_TIMESTAMP(), 'NEW','%s')",
                                $content = array(
                                        'max'    => $max,
                                        'type'   => $content['type'],
-                                       'payout' => bigintval(getRequestParameter('payout'))
+                                       'payout' => bigintval(getRequestElement('payout'))
                                );
 
                                // Generate banner order form
@@ -223,7 +223,7 @@ VALUES (%s,%s,%s,'%s',%s, UNIX_TIMESTAMP(), 'NEW','%s')",
                                $content = array(
                                        'max'    => $max,
                                        'type'   => $content['type'],
-                                       'payout' => bigintval(getRequestParameter('payout'))
+                                       'payout' => bigintval(getRequestElement('payout'))
                                );
 
                                // Generate normal form