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