]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-surfbar_stats.php
Renamed all SQL-related functions to camel-case notation
[mailer.git] / inc / modules / admin / what-surfbar_stats.php
index c13139ea3c13338a41bfa0ed8cc5455bb01c786f..a60aee9bd4448983ad30cdc7f895791288b8b633 100644 (file)
@@ -46,7 +46,7 @@ addYouAreHereLink('admin', __FILE__);
 // Is the 'url_id' set?
 if (isGetRequestElementSet('url_id')) {
        // Generate general statistics
-       $result = SQL_QUERY_ESC("SELECT
+       $result = sqlQueryEscaped("SELECT
        `stats_userid`,
        `stats_count` AS `total_visits`,
        UNIX_TIMESTAMP(`stats_last_surfed`) AS `last_surfed`
@@ -59,10 +59,10 @@ ORDER BY
                array(bigintval(getRequestElement('url_id'))), __FILE__, __LINE__);
 
        // Entries found?
-       if (!SQL_HASZERONUMS($result)) {
+       if (!ifSqlHasZeroNums($result)) {
                // Get all rows
                $OUT = ''; $count = '0'; $visits = '0';
-               while ($content = SQL_FETCHARRAY($result)) {
+               while ($content = sqlFetchArray($result)) {
                        // Count totals
                        $visits += $content['total_visits'];
 
@@ -90,7 +90,7 @@ ORDER BY
        }
 } else {
        // Generate general statistics
-       $result = SQL_QUERY("SELECT
+       $result = sqlQuery("SELECT
        `stats_userid`,
        COUNT(`stats_url_id`) AS `visited_urls`,
        SUM(`stats_count`) AS `total_visits`
@@ -102,10 +102,10 @@ ORDER BY
        `stats_userid` ASC", __FILE__, __LINE__);
 
        // Entries found?
-       if (!SQL_HASZERONUMS($result)) {
+       if (!ifSqlHasZeroNums($result)) {
                // Get all rows
                $OUT = ''; $urlArray = '0'; $visits = '0';
-               while ($content = SQL_FETCHARRAY($result)) {
+               while ($content = sqlFetchArray($result)) {
                        // Count totals
                        $urlArray += $content['visited_urls'];
                        $visits   += $content['total_visits'];
@@ -131,7 +131,7 @@ ORDER BY
 }
 
 // Free result
-SQL_FREERESULT($result);
+sqlFreeResult($result);
 
 // [EOF]
 ?>