]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_sponsor.php
Renamed all SQL-related functions to camel-case notation
[mailer.git] / inc / modules / admin / what-list_sponsor.php
index fe3fe710ba752869f4fb410c56b5a943a92f02f2..ff5e1b1e88598cc62419fed4f55a75d361e3cc45 100644 (file)
@@ -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 *
@@ -45,24 +45,24 @@ addYouAreHereLink('admin', __FILE__);
 
 if (isGetRequestElementSet('id')) {
        // Show detailed informations to a sponsor
-       $result = SQL_QUERY_ESC("SELECT
-       `company`,`position`,`gender`,`surname`,`family`,`street_nr1`,`street_nr2`,`zip`,`city`,`country`,
-       `phone`,`fax`,`cell`,`email`,`url`,`tax_ident`,
+       $result = sqlQueryEscaped("SELECT
+       `company`, `position`, `gender`, `surname`, `family`, `street_nr1`, `street_nr2`, `zip`, `city`, `country`,
+       `phone`, `fax`, `cell`, `email`, `url`, `tax_ident`,
        `status`,
        UNIX_TIMESTAMP(`sponsor_created`) AS `sponsor_created`,
        UNIX_TIMESTAMP(`last_online`) AS `last_online`,
        UNIX_TIMESTAMP(`last_change`) AS `last_change`,
        `receive_warnings`,
-       `points_amount`,`points_used`,`remote_addr`,`warning_interval`,`refid`,`ref_count`
+       `points_amount`, `points_used`, `remote_addr`, `warning_interval`, `refid`, `ref_count`
 FROM
        `{?_MYSQL_PREFIX?}_sponsor_data`
 WHERE
        `id`=%s LIMIT 1",
        array(bigintval(getRequestElement('id'))), __FILE__, __LINE__);
 
-       if (SQL_NUMROWS($result) == 1) {
+       if (sqlNumRows($result) == 1) {
                // Load sponsor details
-               $content = SQL_FETCHARRAY($result);
+               $content = sqlFetchArray($result);
 
                // Check if an entry is empty
                foreach ($content as $k => $v) {
@@ -79,27 +79,27 @@ WHERE
                $content['last_online']     = generateDateTime($content['last_online'], 2);
                $content['last_change']     = generateDateTime($content['last_change'], 2);
                //  Orders total
-               $content['orders']          = countSumTotalData(bigintval(getRequestElement('id')), 'sponsor_orders', 'id', 'sponsor_id', true);
+               $content['orders']          = countSumTotalData(bigintval(getRequestElement('id')), 'sponsor_orders', 'id', 'sponsor_id', TRUE);
 
                // Load template
-               loadTemplate('admin_list_sponsor_details', false, $content);
+               loadTemplate('admin_list_sponsor_details', FALSE, $content);
        } else {
                // Sponsor not found
                displayMessage('{%message,ADMIN_SPONSOR_404=' . bigintval(getRequestElement('id')) . '%}');
        }
 
        // Free result
-       SQL_FREERESULT($result);
+       sqlFreeResult($result);
 } elseif (isGetRequestElementSet('refid')) {
        // Search for sponsor
-       $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `id`=%s LIMIT 1",
+       $result = sqlQueryEscaped("SELECT `id` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `id`=%s LIMIT 1",
                array(bigintval(getRequestElement('refid'))), __FILE__, __LINE__);
-       if (SQL_NUMROWS($result) == 1) {
+       if (sqlNumRows($result) == 1) {
                // Free memory
-               SQL_FREERESULT($result);
+               sqlFreeResult($result);
 
                // Sponsor found so let's list all his referrals
-               $result = SQL_QUERY_ESC("SELECT
+               $result = sqlQueryEscaped("SELECT
        `id`,
        `gender`,
        `surname`,
@@ -120,10 +120,10 @@ ORDER BY
        `id` ASC",
                array(bigintval(getRequestElement('refid'))), __FILE__, __LINE__);
 
-               if (!SQL_HASZERONUMS($result)) {
+               if (!ifSqlHasZeroNums($result)) {
                        // List refs now
                        // Free memory
-                       SQL_FREERESULT($result);
+                       sqlFreeResult($result);
                } else {
                        // No refs made so far
                        displayMessage(getMaskedMessage('ADMIN_SPONSOR_REFS_404', '<a href="{%url=modules.php?module=admin&amp;what=list_sponsor&amp;id=' . bigintval(getRequestElement('refid')) . '%}">' . bigintval(getRequestElement('refid')) . '</a>'));
@@ -134,11 +134,11 @@ ORDER BY
        }
 } else {
        // List all sponsors
-       $result_main = SQL_QUERY("SELECT
-       `id`,`gender`,`surname`,`family`,`email`,`status`,
+       $result_main = sqlQuery("SELECT
+       `id`, `gender`, `surname`, `family`, `email`, `status`,
        UNIX_TIMESTAMP(`sponsor_created`) AS `sponsor_created`,
        UNIX_TIMESTAMP(`last_online`) AS `last_online`,
-       `points_amount`,`points_used`,
+       `points_amount`, `points_used`,
        (`points_amount` + `points_used`) AS `points`,
        `remote_addr`
 FROM
@@ -146,24 +146,24 @@ FROM
 ORDER BY
        `id` ASC", __FILE__, __LINE__);
 
-       if (!SQL_HASZERONUMS($result_main)) {
+       if (!ifSqlHasZeroNums($result_main)) {
                // At least one sponsor found
                $OUT = '';
-               while ($content = SQL_FETCHARRAY($result_main)) {
+               while ($content = sqlFetchArray($result_main)) {
                        // Transfer data to array
                        $content['email']           = generateEmailLink($content['email'], 'sponsor_data');
                        $content['sponsor_created'] = generateDateTime($content['sponsor_created'], 2);
                        $content['last_online']     = generateDateTime($content['last_online'], 2);
 
                        // Load row template
-                       $OUT .= loadTemplate('admin_list_sponsor_row', true, $content);
+                       $OUT .= loadTemplate('admin_list_sponsor_row', TRUE, $content);
                } // END - while
 
                // Free memory
-               SQL_FREERESULT($result_main);
+               sqlFreeResult($result_main);
 
                // Load final template
-               loadTemplate('admin_list_sponsor', false, $OUT);
+               loadTemplate('admin_list_sponsor', FALSE, $OUT);
        } else {
                // No sponsors registered so far
                displayMessage('{--ADMIN_SPONSOR_NONE_REGISTERED--}');