X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-usr_online.php;h=322c34634a0e21440f902133414d498a00ece316;hb=1c3cf7c8bd60ea09a2b268e37a2cb2d0ee0cdeef;hp=f40c4aec44632bca0583f9c54343caa7fa5836ad;hpb=e01fcf1ca8ddeb72af76465df3ef72301a1cdae7;p=mailer.git diff --git a/inc/modules/admin/what-usr_online.php b/inc/modules/admin/what-usr_online.php index f40c4aec44..322c34634a 100644 --- a/inc/modules/admin/what-usr_online.php +++ b/inc/modules/admin/what-usr_online.php @@ -10,14 +10,14 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Wer ist wo? (KEINE Untermenues anhaengen!) * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * - * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. March 2009) $ * + * $Revision:: $ * + * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * - * $Author:: stelzi $ * + * $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 * @@ -37,83 +37,75 @@ ************************************************************************/ // Some security stuff... -if ((!defined('__SECURITY')) || (!IS_ADMIN())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; - require($INC); +if ((!defined('__SECURITY')) || (!isAdmin())) { + die(); } // Add description as navigation point -ADD_DESCR("admin", __FILE__); +addMenuDescription('admin', __FILE__); // Online stats are only working if extension ext-online is installed -if (EXT_IS_ACTIVE("online")) { +if (isExtensionActive('online')) { // Count guests, members and admins - // @TODO Rewrite these constants // @TODO Add a filter for sponsor - define('_GUESTS_ONLINE' , GET_TOTAL_DATA("N", "online", "id", "is_admin", true, " AND is_member='N'")); - define('_ADMINS_ONLINE' , GET_TOTAL_DATA("N", "online", "id", "is_admin", true, " AND is_member='Y'")); - define('_MEMBERS_ONLINE', GET_TOTAL_DATA("N", "online", "id", "is_admin", true)); + $content['guests_online'] = countSumTotalData('N', 'online', 'id', 'is_admin', true, " AND `is_member`='N'"); + $content['admins_online'] = countSumTotalData('N', 'online', 'id', 'is_admin', true, " AND `is_member`='Y'"); + $content['members_online'] = countSumTotalData('N', 'online', 'id', 'is_admin', true); // Load template - LOAD_TEMPLATE("admin_mini_online"); + loadTemplate('admin_mini_online', false, $content); // Check for online users - $result = SQL_QUERY("SELECT id, ip, userid, refid, module, action, what, is_member, is_admin, timestamp FROM `{!_MYSQL_PREFIX!}_online` ORDER by timestamp DESC", + $result = SQL_QUERY("SELECT `id`, `ip`, `userid`, `refid`, `module`, `action`, `what`, `is_member`, `is_admin`, `timestamp` FROM `{?_MYSQL_PREFIX?}_online` ORDER by `timestamp` DESC", __FILE__, __LINE__); if (SQL_NUMROWS($result) > 0) { - // Load header template - LOAD_TEMPLATE("admin_online_header"); - // List all online users - $SW = 2; - while ($content = SQL_FETCHARRAY($result)) { + $OUT = ''; $SW = 2; + while ($row = SQL_FETCHARRAY($result)) { // Fix empty action/what - if (empty($content['action'])) $content['action'] = "---"; - if (empty($content['what'])) $content['what'] = "---"; + if (empty($row['action'])) $row['action'] = '---'; + if (empty($row['what'])) $row['what'] = '---'; - if ($content['is_admin'] == "Y") { + if ($row['is_admin'] == 'Y') { // Is an administrator - $content['userid'] = getMessage('_IS_ADMIN'); - } elseif (($content['is_member'] == "N") && ($content['is_admin'] == "N")) { + $row['userid'] = getMessage('_IS_ADMIN'); + } elseif (($row['is_member'] != 'Y') && ($row['is_admin'] != 'Y')) { // Is a guest - $content['userid'] = getMessage('_IS_GUEST'); - } elseif ($content['userid'] > 0) { + $row['userid'] = getMessage('_IS_GUEST'); + } elseif ($row['userid'] > 0) { // Add profile link to userid - $content['userid'] = ADMIN_USER_PROFILE_LINK($content['userid']); + $row['userid'] = generateUserProfileLink($row['userid']); } // END - if // Is the refid set? - if ($content['refid'] > 0) { + if ($row['refid'] > 0) { // Add profile link to referer id - $content['refid'] = ADMIN_USER_PROFILE_LINK($content['refid']); + $row['refid'] = generateUserProfileLink($row['refid']); } // END - if - OUTPUT_HTML(" - ".$content['id']." - ".$content['userid']." - ".$content['ip']." - ".$content['refid']." - ".$content['module']." - ".$content['action']." - ".$content['what']." - ".MAKE_DATETIME($content['timestamp'], "2")." -"); + // Add more content + $row['sw'] = $SW; + $row['timestamp'] = generateDateTime($row['timestamp'], 2); + + // Load row template and switch color + $OUT .= loadTemplate('admin_list_online_row', true, $row); $SW = 3 - $SW; } // END - while // Free memory SQL_FREERESULT($result); - // @TODO Rewrite this constant - define('__FANCY_ONLINE_TIMEOUT', CREATE_FANCY_TIME(getConfig('online_timeout'))); + // Remember rows and fancy time in array + $content['rows'] = $OUT; + $content['online_timeout'] = sprintf(getMessage('ONLINE_TIMEOUT_IS'), createFancyTime(getConfig('online_timeout'))); // Load footer template - LOAD_TEMPLATE("admin_online_footer"); + loadTemplate('admin_list_online', false, $content); } // END - if } else { // Online statistics deactivated! - LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ONLINE_STATISTICS_DEACTIVATED')); + loadTemplate('admin_settings_saved', false, getMessage('ONLINE_STATISTICS_DEACTIVATED')); } -// +// [EOF] ?>