X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fguest%2Faction-online.php;h=a01eb37653b35ae04bbbdca2bb6e92ca9f06d3cd;hb=70092aaf314be7367d955757e4bcd2407ffd910e;hp=e8df9e777748f31878233bc4d8ef0e5e4eda2e5f;hpb=7ea017edab302f56ae65ccc9b82c78ad668c65db;p=mailer.git diff --git a/inc/modules/guest/action-online.php b/inc/modules/guest/action-online.php index e8df9e7777..a01eb37653 100644 --- a/inc/modules/guest/action-online.php +++ b/inc/modules/guest/action-online.php @@ -10,9 +10,14 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Wer ist wo? (KEINE Untermenues anhaengen!) * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * - * Copyright (c) 2003 - 2008 by Roland Haeder * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -32,47 +37,37 @@ ************************************************************************/ // Some security stuff... -if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) -{ - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; - require($INC); -} - elseif (!EXT_IS_ACTIVE("online")) -{ +if (!defined('__SECURITY')) { + die(); +} elseif ((!isExtensionActive('online')) && (!isAdmin())) { // Just skip this extension return; +} elseif (!isBlockModeEnabled()) { + // Block mode detected + return; } -$result_guests = SQL_QUERY("SELECT id FROM "._MYSQL_PREFIX."_online WHERE is_admin='N' AND is_member='N'", __FILE__, __LINE__); -$result_members = SQL_QUERY("SELECT id FROM "._MYSQL_PREFIX."_online WHERE is_admin='N' AND is_member='Y'", __FILE__, __LINE__); -$result_admins = SQL_QUERY("SELECT id FROM "._MYSQL_PREFIX."_online WHERE is_admin='Y'", __FILE__, __LINE__); - // Total visitors online -$total = SQL_NUMROWS($result_guests) + SQL_NUMROWS($result_members) + SQL_NUMROWS($result_admins); -if ($_CONFIG['mad_counter'] < $total) -{ - // Update counter - $_CONFIG['mad_counter'] = $total; - $_CONFIG['last_mad'] = time(); - $result_mad = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_config SET mad_timestamp=%d, mad_count='%s' WHERE config=0 LIMIT 1", - array($_CONFIG['last_mad'], $_CONFIG['mad_counter']), __FILE__, __LINE__); +$total = countSumTotalData('', 'online', 'id', 'userid', true); - // Destroy cache -} +if (getConfig('mad_count') < $total) { + // Update counter + updateConfiguration(array('mad_timestamp', 'mad_count'), array(time(), $total)); +} // END - if -// Put all values in constants for the template -define('GUESTS_ONLINE_CNT' , SQL_NUMROWS($result_guests)); -define('MEMBERS_ONLINE_CNT', SQL_NUMROWS($result_members)); -define('ADMINS_ONLINE_CNT' , SQL_NUMROWS($result_admins)); +// Prepare content +$content = array( + 'guests' => translateComma(countSumTotalData('N', 'online', 'id', 'is_admin', true, " AND `is_member`='N'")), + 'members' => translateComma(countSumTotalData('N', 'online', 'id', 'is_admin', true, " AND `is_member`='Y'")), + 'admins' => translateComma(countSumTotalData('Y', 'online', 'id', 'is_admin', true)), + 'total' => translateComma($total) +); // Output table -LOAD_TEMPLATE("online_now"); +$GLOBALS['rows'] .= loadTemplate('online_now', true, $content); -if (EXT_IS_ACTIVE("active")) -{ - // Add link to "we were active today" page - LOAD_TEMPLATE("guest_menu_bottom", false, "".$_CONFIG['menu_blur_spacer'].GUEST_ACTIVE_LINK.""); -} +// Add more links in this block +runFilterChain('online_extra_links'); -// +// [EOF] ?>