Extension 'yoomedia' now alpha status, some rewrites
[mailer.git] / inc / modules / admin / what-user_online.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 02/02/2004 *
4  * ================                             Last change: 07/13/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : action-online.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : Who is where? (DO NOT add sub menus!)            *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Wer ist wo? (KEINE Untermenues anhaengen!)       *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Add description as navigation point
41 ADD_DESCR("admin", __FILE__);
42
43 // Count guests, members and admins
44 $result_guests  = SQL_QUERY("SELECT id FROM "._MYSQL_PREFIX."_online WHERE is_admin='N' AND is_member='N'", __FILE__, __LINE__);
45 $result_members = SQL_QUERY("SELECT id FROM "._MYSQL_PREFIX."_online WHERE is_admin='N' AND is_member='Y'", __FILE__, __LINE__);
46 $result_admins  = SQL_QUERY("SELECT id FROM "._MYSQL_PREFIX."_online WHERE is_admin='Y'", __FILE__, __LINE__);
47
48 OUTPUT_HTML("<TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" width=\"170\" class=\"admin_table dashed\">
49 <TR><TD colspan=\"5\" height=\"7\" class=\"seperator admin_title\">&nbsp;</TD></TR>
50 <TR>
51   <TD colspan=\"3\" class=\"admin_title\" align=\"center\">
52     <STRONG>".USER_NOW_ONLINE."</STRONG>
53   </TD>
54 </TR>
55 <TR><TD colspan=\"5\" height=\"7\" class=\"seperator admin_title\">&nbsp;</TD></TR>
56 <TR>
57   <TD width=\"85%\" class=\"top2 bottom2\" align=\"right\"><FONT class=\"medium\">".GUESTS_ONLINE.":</FONT></TD>
58   <TD width=\"5%\" class=\"top2 bottom2\">&nbsp;</TD>
59   <TD width=\"10%\" class=\"top2 bottom2\"><B>".SQL_NUMROWS($result_guests)."</B></TD>
60 </TR>
61 <TR>
62   <TD width=\"85%\" class=\"bottom2\" align=\"right\"><FONT class=\"medium\">".MEMBERS_ONLINE.":</FONT></TD>
63   <TD width=\"5%\" class=\"bottom2\">&nbsp;</TD>
64   <TD width=\"10%\" class=\"bottom2\"><B>".SQL_NUMROWS($result_members)."</B></TD>
65 </TR>
66 <TR>
67   <TD width=\"85%\" align=\"right\"><FONT class=\"medium\">".ADMINS_ONLINE.":</FONT></TD>
68   <TD width=\"5%\">&nbsp;</TD>
69   <TD width=\"10%\"><B>".SQL_NUMROWS($result_admins)."</B></TD>
70 </TR>
71 </TABLE><br />");
72
73 $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__);
74 if (SQL_NUMROWS($result) > 0)
75 {
76         // Load header template
77         LOAD_TEMPLATE("admin_online_header");
78
79         // List all online users
80         $SW = 2;
81         while (list($id, $ip, $userid, $refid, $module, $action, $what, $mem, $admin, $time) = SQL_FETCHROW($result))
82         {
83                 if ($action == "") $action = "---";
84                 if ($what   == "")   $what = "---";
85
86                 if ($admin == "Y")
87                 {
88                         // Is an administrator
89                         $userid = _IS_ADMIN;
90                 }
91                 elseif (($mem == "N") && ($admin == "N"))
92                 {
93                         // Is a guest
94                         $userid = _IS_GUEST;
95                 }
96                 OUTPUT_HTML("<TR>
97   <TD align=\"center\" width=\"5%\" class=\"switch_sw".$SW." bottom right\">".$id."</TD>
98   <TD align=\"center\" width=\"15%\" class=\"switch_sw".$SW." bottom right\">");
99                 if ($userid > 0)
100                 {
101                         OUTPUT_HTML("<A href=\"".URL."/modules.php?module=admin&amp;what=list_user&amp;u_id=".$userid."\">".$userid."</A>");
102                 }
103                 else
104                 {
105                         OUTPUT_HTML($userid);
106                 }
107                 if ($refid > 0)
108                 {
109                         $refid = "<A href=\"".URL."/modules.php?module=admin&amp;what=list_user&amp;u_id=".$refid."\">".$refid."</A>";
110                 }
111                 OUTPUT_HTML("</TD>
112   <TD align=\"center\" width=\"10%\" class=\"switch_sw".$SW." bottom right\">".$ip."</TD>
113   <TD align=\"center\" width=\"5%\" class=\"switch_sw".$SW." bottom right\">".$refid."</TD>
114   <TD align=\"center\" width=\"10%\" class=\"switch_sw".$SW." bottom right\">".$module."</TD>
115   <TD align=\"center\" width=\"10%\" class=\"switch_sw".$SW." bottom right\">".$action."</TD>
116   <TD align=\"center\" width=\"5%\" class=\"switch_sw".$SW." bottom right\">".$what."</TD>
117   <TD align=\"center\" width=\"10%\" class=\"switch_sw".$SW." bottom\">".MAKE_DATETIME($time, "2")."</TD>
118 </TR>");
119                 $SW = 3 - $SW;
120         }
121         OUTPUT_HTML("<TR>
122   <TD colspan=\"8\" align=\"center\" class=\"admin_footer\">
123     ".ONLINE_TIMEOUT_IS_1.CREATE_FANCY_TIME($_CONFIG['online_timeout']).ONLINE_TIMEOUT_IS_2."
124   </TD>
125 </TR>
126 </TABLE>");
127 }
128 //
129 ?>