b8a82c357309015dcffaf32f4e606774e1aeedbc
[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")) {
39         // Just skip this extension
40         return;
41 }
42
43 $result_guests  = SQL_QUERY("SELECT id FROM "._MYSQL_PREFIX."_online WHERE is_admin='N' AND is_member='N'", __FILE__, __LINE__);
44 $result_members = SQL_QUERY("SELECT id FROM "._MYSQL_PREFIX."_online WHERE is_admin='N' AND is_member='Y'", __FILE__, __LINE__);
45 $result_admins  = SQL_QUERY("SELECT id FROM "._MYSQL_PREFIX."_online WHERE is_admin='Y'", __FILE__, __LINE__);
46
47 // Total visitors online
48 $total      = SQL_NUMROWS($result_guests) + SQL_NUMROWS($result_members) + SQL_NUMROWS($result_admins);
49 if ($_CONFIG['mad_count'] < $total) {
50         // Update counter
51         UPDATE_CONFIG(array("mad_timestamp", "mad_count"), array(time(), $total));
52         $_CONFIG['mad_count'] = $total;
53         $_CONFIG['last_mad']  = time();
54 }
55
56 // Put all values in constants for the template
57 define('GUESTS_ONLINE_CNT' , SQL_NUMROWS($result_guests));
58 define('MEMBERS_ONLINE_CNT', SQL_NUMROWS($result_members));
59 define('ADMINS_ONLINE_CNT' , SQL_NUMROWS($result_admins));
60
61 // Output table
62 LOAD_TEMPLATE("online_now");
63
64 if (EXT_IS_ACTIVE("active")) {
65         // Add link to "we were active today" page
66         LOAD_TEMPLATE("guest_menu_bottom", false, "<A class=\"menu_blur\" href=\"".URL."/modules.php?module=index&amp;what=active\">".$_CONFIG['menu_blur_spacer'].GUEST_ACTIVE_LINK."</A>");
67 }
68
69 //
70 ?>