]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-unlock_sponsor.php
Renamed all SQL-related functions to camel-case notation
[mailer.git] / inc / modules / admin / what-unlock_sponsor.php
index dc74ff764a24cadde295adda7e40a4ad33189cbd..caec3e1c74a35001c5a6b0cf893004d2001454f2 100644 (file)
@@ -56,7 +56,7 @@ if (isFormSent()) {
                        );
 
                        // Load his personal data
-                       $result_main = SQL_QUERY_ESC("SELECT
+                       $result_main = sqlQueryEscaped("SELECT
        `id`, `gender`, `surname`, `family`, `email`, `remote_addr`,
        UNIX_TIMESTAMP(`sponsor_created`) AS `sponsor_created`,
        `points_amount`, `points_used`,
@@ -71,12 +71,12 @@ LIMIT 1",
                        array($content['id']), __FILE__, __LINE__);
 
                        // Is there an entry?
-                       if (SQL_NUMROWS($result_main) == 1) {
+                       if (sqlNumRows($result_main) == 1) {
                                // Load data
-                               $content = SQL_FETCHARRAY($result_main);
+                               $content = sqlFetchArray($result_main);
 
                                // Check for open payments and close them
-                               $result = SQL_QUERY_ESC("SELECT
+                               $result = sqlQueryEscaped("SELECT
        `so`.`admin_id`,
        `so`.`pay_count`,
        UNIX_TIMESTAMP(`so`.`pay_ordered`) AS `pay_ordered`,
@@ -95,9 +95,9 @@ WHERE
 ORDER BY
        `sp`.`pay_name` ASC",
                                        array($content['id']), __FILE__, __LINE__);
-                               if (!SQL_HASZERONUMS($result)) {
+                               if (!ifSqlHasZeroNums($result)) {
                                        // Payment does exist
-                                       while ($content2 = SQL_FETCHARRAY($result)) {
+                                       while ($content2 = sqlFetchArray($result)) {
                                                // Merge both arrays
                                                $content = merge_array($content, $content2);
 
@@ -125,7 +125,7 @@ ORDER BY
                                }
 
                                // Free memory
-                               SQL_FREERESULT($result);
+                               sqlFreeResult($result);
                        } else {
                                // Not found
                                displayMessage('{%message,ADMIN_SPONSOR_ACCOUNT_404_ALREADY_CONFIRMED=' . $content['id'] . '%}');
@@ -133,10 +133,10 @@ ORDER BY
                        }
 
                        // Free memory
-                       SQL_FREERESULT($result_main);
+                       sqlFreeResult($result_main);
 
                        // Unlock sponsor account
-                       SQL_QUERY_ESC("UPDATE
+                       sqlQueryEscaped("UPDATE
        `{?_MYSQL_PREFIX?}_sponsor_data`
 SET
        `status`='CONFIRMED'
@@ -149,7 +149,7 @@ LIMIT 1",
                        // Update, if applyable, referral count and points
                        if ((isValidId($content['refid'])) && ($content['refid'] != $content['id'])) {
                                // Update referral account
-                               SQL_QUERY_ESC("UPDATE
+                               sqlQueryEscaped("UPDATE
        `{?_MYSQL_PREFIX?}_sponsor_data`
 SET
        `points_amount`=`points_amount`+{?sponsor_ref_points?},
@@ -160,9 +160,9 @@ LIMIT 1",
                                        array(bigintval($content['refid'])), __FILE__, __LINE__);
 
                                // Whas that update fine?
-                               if (!SQL_HASZEROAFFECTED()) {
+                               if (!ifSqlHasZeroAffectedRows()) {
                                        // Load referral's data
-                                       $result = SQL_QUERY_ESC("SELECT
+                                       $result = sqlQueryEscaped("SELECT
        `id`,
        `gender`,
        `surname`,
@@ -177,7 +177,7 @@ WHERE
        `id`=%s
 LIMIT 1",
                                        array(bigintval($content['refid'])), __FILE__, __LINE__);
-                                       $REFERRAL = SQL_FETCHARRAY($result);
+                                       $REFERRAL = sqlFetchArray($result);
 
                                        // Send warnings out?
                                        if ($REFERRAL['receive_warnings'] == 'Y') {
@@ -187,7 +187,7 @@ LIMIT 1",
                                        } // END - if
 
                                        // Free memory
-                                       SQL_FREERESULT($result);
+                                       sqlFreeResult($result);
                                } // END - if
                        } // END - if
 
@@ -202,7 +202,7 @@ LIMIT 1",
 } // END - if
 
 // Begin listing of all pending sponsor accounts
-$result = SQL_QUERY("SELECT
+$result = sqlQuery("SELECT
        `id`, `gender`, `surname`, `family`, `email`, `remote_addr`,
        UNIX_TIMESTAMP(`sponsor_created`) AS `sponsor_created`
 FROM
@@ -212,10 +212,10 @@ WHERE
 ORDER BY
        `id`", __FILE__, __LINE__);
 
-if (!SQL_HASZERONUMS($result)) {
+if (!ifSqlHasZeroNums($result)) {
        // Entries found so let's list them!
        $OUT = '';
-       while ($content = SQL_FETCHARRAY($result)) {
+       while ($content = sqlFetchArray($result)) {
                // Translate some data
                $content['sponsor_created'] = generateDateTime($content['sponsor_created'], 2);
 
@@ -231,7 +231,7 @@ if (!SQL_HASZERONUMS($result)) {
 }
 
 // Free memory
-SQL_FREERESULT($result);
+sqlFreeResult($result);
 
 // [EOF]
 ?>