a030f9eff216dcbdbbc3eaad33caab411a7056b7
[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 (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
36 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 }
40  elseif (!EXT_IS_ACTIVE("online"))
41 {
42         // Just skip this extension
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 ($_CONFIG['mad_counter'] < $total)
53 {
54         // Update counter
55         $_CONFIG['mad_counter'] = $total;
56         $_CONFIG['last_mad']    = time();
57         $result_mad = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_config SET mad_timestamp=%s, mad_count='%s' WHERE config=0 LIMIT 1",
58          array($_CONFIG['last_mad'], $_CONFIG['mad_counter']), __FILE__, __LINE__);
59
60         // Destroy cache
61 }
62
63 // Put all values in constants for the template
64 define('GUESTS_ONLINE_CNT' , SQL_NUMROWS($result_guests));
65 define('MEMBERS_ONLINE_CNT', SQL_NUMROWS($result_members));
66 define('ADMINS_ONLINE_CNT' , SQL_NUMROWS($result_admins));
67
68 // Output table
69 LOAD_TEMPLATE("online_now");
70
71 if (EXT_IS_ACTIVE("active"))
72 {
73         // Add link to "we were active today" page
74         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>");
75 }
76
77 //
78 ?>