]> git.mxchange.org Git - mailer.git/blobdiff - 0.2.1/inc/modules/admin/what-usr_online.php
win32 to unix line delimiters changed
[mailer.git] / 0.2.1 / inc / modules / admin / what-usr_online.php
index 0c7880675f0c6473cad2ae2d9da5dd7d166756f3..e5952f873a693de278fc8f52a45a9ab8ed87317c 100644 (file)
-<?php\r
-/************************************************************************\r
- * MXChange v0.2.1                                    Start: 01/14/2005 *\r
- * ================                             Last change: 01/14/2005 *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * File              : what-usr_online.php                              *\r
- * -------------------------------------------------------------------- *\r
- * Short description : Who is where? (DO NOT add sub menus!)            *\r
- * -------------------------------------------------------------------- *\r
- * Kurzbeschreibung  : Wer ist wo? (KEINE Untermenues anhaengen!)       *\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'])) || (!IS_ADMIN()))\r
-{\r
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";\r
-       require($INC);\r
-}\r
-\r
-// Add description as navigation point\r
-ADD_DESCR("admin", basename(__FILE__));\r
-\r
-if (EXT_IS_ACTIVE("online", true))\r
-{\r
-       // Count guests, members and admins\r
-       $result_guests  = SQL_QUERY("SELECT id FROM "._MYSQL_PREFIX."_online WHERE is_admin='N' AND is_member='N'", __FILE__, __LINE__);\r
-       $result_members = SQL_QUERY("SELECT id FROM "._MYSQL_PREFIX."_online WHERE is_admin='N' AND is_member='Y'", __FILE__, __LINE__);\r
-       $result_admins  = SQL_QUERY("SELECT id FROM "._MYSQL_PREFIX."_online WHERE is_admin='Y'", __FILE__, __LINE__);\r
-\r
-       // Remember values for the template\r
-       define('_GUESTS_ONLINE' , SQL_NUMROWS($result_guests));\r
-       define('_ADMINS_ONLINE' , SQL_NUMROWS($result_admins));\r
-       define('_MEMBERS_ONLINE', SQL_NUMROWS($result_members));\r
-\r
-       // Free memory\r
-       SQL_FREERESULT($result_guests);\r
-       SQL_FREERESULT($result_admins);\r
-       SQL_FREERESULT($result_members);\r
-\r
-       // Load template\r
-       LOAD_TEMPLATE("admin_mini_online");\r
-\r
-       // Check for online users\r
-       $result = SQL_QUERY("SELECT id, ip, userid, refid, module, action, what, is_member, is_admin, timestamp FROM "._MYSQL_PREFIX."_online ORDER by timestamp DESC", __FILE__, __LINE__);\r
-       if (SQL_NUMROWS($result) > 0)\r
-       {\r
-               // Load header template\r
-               LOAD_TEMPLATE("admin_online_header");\r
-\r
-               // List all online users\r
-               $SW = 2;\r
-               while (list($id, $ip, $uid, $ref, $mod, $act, $wht, $mem, $admin, $time) = SQL_FETCHROW($result))\r
-               {\r
-                       if (empty($act)) $act = "---";\r
-                       if (empty($wht))   $wht = "---";\r
-\r
-                       if ($admin == "Y")\r
-                       {\r
-                               // Is an administrator\r
-                               $uid = _IS_ADMIN;\r
-                       }\r
-                        elseif (($mem == "N") && ($admin == "N"))\r
-                       {\r
-                               // Is a guest\r
-                               $uid = _IS_GUEST;\r
-                       }\r
-                       OUTPUT_HTML ("<TR>\r
-  <TD align=\"center\" width=\"5%\" class=\"switch_sw".$SW." bottom right\">".$id."</TD>\r
-  <TD align=\"center\" width=\"15%\" class=\"switch_sw".$SW." bottom right\">");\r
-                       if ($uid > 0)\r
-                       {\r
-                               OUTPUT_HTML (ADMIN_USER_PROFILE_LINK($uid));\r
-                       }\r
-                        else\r
-                       {\r
-                               OUTPUT_HTML ($uid);\r
-                       }\r
-                       if ($ref > 0)\r
-                       {\r
-                               $ref = ADMIN_USER_PROFILE_LINK($ref);\r
-                       }\r
-                       OUTPUT_HTML ("</TD>\r
-  <TD align=\"center\" width=\"10%\" class=\"switch_sw".$SW." bottom right\">".$ip."</TD>\r
-  <TD align=\"center\" width=\"5%\" class=\"switch_sw".$SW." bottom right\">".$ref."</TD>\r
-  <TD align=\"center\" width=\"10%\" class=\"switch_sw".$SW." bottom right\">".$mod."</TD>\r
-  <TD align=\"center\" width=\"10%\" class=\"switch_sw".$SW." bottom right\">".$act."</TD>\r
-  <TD align=\"center\" width=\"5%\" class=\"switch_sw".$SW." bottom right\">".$wht."</TD>\r
-  <TD align=\"center\" width=\"10%\" class=\"switch_sw".$SW." bottom\">".MAKE_DATETIME($time, "2")."</TD>\r
-</TR>");\r
-                       $SW = 3 - $SW;\r
-               }\r
-\r
-               // Free memory\r
-               SQL_FREERESULT($result);\r
-\r
-               // Load footer template\r
-               define('__FANCY_ONLINE_TIMEOUT', CREATE_FANCY_TIME($CONFIG['online_timeout']));\r
-               LOAD_TEMPLATE("admin_online_footer");\r
-       }\r
-}\r
- else\r
-{\r
-       // Online statistics deactivated!\r
-       LOAD_TEMPLATE("admin_settings_saved", false, ONLINE_STATISTICS_DEACTIVATED);\r
-}\r
-//\r
-?>\r
+<?php
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 01/14/2005 *
+ * ================                             Last change: 01/14/2005 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-usr_online.php                              *
+ * -------------------------------------------------------------------- *
+ * Short description : Who is where? (DO NOT add sub menus!)            *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Wer ist wo? (KEINE Untermenues anhaengen!)       *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * 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'])) || (!IS_ADMIN()))
+{
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       require($INC);
+}
+
+// Add description as navigation point
+ADD_DESCR("admin", basename(__FILE__));
+
+if (EXT_IS_ACTIVE("online", true))
+{
+       // Count guests, members and admins
+       $result_guests  = SQL_QUERY("SELECT id FROM "._MYSQL_PREFIX."_online WHERE is_admin='N' AND is_member='N'", __FILE__, __LINE__);
+       $result_members = SQL_QUERY("SELECT id FROM "._MYSQL_PREFIX."_online WHERE is_admin='N' AND is_member='Y'", __FILE__, __LINE__);
+       $result_admins  = SQL_QUERY("SELECT id FROM "._MYSQL_PREFIX."_online WHERE is_admin='Y'", __FILE__, __LINE__);
+
+       // Remember values for the template
+       define('_GUESTS_ONLINE' , SQL_NUMROWS($result_guests));
+       define('_ADMINS_ONLINE' , SQL_NUMROWS($result_admins));
+       define('_MEMBERS_ONLINE', SQL_NUMROWS($result_members));
+
+       // Free memory
+       SQL_FREERESULT($result_guests);
+       SQL_FREERESULT($result_admins);
+       SQL_FREERESULT($result_members);
+
+       // Load template
+       LOAD_TEMPLATE("admin_mini_online");
+
+       // Check for online users
+       $result = SQL_QUERY("SELECT id, ip, userid, refid, module, action, what, is_member, is_admin, timestamp FROM "._MYSQL_PREFIX."_online ORDER by timestamp DESC", __FILE__, __LINE__);
+       if (SQL_NUMROWS($result) > 0)
+       {
+               // Load header template
+               LOAD_TEMPLATE("admin_online_header");
+
+               // List all online users
+               $SW = 2;
+               while (list($id, $ip, $uid, $ref, $mod, $act, $wht, $mem, $admin, $time) = SQL_FETCHROW($result))
+               {
+                       if (empty($act)) $act = "---";
+                       if (empty($wht))   $wht = "---";
+
+                       if ($admin == "Y")
+                       {
+                               // Is an administrator
+                               $uid = _IS_ADMIN;
+                       }
+                        elseif (($mem == "N") && ($admin == "N"))
+                       {
+                               // Is a guest
+                               $uid = _IS_GUEST;
+                       }
+                       OUTPUT_HTML ("<TR>
+  <TD align=\"center\" width=\"5%\" class=\"switch_sw".$SW." bottom right\">".$id."</TD>
+  <TD align=\"center\" width=\"15%\" class=\"switch_sw".$SW." bottom right\">");
+                       if ($uid > 0)
+                       {
+                               OUTPUT_HTML (ADMIN_USER_PROFILE_LINK($uid));
+                       }
+                        else
+                       {
+                               OUTPUT_HTML ($uid);
+                       }
+                       if ($ref > 0)
+                       {
+                               $ref = ADMIN_USER_PROFILE_LINK($ref);
+                       }
+                       OUTPUT_HTML ("</TD>
+  <TD align=\"center\" width=\"10%\" class=\"switch_sw".$SW." bottom right\">".$ip."</TD>
+  <TD align=\"center\" width=\"5%\" class=\"switch_sw".$SW." bottom right\">".$ref."</TD>
+  <TD align=\"center\" width=\"10%\" class=\"switch_sw".$SW." bottom right\">".$mod."</TD>
+  <TD align=\"center\" width=\"10%\" class=\"switch_sw".$SW." bottom right\">".$act."</TD>
+  <TD align=\"center\" width=\"5%\" class=\"switch_sw".$SW." bottom right\">".$wht."</TD>
+  <TD align=\"center\" width=\"10%\" class=\"switch_sw".$SW." bottom\">".MAKE_DATETIME($time, "2")."</TD>
+</TR>");
+                       $SW = 3 - $SW;
+               }
+
+               // Free memory
+               SQL_FREERESULT($result);
+
+               // Load footer template
+               define('__FANCY_ONLINE_TIMEOUT', CREATE_FANCY_TIME($CONFIG['online_timeout']));
+               LOAD_TEMPLATE("admin_online_footer");
+       }
+}
+ else
+{
+       // Online statistics deactivated!
+       LOAD_TEMPLATE("admin_settings_saved", false, ONLINE_STATISTICS_DEACTIVATED);
+}
+//
+?>