]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/guest/what-top10.php
Filters for configurable userid exclusion added:
[mailer.git] / inc / modules / guest / what-top10.php
index ee437a3b594532fa3113ba2c51e7163ef977d0fe..1c6231871ff7203ceffde1c723e044843ce77b7d 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
@@ -37,7 +37,7 @@
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       die();
+       exit();
 } // END - if
 
 // Add description as navigation point
@@ -53,12 +53,14 @@ $rows = array();
 
 // TOP logins
 $result = SQL_QUERY("SELECT
-       `userid`, `last_online`
+       `userid`,
+       `last_online`
 FROM
        `{?_MYSQL_PREFIX?}_user_data`
 WHERE
        `total_logins` > 0 AND
        `status`='CONFIRMED'
+       " . runFilterChain('user_exclusion_sql', ' ') . "
 ORDER BY
        `total_logins` DESC
 LIMIT {?top10_max?}", __FILE__, __LINE__);
@@ -73,22 +75,22 @@ while ($content = SQL_FETCHARRAY($result)) {
        );
 
        // Load row template
-       $OUT .= loadTemplate('guest_top10_row_login', true, $content);
+       $OUT .= loadTemplate('guest_top10_row_login', TRUE, $content);
 
        // Count one up
        $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
                );
 
                // Load row template
-               $OUT .= loadTemplate('guest_top10_empty5', true, $content);
+               $OUT .= loadTemplate('guest_top10_empty5', TRUE, $content);
        } // END - for
 } // END - if
 
@@ -100,23 +102,24 @@ SQL_FREERESULT($result);
 
 // TOP earners
 $result = SQL_QUERY("SELECT
-       d.userid,
-       (SUM(p.points) - d.used_points) AS `points`,
-       d.last_online
+       `d`.`userid`,
+       SUM(`p`.`points` + `p`.`locked_points`) AS `points`,
+       `d`.`last_online`
 FROM
-       `{?_MYSQL_PREFIX?}_user_data` AS d
+       `{?_MYSQL_PREFIX?}_user_data` AS `d`
 LEFT JOIN
-       {?_MYSQL_PREFIX?}_user_points AS p
+       {?_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
+       `points` DESC,
+       `d`.`last_online` DESC
 LIMIT {?top10_max?}", __FILE__, __LINE__);
 
 $OUT = ''; $count = 1;
@@ -126,22 +129,22 @@ while ($content = SQL_FETCHARRAY($result)) {
        $content['last_online'] = generateDateTime($content['last_online'], '3');
 
        // Load row template
-       $OUT .= loadTemplate('guest_top10_row_earner', true, $content);
+       $OUT .= loadTemplate('guest_top10_row_earner', TRUE, $content);
 
        // Count one up
        $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
                );
 
                // Load row template
-               $OUT .= loadTemplate('guest_top10_empty4', true, $content);
+               $OUT .= loadTemplate('guest_top10_empty4', TRUE, $content);
        } // END - for
 } // END - if
 
@@ -151,25 +154,26 @@ $rows['points_out'] = $OUT;
 // Free result
 SQL_FREERESULT($result);
 
-// TOP referal "hunter"
+// TOP referral "hunter"
 $result = SQL_QUERY("SELECT
-       d.userid,
-       SUM(r.counter) AS refs,
-       d.last_online
+       `d`.`userid`,
+       SUM(`r`.`counter`) AS `refs`,
+       `d`.`last_online`
 FROM
-       `{?_MYSQL_PREFIX?}_user_data` AS d
+       `{?_MYSQL_PREFIX?}_user_data` AS `d`
 LEFT JOIN
-       {?_MYSQL_PREFIX?}_refsystem AS r
+       {?_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
+       `refs` DESC,
+       `d`.`last_online` DESC
 LIMIT {?top10_max?}", __FILE__, __LINE__);
 
 $OUT = ''; $count = 1;
@@ -183,33 +187,33 @@ while ($content = SQL_FETCHARRAY($result)) {
        );
 
        // Load row template
-       $OUT .= loadTemplate('guest_top10_row_refs', true, $content);
+       $OUT .= loadTemplate('guest_top10_row_refs', TRUE, $content);
 
        // Count one up
        $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
                );
 
                // Load row template
-               $OUT .= loadTemplate('guest_top10_empty5', true, $content);
+               $OUT .= loadTemplate('guest_top10_empty5', TRUE, $content);
        } // END - for
 } // END - if
 
 // Remember the rows in array
-$rows['referals_out'] = $OUT;
+$rows['referrals_out'] = $OUT;
 
 // Free result
 SQL_FREERESULT($result);
 
 // Load final template
-loadTemplate('guest_top10', false, $rows);
+loadTemplate('guest_top10', FALSE, $rows);
 
 // [EOF]
 ?>