]> 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 190bfd144dd30df195ebc541b5a0e2246d542248..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,
@@ -81,9 +76,9 @@ while ($content = SQL_FETCHARRAY($result)) {
        $count++;
 } // END - while
 
-if ($count < getConfig('top10_max')) {
+if ($count < getTop10Max()) {
        // Add more "blank" rows
-       for ($i = $count; $i <= getConfig('top10_max'); $i++) {
+       for ($i = $count; $i <= getTop10Max(); $i++) {
                // Prepare data for template
                $content = array(
                        'index' => $i
@@ -98,32 +93,32 @@ if ($count < getConfig('top10_max')) {
 $rows['logins_out'] = $OUT;
 
 // Free result
-SQL_FREERESULT($result);
+sqlFreeResult($result);
 
 // TOP earners
-$result = SQL_QUERY("SELECT
-       d.`userid`,
-       SUM(p.`points` + p.`locked_points`) AS `points`,
-       d.`last_online`
+$result = sqlQuery("SELECT
+       `d`.`userid`,
+       SUM(`p`.`points` + `p`.`locked_points`) AS `points`,
+       `d`.`last_online`
 FROM
        `{?_MYSQL_PREFIX?}_user_data` AS `d`
 LEFT JOIN
        {?_MYSQL_PREFIX?}_user_points AS `p`
 ON
-       p.`userid`=d.`userid`
+       `p`.`userid`=`d`.`userid`
 WHERE
-       p.`points` > 0 AND
-       d.`status`='CONFIRMED'
+       `p`.`points` > 0 AND
+       `d`.`status`='CONFIRMED'
        " . runFilterChain('user_exclusion_sql', ' ') . "
 GROUP BY
-       p.`userid`
+       `p`.`userid`
 ORDER BY
        `points` DESC,
-       d.`last_online` DESC
+       `d`.`last_online` DESC
 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');
@@ -135,9 +130,9 @@ while ($content = SQL_FETCHARRAY($result)) {
        $count++;
 } // END - while
 
-if ($count < getConfig('top10_max')) {
+if ($count < getTop10Max()) {
        // Add more "blank" rows
-       for ($i = $count; $i <= getConfig('top10_max'); $i++) {
+       for ($i = $count; $i <= getTop10Max(); $i++) {
                // Prepare data for template
                $content = array(
                        'index' => $i
@@ -152,32 +147,32 @@ if ($count < getConfig('top10_max')) {
 $rows['points_out'] = $OUT;
 
 // Free result
-SQL_FREERESULT($result);
+sqlFreeResult($result);
 
 // TOP referral "hunter"
-$result = SQL_QUERY("SELECT
-       d.`userid`,
-       SUM(r.`counter`) AS `refs`,
-       d.`last_online`
+$result = sqlQuery("SELECT
+       `d`.`userid`,
+       SUM(`r`.`counter`) AS `refs`,
+       `d`.`last_online`
 FROM
        `{?_MYSQL_PREFIX?}_user_data` AS `d`
 LEFT JOIN
        {?_MYSQL_PREFIX?}_refsystem AS `r`
 ON
-       r.`userid`=d.`userid`
+       `r`.`userid`=`d`.`userid`
 WHERE
-       r.`counter` > 0 AND
-       d.`status`='CONFIRMED'
+       `r`.`counter` > 0 AND
+       `d`.`status`='CONFIRMED'
        " . runFilterChain('user_exclusion_sql', ' ') . "
 GROUP BY
-       r.`userid`
+       `r`.`userid`
 ORDER BY
        `refs` DESC,
-       d.`last_online` DESC
+       `d`.`last_online` DESC
 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,
@@ -193,9 +188,9 @@ while ($content = SQL_FETCHARRAY($result)) {
        $count++;
 } // END - while
 
-if ($count < getConfig('top10_max')) {
+if ($count < getTop10Max()) {
        // Add more "blank" rows
-       for ($i = $count; $i <= getConfig('top10_max'); $i++) {
+       for ($i = $count; $i <= getTop10Max(); $i++) {
                // Prepare data for template
                $content = array(
                        'index' => $i
@@ -210,7 +205,7 @@ if ($count < getConfig('top10_max')) {
 $rows['referrals_out'] = $OUT;
 
 // Free result
-SQL_FREERESULT($result);
+sqlFreeResult($result);
 
 // Load final template
 loadTemplate('guest_top10', FALSE, $rows);