win32 to unix line delimiters changed
[mailer.git] / 0.2.1 / inc / modules / guest / what-top10.php
index 904ce45d6e31fe32e8eba1767e8c093817e62220..9360b695481953e5b3fcea35aac6c6833e3669b4 100644 (file)
-<?php\r
-/************************************************************************\r
- * MXChange v0.2.1                                    Start: 11/24/2004 *\r
- * ================                             Last change: 11/26/2004 *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * File              : what-top10.php                                   *\r
- * -------------------------------------------------------------------- *\r
- * Short description : TOP logins / best earner etc.                    *\r
- * -------------------------------------------------------------------- *\r
- * Kurzbeschreibung  : TOP-Logins / Bestverdiener usw.                  *\r
- * -------------------------------------------------------------------- *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *\r
- * For more information visit: http://www.mxchange.org                  *\r
- *                                                                      *\r
- * This program is free software; you can redistribute it and/or modify *\r
- * it under the terms of the GNU General Public License as published by *\r
- * the Free Software Foundation; either version 2 of the License, or    *\r
- * (at your option) any later version.                                  *\r
- *                                                                      *\r
- * This program is distributed in the hope that it will be useful,      *\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of       *\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *\r
- * GNU General Public License for more details.                         *\r
- *                                                                      *\r
- * You should have received a copy of the GNU General Public License    *\r
- * along with this program; if not, write to the Free Software          *\r
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *\r
- * MA  02110-1301  USA                                                  *\r
- ************************************************************************/\r
-\r
-// Some security stuff...\r
-if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))\r
-{\r
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";\r
-       require($INC);\r
-}\r
- elseif ((!EXT_IS_ACTIVE("top10")) && (!IS_ADMIN()))\r
-{\r
-       ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "top10");\r
-       return;\r
-}\r
-\r
-// Add description as navigation point\r
-ADD_DESCR("guest", basename(__FILE__));\r
-\r
-//// TOP logins\r
-$ADD = "userid";\r
-if (EXT_IS_ACTIVE("nickname")) $ADD = "nickname";\r
-$result = SQL_QUERY_ESC("SELECT userid, ".$ADD.", total_logins, last_online\r
-FROM "._MYSQL_PREFIX."_user_data\r
-WHERE total_logins>0 AND status='CONFIRMED' ORDER BY total_logins DESC LIMIT %s",\r
- array($CONFIG['top10_max']), __FILE__, __LINE__);\r
-\r
-$OUT = ""; $SW = 2; $cnt = 1;\r
-while(list($uid, $nick, $logins, $last) = SQL_FETCHROW($result))\r
-{\r
-       $nick2 = "---";\r
-       if (($nick != $uid) && (!empty($nick))) $nick2 = $nick;\r
-\r
-       // Prepare data for template\r
-       $content = array(\r
-               'sw'     => $SW,\r
-               'cnt'    => $cnt,\r
-               'uid'    => $uid,\r
-               'nick'   => $nick2,\r
-               'logins' => $logins,\r
-               'points' => TRANSLATE_COMMA(GET_TOTAL_DATA($uid, "user_points", "points")),\r
-               'last'   => MAKE_DATETIME($last, "3"),\r
-       );\r
-\r
-       // Load row template\r
-       $OUT .= LOAD_TEMPLATE("guest_top10_row_login", true, $content);\r
-\r
-       // Switch colors and count one up\r
-       $SW = 3 - $SW; $cnt++;\r
-}\r
-if ($cnt < $CONFIG['top10_max'])\r
-{\r
-       // Add more "blank" rows\r
-       for ($i = $cnt; $i <= $CONFIG['top10_max']; $i++)\r
-       {\r
-               // Prepare data for template\r
-               $content = array(\r
-                       'sw'  => $SW,\r
-                       'idx' => $i\r
-               );\r
-\r
-               // Load row template\r
-               $OUT .= LOAD_TEMPLATE("guest_top10_empty5", true, $content);\r
-               $SW = 3 - $SW;\r
-       }\r
-}\r
-define('__TOP_LOGINS_ROWS', $OUT);\r
-\r
-//// TOP earners\r
-$result = SQL_QUERY_ESC("SELECT DISTINCT p.userid, d.".$ADD.", (SUM(p.points) - d.used_points) AS tpoints, d.last_online\r
-FROM "._MYSQL_PREFIX."_user_points AS p\r
-LEFT JOIN "._MYSQL_PREFIX."_user_data AS d\r
-ON p.userid=d.userid\r
-WHERE p.points > 0 AND d.status='CONFIRMED'\r
-GROUP BY p.userid\r
-ORDER BY tpoints DESC, d.last_online DESC\r
-LIMIT %s",\r
- array($CONFIG['top10_max']), __FILE__, __LINE__);\r
-\r
-$OUT = ""; $SW = 2; $cnt = 1;\r
-while(list($uid, $nick, $points, $last) = SQL_FETCHROW($result))\r
-{\r
-       $nick2 = "---";\r
-       if (($nick != $uid) && (!empty($nick))) $nick2 = $nick;\r
-\r
-       // Prepare data for template\r
-       $content = array(\r
-               'sw'     => $SW,\r
-               'cnt'    => $cnt,\r
-               'uid'    => bigintval($uid),\r
-               'nick'   => $nick2,\r
-               'points' => TRANSLATE_COMMA($points),\r
-               'last'   => MAKE_DATETIME($last, "3")\r
-       );\r
-\r
-       // Load row template\r
-       $OUT .= LOAD_TEMPLATE("guest_top10_row_earner", true, $content);\r
-\r
-       // Switch colors and count one up\r
-       $SW = 3 - $SW; $cnt++;\r
-}\r
-if ($cnt < $CONFIG['top10_max'])\r
-{\r
-       // Add more "blank" rows\r
-       for ($i = $cnt; $i <= $CONFIG['top10_max']; $i++)\r
-       {\r
-               // Prepare data for template\r
-               $content = array(\r
-                       'sw'  => $SW,\r
-                       'idx' => $i\r
-               );\r
-\r
-               // Load row template\r
-               $OUT .= LOAD_TEMPLATE("guest_top10_empty4", true, $content);\r
-               $SW = 3 - $SW;\r
-       }\r
-}\r
-define('__TOP_POINTS_ROWS', $OUT);\r
-\r
-//// TOP referral "hunter"\r
-$result = SQL_QUERY_ESC("SELECT DISTINCT r.userid, d.".$ADD.", SUM(r.counter) AS refs, d.last_online\r
-FROM "._MYSQL_PREFIX."_refsystem AS r\r
-LEFT JOIN "._MYSQL_PREFIX."_user_data AS d\r
-ON r.userid=d.userid\r
-WHERE r.counter > 0 AND d.status='CONFIRMED'\r
-GROUP BY r.userid\r
-ORDER BY refs DESC, d.last_online DESC\r
-LIMIT %s",\r
- array($CONFIG['top10_max']), __FILE__, __LINE__);\r
-\r
-$OUT = ""; $SW = 2; $cnt = 1;\r
-while(list($uid, $nick, $refs, $last) = SQL_FETCHROW($result))\r
-{\r
-       $nick2 = "---";\r
-       if (($nick != $uid) && (!empty($nick))) $nick2 = $nick;\r
-\r
-       // Prepare data for template\r
-       $content = array(\r
-               'sw'     => $SW,\r
-               'cnt'    => $cnt,\r
-               'uid'    => bigintval($uid),\r
-               'refs'   => $refs,\r
-               'nick'   => $nick2,\r
-               'points' => TRANSLATE_COMMA(GET_TOTAL_DATA($uid, "user_points", "points")),\r
-               'last'   => MAKE_DATETIME($last, "3")\r
-       );\r
-\r
-       // Load row template\r
-       $OUT .= LOAD_TEMPLATE("guest_top10_row_refs", true, $content);\r
-\r
-       // Switch colors and count one up\r
-       $SW = 3 - $SW; $cnt++;\r
-}\r
-if ($cnt < $CONFIG['top10_max'])\r
-{\r
-       // Add more "blank" rows\r
-       for ($i = $cnt; $i <= $CONFIG['top10_max']; $i++)\r
-       {\r
-               // Prepare data for template\r
-               $content = array(\r
-                       'sw'  => $SW,\r
-                       'idx' => $i\r
-               );\r
-\r
-               // Load row template\r
-               $OUT .= LOAD_TEMPLATE("guest_top10_empty5", true, $content);\r
-               $SW = 3 - $SW;\r
-       }\r
-}\r
-define('__TOP_REFERRAL_ROWS', $OUT);\r
-\r
-// Remember other values in constants\r
-define('__TOP10_MAX', $CONFIG['top10_max']);\r
-\r
-// Load final template\r
-LOAD_TEMPLATE("guest_top10");\r
-\r
-//\r
-?>\r
+<?php
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 11/24/2004 *
+ * ================                             Last change: 11/26/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-top10.php                                   *
+ * -------------------------------------------------------------------- *
+ * Short description : TOP logins / best earner etc.                    *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : TOP-Logins / Bestverdiener usw.                  *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * For more information visit: http://www.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 *
+ * the Free Software Foundation; either version 2 of the License, or    *
+ * (at your option) any later version.                                  *
+ *                                                                      *
+ * This program is distributed in the hope that it will be useful,      *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
+ * GNU General Public License for more details.                         *
+ *                                                                      *
+ * You should have received a copy of the GNU General Public License    *
+ * along with this program; if not, write to the Free Software          *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
+ * MA  02110-1301  USA                                                  *
+ ************************************************************************/
+
+// Some security stuff...
+if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
+{
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       require($INC);
+}
+ elseif ((!EXT_IS_ACTIVE("top10")) && (!IS_ADMIN()))
+{
+       ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "top10");
+       return;
+}
+
+// Add description as navigation point
+ADD_DESCR("guest", basename(__FILE__));
+
+//// TOP logins
+$ADD = "userid";
+if (EXT_IS_ACTIVE("nickname")) $ADD = "nickname";
+$result = SQL_QUERY_ESC("SELECT userid, ".$ADD.", total_logins, last_online
+FROM "._MYSQL_PREFIX."_user_data
+WHERE total_logins>0 AND status='CONFIRMED' ORDER BY total_logins DESC LIMIT %s",
+ array($CONFIG['top10_max']), __FILE__, __LINE__);
+
+$OUT = ""; $SW = 2; $cnt = 1;
+while(list($uid, $nick, $logins, $last) = SQL_FETCHROW($result))
+{
+       $nick2 = "---";
+       if (($nick != $uid) && (!empty($nick))) $nick2 = $nick;
+
+       // Prepare data for template
+       $content = array(
+               'sw'     => $SW,
+               'cnt'    => $cnt,
+               'uid'    => $uid,
+               'nick'   => $nick2,
+               'logins' => $logins,
+               'points' => TRANSLATE_COMMA(GET_TOTAL_DATA($uid, "user_points", "points")),
+               'last'   => MAKE_DATETIME($last, "3"),
+       );
+
+       // Load row template
+       $OUT .= LOAD_TEMPLATE("guest_top10_row_login", true, $content);
+
+       // Switch colors and count one up
+       $SW = 3 - $SW; $cnt++;
+}
+if ($cnt < $CONFIG['top10_max'])
+{
+       // Add more "blank" rows
+       for ($i = $cnt; $i <= $CONFIG['top10_max']; $i++)
+       {
+               // Prepare data for template
+               $content = array(
+                       'sw'  => $SW,
+                       'idx' => $i
+               );
+
+               // Load row template
+               $OUT .= LOAD_TEMPLATE("guest_top10_empty5", true, $content);
+               $SW = 3 - $SW;
+       }
+}
+define('__TOP_LOGINS_ROWS', $OUT);
+
+//// TOP earners
+$result = SQL_QUERY_ESC("SELECT DISTINCT p.userid, d.".$ADD.", (SUM(p.points) - d.used_points) AS tpoints, d.last_online
+FROM "._MYSQL_PREFIX."_user_points AS p
+LEFT JOIN "._MYSQL_PREFIX."_user_data AS d
+ON p.userid=d.userid
+WHERE p.points > 0 AND d.status='CONFIRMED'
+GROUP BY p.userid
+ORDER BY tpoints DESC, d.last_online DESC
+LIMIT %s",
+ array($CONFIG['top10_max']), __FILE__, __LINE__);
+
+$OUT = ""; $SW = 2; $cnt = 1;
+while(list($uid, $nick, $points, $last) = SQL_FETCHROW($result))
+{
+       $nick2 = "---";
+       if (($nick != $uid) && (!empty($nick))) $nick2 = $nick;
+
+       // Prepare data for template
+       $content = array(
+               'sw'     => $SW,
+               'cnt'    => $cnt,
+               'uid'    => bigintval($uid),
+               'nick'   => $nick2,
+               'points' => TRANSLATE_COMMA($points),
+               'last'   => MAKE_DATETIME($last, "3")
+       );
+
+       // Load row template
+       $OUT .= LOAD_TEMPLATE("guest_top10_row_earner", true, $content);
+
+       // Switch colors and count one up
+       $SW = 3 - $SW; $cnt++;
+}
+if ($cnt < $CONFIG['top10_max'])
+{
+       // Add more "blank" rows
+       for ($i = $cnt; $i <= $CONFIG['top10_max']; $i++)
+       {
+               // Prepare data for template
+               $content = array(
+                       'sw'  => $SW,
+                       'idx' => $i
+               );
+
+               // Load row template
+               $OUT .= LOAD_TEMPLATE("guest_top10_empty4", true, $content);
+               $SW = 3 - $SW;
+       }
+}
+define('__TOP_POINTS_ROWS', $OUT);
+
+//// TOP referral "hunter"
+$result = SQL_QUERY_ESC("SELECT DISTINCT r.userid, d.".$ADD.", SUM(r.counter) AS refs, d.last_online
+FROM "._MYSQL_PREFIX."_refsystem AS r
+LEFT JOIN "._MYSQL_PREFIX."_user_data AS d
+ON r.userid=d.userid
+WHERE r.counter > 0 AND d.status='CONFIRMED'
+GROUP BY r.userid
+ORDER BY refs DESC, d.last_online DESC
+LIMIT %s",
+ array($CONFIG['top10_max']), __FILE__, __LINE__);
+
+$OUT = ""; $SW = 2; $cnt = 1;
+while(list($uid, $nick, $refs, $last) = SQL_FETCHROW($result))
+{
+       $nick2 = "---";
+       if (($nick != $uid) && (!empty($nick))) $nick2 = $nick;
+
+       // Prepare data for template
+       $content = array(
+               'sw'     => $SW,
+               'cnt'    => $cnt,
+               'uid'    => bigintval($uid),
+               'refs'   => $refs,
+               'nick'   => $nick2,
+               'points' => TRANSLATE_COMMA(GET_TOTAL_DATA($uid, "user_points", "points")),
+               'last'   => MAKE_DATETIME($last, "3")
+       );
+
+       // Load row template
+       $OUT .= LOAD_TEMPLATE("guest_top10_row_refs", true, $content);
+
+       // Switch colors and count one up
+       $SW = 3 - $SW; $cnt++;
+}
+if ($cnt < $CONFIG['top10_max'])
+{
+       // Add more "blank" rows
+       for ($i = $cnt; $i <= $CONFIG['top10_max']; $i++)
+       {
+               // Prepare data for template
+               $content = array(
+                       'sw'  => $SW,
+                       'idx' => $i
+               );
+
+               // Load row template
+               $OUT .= LOAD_TEMPLATE("guest_top10_empty5", true, $content);
+               $SW = 3 - $SW;
+       }
+}
+define('__TOP_REFERRAL_ROWS', $OUT);
+
+// Remember other values in constants
+define('__TOP10_MAX', $CONFIG['top10_max']);
+
+// Load final template
+LOAD_TEMPLATE("guest_top10");
+
+//
+?>