2 /************************************************************************
3 * MXChange v0.2.1 Start: 02/02/2004 *
4 * ================ Last change: 11/26/2004 *
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 * -------------------------------------------------------------------- *
14 * -------------------------------------------------------------------- *
15 * Copyright (c) 2003 - 2008 by Roland Haeder *
16 * For more information visit: http://www.mxchange.org *
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. *
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. *
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, *
32 ************************************************************************/
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38 } elseif ((!EXT_IS_ACTIVE("online")) && (!IS_ADMIN())) {
39 // Just skip this extension
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__);
47 // Total visitors online
48 $total = SQL_NUMROWS($result_guests) + SQL_NUMROWS($result_members) + SQL_NUMROWS($result_admins);
49 if (getConfig('mad_count') < $total) {
51 UPDATE_CONFIG(array("mad_timestamp", "mad_count"), array(time(), $total));
52 $_CONFIG['mad_count'] = $total;
53 $_CONFIG['last_mad'] = time();
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));
62 LOAD_TEMPLATE("online_now");
64 if (EXT_IS_ACTIVE("active")) {
67 'menu' => "<A class=\"menu_blur\" href=\"".URL."/modules.php?module=index&what=active\">".getConfig('menu_blur_spacer').GUEST_ACTIVE_LINK."</A>",
71 // Add link to "we were active today" page
72 LOAD_TEMPLATE("guest_menu_bottom", false, $content);