Updated copyright year.
[mailer.git] / inc / modules / guest / action-online.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 02/02/2004 *
4  * ===================                          Last change: 11/26/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  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
14  * Copyright (c) 2009 - 2016 by Mailer Developer Team                   *
15  * For more information visit: http://mxchange.org                      *
16  *                                                                      *
17  * This program is free software; you can redistribute it and/or modify *
18  * it under the terms of the GNU General Public License as published by *
19  * the Free Software Foundation; either version 2 of the License, or    *
20  * (at your option) any later version.                                  *
21  *                                                                      *
22  * This program is distributed in the hope that it will be useful,      *
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
25  * GNU General Public License for more details.                         *
26  *                                                                      *
27  * You should have received a copy of the GNU General Public License    *
28  * along with this program; if not, write to the Free Software          *
29  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
30  * MA  02110-1301  USA                                                  *
31  ************************************************************************/
32
33 // Some security stuff...
34 if (!defined('__SECURITY')) {
35         exit();
36 } elseif ((!isExtensionActive('online')) && (!isAdmin())) {
37         // Just skip this extension
38         return;
39 } elseif (!isBlockModeEnabled()) {
40         // Block mode detected
41         return;
42 }
43
44 // Total visitors online
45 $total = countSumTotalData('', 'online', 'id', 'userid', TRUE);
46
47 if (getConfig('mad_count') < $total) {
48         // Update counter
49         updateConfiguration(array('mad_timestamp', 'mad_count'), array('UNIX_TIMESTAMP()', $total));
50 } // END - if
51
52 // Prepare content
53 $content = array(
54         'guests'  => countSumTotalData('N', 'online', 'id', 'is_admin', TRUE, " AND `is_member`='N'"),
55         'members' => countSumTotalData('N', 'online', 'id', 'is_admin', TRUE, " AND `is_member`='Y'"),
56         'admins'  => countSumTotalData('Y', 'online', 'id', 'is_admin', TRUE),
57         'total'   => $total
58 );
59
60 // Output table
61 $GLOBALS['rows'] .= loadTemplate('online_now', TRUE, $content);
62
63 // Add more links in this block
64 runFilterChain('online_extra_links');
65
66 // [EOF]
67 ?>