Updated copyright year.
[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 - 2016 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 = sqlQuery("SELECT
59         `id`,
60         `ip`,
61         `userid`,
62         `refid`,
63         `module`,
64         `action`,
65         `what`,
66         `is_member`,
67         `is_admin`,
68         `timestamp`
69 FROM
70         `{?_MYSQL_PREFIX?}_online`
71 ORDER BY
72         `timestamp` DESC", __FILE__, __LINE__);
73
74         if (!ifSqlHasZeroNumRows($result)) {
75                 // List all online users
76                 $OUT = '';
77                 while ($row = sqlFetchArray($result)) {
78                         if ($row['is_admin'] == 'Y') {
79                                 // Is an administrator
80                                 $row['userid'] = '{--_IS_ADMIN--}';
81                         } elseif (($row['is_member'] != 'Y') && ($row['is_admin'] != 'Y')) {
82                                 // Is a guest
83                                 $row['userid'] = '{--_IS_GUEST--}';
84                         } elseif (isValidId($row['userid'])) {
85                                 // Add profile link to userid
86                                 $row['userid'] = generateUserProfileLink($row['userid']);
87                         }
88
89                         // Add more content
90                         $row['timestamp'] = generateDateTime($row['timestamp'], 2);
91
92                         // Load row template and switch color
93                         $OUT .= loadTemplate('admin_list_online_row', TRUE, $row);
94                 } // END - while
95
96                 // Free memory
97                 sqlFreeResult($result);
98
99                 // Remember rows and fancy time in array
100                 $content['rows']           = $OUT;
101
102                 // Load footer template
103                 loadTemplate('admin_list_online', FALSE, $content);
104         } // END - if
105 } else {
106         // Online statistics deactivated!
107         displayMessage('{--ONLINE_STATISTICS_DEACTIVATED--}');
108 }
109
110 // [EOF]
111 ?>