X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fguest%2Faction-online.php;h=a01eb37653b35ae04bbbdca2bb6e92ca9f06d3cd;hb=70092aaf314be7367d955757e4bcd2407ffd910e;hp=55001d10d7a9e5d4d1c67b74cd8dad44c44c23bb;hpb=e6785b4a4845d7a885b0e9c6dac517c6867940e1;p=mailer.git diff --git a/inc/modules/guest/action-online.php b/inc/modules/guest/action-online.php index 55001d10d7..a01eb37653 100644 --- a/inc/modules/guest/action-online.php +++ b/inc/modules/guest/action-online.php @@ -17,7 +17,7 @@ * 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 * @@ -38,34 +38,36 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; - require($INC); -} elseif ((!EXT_IS_ACTIVE('online')) && (!IS_ADMIN())) { + die(); +} elseif ((!isExtensionActive('online')) && (!isAdmin())) { // Just skip this extension return; +} elseif (!isBlockModeEnabled()) { + // Block mode detected + return; } // Total visitors online -$total = GET_TOTAL_DATA("", 'online', "id", 'userid', true); +$total = countSumTotalData('', 'online', 'id', 'userid', true); if (getConfig('mad_count') < $total) { // Update counter - UPDATE_CONFIG(array("mad_timestamp", "mad_count"), array(time(), $total)); + updateConfiguration(array('mad_timestamp', 'mad_count'), array(time(), $total)); } // END - if // Prepare content $content = array( - 'guests' => TRANSLATE_COMMA(GET_TOTAL_DATA("N", 'online', "id", "is_admin", true, " AND is_member='N'")), - 'members' => TRANSLATE_COMMA(GET_TOTAL_DATA("N", 'online', "id", "is_admin", true, " AND is_member='Y'")), - 'admins' => TRANSLATE_COMMA(GET_TOTAL_DATA("Y", 'online', "id", "is_admin", true)), - 'total' => TRANSLATE_COMMA($total) + '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", false, $content); +$GLOBALS['rows'] .= loadTemplate('online_now', true, $content); // Add more links in this block runFilterChain('online_extra_links'); -// +// [EOF] ?>