]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/guest/what-top10.php
Opps, not all elements for sprintf() has been set.
[mailer.git] / inc / modules / guest / what-top10.php
index 1c6231871ff7203ceffde1c723e044843ce77b7d..e91c4b966f15ded19096930075277debf7b15fc8 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : TOP-Logins / Bestverdiener usw.                  *
  * -------------------------------------------------------------------- *
- * $Revision::                                                        $ *
- * $Date::                                                            $ *
- * $Tag:: 0.2.1-FINAL                                                 $ *
- * $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 *
@@ -52,7 +47,7 @@ if ((!isExtensionActive('top10')) && (!isAdmin())) {
 $rows = array();
 
 // TOP logins
-$result = SQL_QUERY("SELECT
+$result = sqlQuery("SELECT
        `userid`,
        `last_online`
 FROM
@@ -66,7 +61,7 @@ ORDER BY
 LIMIT {?top10_max?}", __FILE__, __LINE__);
 
 $OUT = ''; $count = 1;
-while ($content = SQL_FETCHARRAY($result)) {
+while ($content = sqlFetchArray($result)) {
        // Prepare data for template
        $content = array(
                'count'        => $count,
@@ -98,10 +93,10 @@ if ($count < getTop10Max()) {
 $rows['logins_out'] = $OUT;
 
 // Free result
-SQL_FREERESULT($result);
+sqlFreeResult($result);
 
 // TOP earners
-$result = SQL_QUERY("SELECT
+$result = sqlQuery("SELECT
        `d`.`userid`,
        SUM(`p`.`points` + `p`.`locked_points`) AS `points`,
        `d`.`last_online`
@@ -123,7 +118,7 @@ ORDER BY
 LIMIT {?top10_max?}", __FILE__, __LINE__);
 
 $OUT = ''; $count = 1;
-while ($content = SQL_FETCHARRAY($result)) {
+while ($content = sqlFetchArray($result)) {
        // Prepare data for template
        $content['count']       = $count;
        $content['last_online'] = generateDateTime($content['last_online'], '3');
@@ -152,10 +147,10 @@ if ($count < getTop10Max()) {
 $rows['points_out'] = $OUT;
 
 // Free result
-SQL_FREERESULT($result);
+sqlFreeResult($result);
 
 // TOP referral "hunter"
-$result = SQL_QUERY("SELECT
+$result = sqlQuery("SELECT
        `d`.`userid`,
        SUM(`r`.`counter`) AS `refs`,
        `d`.`last_online`
@@ -177,7 +172,7 @@ ORDER BY
 LIMIT {?top10_max?}", __FILE__, __LINE__);
 
 $OUT = ''; $count = 1;
-while ($content = SQL_FETCHARRAY($result)) {
+while ($content = sqlFetchArray($result)) {
        // Prepare data for template
        $content = array(
                'count'       => $count,
@@ -210,7 +205,7 @@ if ($count < getTop10Max()) {
 $rows['referrals_out'] = $OUT;
 
 // Free result
-SQL_FREERESULT($result);
+sqlFreeResult($result);
 
 // Load final template
 loadTemplate('guest_top10', FALSE, $rows);