Fixes and cleanups
[mailer.git] / inc / modules / admin / what-usr_online.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://mxchange.org                      *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
40         die();
41 } // END - if
42
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
45
46 // Online stats are only working if extension ext-online is installed
47 if (isExtensionActive('online')) {
48         // Count guests, members and admins
49         // @TODO Add a filter for sponsor
50         $content['guests_online']  = countSumTotalData('N', 'online', 'id', 'is_admin', true, " AND `is_member`='N'");
51         $content['admins_online']  = countSumTotalData('N', 'online', 'id', 'is_admin', true, " AND `is_member`='Y'");
52         $content['members_online'] = countSumTotalData('N', 'online', 'id', 'is_admin', true);
53
54         // Load template
55         loadTemplate('admin_mini_online', false, $content);
56
57         // Check for online users
58         $result = SQL_QUERY("SELECT `id`,`ip`,`userid`,`refid`,`module`,`action`,`what`,`is_member`,`is_admin`,`timestamp` FROM `{?_MYSQL_PREFIX?}_online` ORDER by `timestamp` DESC",
59                 __FILE__, __LINE__);
60         if (!SQL_HASZERONUMS($result)) {
61                 // List all online users
62                 $OUT = '';
63                 while ($row = SQL_FETCHARRAY($result)) {
64                         if ($row['is_admin'] == 'Y') {
65                                 // Is an administrator
66                                 $row['userid'] = '{--_IS_ADMIN--}';
67                         } elseif (($row['is_member'] != 'Y') && ($row['is_admin'] != 'Y')) {
68                                 // Is a guest
69                                 $row['userid'] = '{--_IS_GUEST--}';
70                         } elseif (isValidUserId($row['userid'])) {
71                                 // Add profile link to userid
72                                 $row['userid'] = generateUserProfileLink($row['userid']);
73                         }
74
75                         // Add more content
76                         $row['timestamp'] = generateDateTime($row['timestamp'], 2);
77
78                         // Load row template and switch color
79                         $OUT .= loadTemplate('admin_list_online_row', true, $row);
80                 } // END - while
81
82                 // Free memory
83                 SQL_FREERESULT($result);
84
85                 // Remember rows and fancy time in array
86                 $content['rows']           = $OUT;
87
88                 // Load footer template
89                 loadTemplate('admin_list_online', false, $content);
90         } // END - if
91 } else {
92         // Online statistics deactivated!
93         displayMessage('{--ONLINE_STATISTICS_DEACTIVATED--}');
94 }
95
96 // [EOF]
97 ?>