Mediadata extension now creates the guest menu link, extension 'active' fixed
[mailer.git] / inc / modules / guest / action-online.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    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  *                                                                      *
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')) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 } elseif ((!EXT_IS_ACTIVE("online")) && (!IS_ADMIN())) {
39         // Just skip this extension
40         return;
41 } elseif (defined('GUESTS_ONLINE_CNT')) {
42         // Skip it if already executed
43         return;
44 }
45
46 $result_guests  = SQL_QUERY("SELECT id FROM "._MYSQL_PREFIX."_online WHERE is_admin='N' AND is_member='N'", __FILE__, __LINE__);
47 $result_members = SQL_QUERY("SELECT id FROM "._MYSQL_PREFIX."_online WHERE is_admin='N' AND is_member='Y'", __FILE__, __LINE__);
48 $result_admins  = SQL_QUERY("SELECT id FROM "._MYSQL_PREFIX."_online WHERE is_admin='Y'", __FILE__, __LINE__);
49
50 // Total visitors online
51 $total      = SQL_NUMROWS($result_guests) + SQL_NUMROWS($result_members) + SQL_NUMROWS($result_admins);
52 if (getConfig('mad_count') < $total) {
53         // Update counter
54         UPDATE_CONFIG(array("mad_timestamp", "mad_count"), array(time(), $total));
55         $_CONFIG['mad_count'] = $total;
56         $_CONFIG['last_mad']  = time();
57 } // END - if
58
59 // Put all values in constants for the template
60 define('GUESTS_ONLINE_CNT' , SQL_NUMROWS($result_guests));
61 define('MEMBERS_ONLINE_CNT', SQL_NUMROWS($result_members));
62 define('ADMINS_ONLINE_CNT' , SQL_NUMROWS($result_admins));
63
64 // Output table
65 LOAD_TEMPLATE("online_now");
66
67 // Add more links in this block
68 RUN_FILTER('online_extra_links');
69
70 //
71 ?>