A lot while() conditions rewritten to SQL_FETCHARRAY(), see bug #107, @TODO tags...
[mailer.git] / inc / modules / admin / what-usr_online.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 01/14/2005 *
4  * ================                             Last change: 01/14/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-usr_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 // Online stats are only working if extension ext-online is installed
44 if (EXT_IS_ACTIVE("online")) {
45         // Count guests, members and admins
46         // @TODO Rewrite these constants
47         // @TODO Add a filter for sponsor
48         define('_GUESTS_ONLINE' , GET_TOTAL_DATA("N", "online", "id", "is_admin", true, " AND is_member='N'"));
49         define('_ADMINS_ONLINE' , GET_TOTAL_DATA("N", "online", "id", "is_admin", true, " AND is_member='Y'"));
50         define('_MEMBERS_ONLINE', GET_TOTAL_DATA("N", "online", "id", "is_admin", true));
51
52         // Load template
53         LOAD_TEMPLATE("admin_mini_online");
54
55         // Check for online users
56         $result = SQL_QUERY("SELECT id, ip, userid, refid, module, action, what, is_member, is_admin, timestamp FROM `{!_MYSQL_PREFIX!}_online` ORDER by timestamp DESC",
57                 __FILE__, __LINE__);
58         if (SQL_NUMROWS($result) > 0) {
59                 // Load header template
60                 LOAD_TEMPLATE("admin_online_header");
61
62                 // List all online users
63                 $SW = 2;
64                 while ($content = SQL_FETCHARRAY($result)) {
65                         // Fix empty action/what
66                         if (empty($content['action'])) $content['action'] = "---";
67                         if (empty($content['what']))   $content['what']   = "---";
68
69                         if ($content['is_admin'] == "Y") {
70                                 // Is an administrator
71                                 $content['userid'] = getMessage('_IS_ADMIN');
72                         } elseif (($content['is_member'] == "N") && ($content['is_admin'] == "N")) {
73                                 // Is a guest
74                                 $content['userid'] = getMessage('_IS_GUEST');
75                         } elseif ($content['userid'] > 0) {
76                                 // Add profile link to userid
77                                 $content['userid'] = ADMIN_USER_PROFILE_LINK($content['userid']);
78                         } // END - if
79
80                         // Is the refid set?
81                         if ($content['refid'] > 0) {
82                                 // Add profile link to referer id
83                                 $content['refid'] = ADMIN_USER_PROFILE_LINK($content['refid']);
84                         } // END - if
85
86                         OUTPUT_HTML("<tr>
87   <td align=\"center\" width=\"5%\" class=\"switch_sw".$SW." bottom right\">".$content['id']."</td>
88   <td align=\"center\" width=\"15%\" class=\"switch_sw".$SW." bottom right\">".$content['userid']."</td>
89   <td align=\"center\" width=\"10%\" class=\"switch_sw".$SW." bottom right\">".$content['ip']."</td>
90   <td align=\"center\" width=\"5%\" class=\"switch_sw".$SW." bottom right\">".$content['refid']."</td>
91   <td align=\"center\" width=\"10%\" class=\"switch_sw".$SW." bottom right\">".$content['module']."</td>
92   <td align=\"center\" width=\"10%\" class=\"switch_sw".$SW." bottom right\">".$content['action']."</td>
93   <td align=\"center\" width=\"5%\" class=\"switch_sw".$SW." bottom right\">".$content['what']."</td>
94   <td align=\"center\" width=\"10%\" class=\"switch_sw".$SW." bottom\">".MAKE_DATETIME($content['timestamp'], "2")."</td>
95 </tr>");
96                         $SW = 3 - $SW;
97                 } // END - while
98
99                 // Free memory
100                 SQL_FREERESULT($result);
101
102                 // @TODO Rewrite this constant
103                 define('__FANCY_ONLINE_TIMEOUT', CREATE_FANCY_TIME(getConfig('online_timeout')));
104
105                 // Load footer template
106                 LOAD_TEMPLATE("admin_online_footer");
107         } // END - if
108 } else {
109         // Online statistics deactivated!
110         LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ONLINE_STATISTICS_DEACTIVATED'));
111 }
112
113 //
114 ?>