X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-usr_online.php;h=eb9e1dbb9364c81bbc73ba8fe3c2be2cd5b15e8d;hb=eb301334eb0960dd060cc0d59e6021260a41f835;hp=e5952f873a693de278fc8f52a45a9ab8ed87317c;hpb=d0ab0382dd73638f0bc13a1a3d6f117ec11a203e;p=mailer.git diff --git a/inc/modules/admin/what-usr_online.php b/inc/modules/admin/what-usr_online.php index e5952f873a..eb9e1dbb93 100644 --- a/inc/modules/admin/what-usr_online.php +++ b/inc/modules/admin/what-usr_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,97 +37,75 @@ ************************************************************************/ // Some security stuff... -if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!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", basename(__FILE__)); +addMenuDescription('admin', __FILE__); -if (EXT_IS_ACTIVE("online", true)) -{ +// Online stats are only working if extension ext-online is installed +if (isExtensionActive('online')) { // Count guests, members and admins - $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__); - - // Remember values for the template - define('_GUESTS_ONLINE' , SQL_NUMROWS($result_guests)); - define('_ADMINS_ONLINE' , SQL_NUMROWS($result_admins)); - define('_MEMBERS_ONLINE', SQL_NUMROWS($result_members)); - - // Free memory - SQL_FREERESULT($result_guests); - SQL_FREERESULT($result_admins); - SQL_FREERESULT($result_members); + // @TODO Add a filter for sponsor + $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'); // 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", __FILE__, __LINE__); - if (SQL_NUMROWS($result) > 0) - { - // Load header template - LOAD_TEMPLATE("admin_online_header"); - + $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) { // List all online users - $SW = 2; - while (list($id, $ip, $uid, $ref, $mod, $act, $wht, $mem, $admin, $time) = SQL_FETCHROW($result)) - { - if (empty($act)) $act = "---"; - if (empty($wht)) $wht = "---"; + $OUT = ''; $SW = 2; + while ($content = SQL_FETCHARRAY($result)) { + // Fix empty action/what + if (empty($content['action'])) $content['action'] = '---'; + if (empty($content['what'])) $content['what'] = '---'; - if ($admin == "Y") - { + if ($content['is_admin'] == 'Y') { // Is an administrator - $uid = _IS_ADMIN; - } - elseif (($mem == "N") && ($admin == "N")) - { + $content['userid'] = getMessage('_IS_ADMIN'); + } elseif (($content['is_member'] != 'Y') && ($content['is_admin'] != 'Y')) { // Is a guest - $uid = _IS_GUEST; - } - OUTPUT_HTML (" - ".$id." - "); - if ($uid > 0) - { - OUTPUT_HTML (ADMIN_USER_PROFILE_LINK($uid)); - } - else - { - OUTPUT_HTML ($uid); - } - if ($ref > 0) - { - $ref = ADMIN_USER_PROFILE_LINK($ref); - } - OUTPUT_HTML (" - ".$ip." - ".$ref." - ".$mod." - ".$act." - ".$wht." - ".MAKE_DATETIME($time, "2")." -"); + $content['userid'] = getMessage('_IS_GUEST'); + } elseif ($content['userid'] > 0) { + // Add profile link to userid + $content['userid'] = generateUserProfileLink($content['userid']); + } // END - if + + // Is the refid set? + if ($content['refid'] > 0) { + // Add profile link to referer id + $content['refid'] = generateUserProfileLink($content['refid']); + } // END - if + + // Add more content + $content['sw'] = $SW; + $content['timestamp'] = generateDateTime($content['timestamp'], '2'); + + // Load row template and switch color + $OUT .= loadTemplate('admin_list_online_row', true, $content); $SW = 3 - $SW; - } + } // END - while // Free memory SQL_FREERESULT($result); + // Remember rows and fancy time in array + $content['rows'] = $OUT; + $content['online_timeout'] = createFancyTime(getConfig('online_timeout')); + // Load footer template - define('__FANCY_ONLINE_TIMEOUT', CREATE_FANCY_TIME($CONFIG['online_timeout'])); - LOAD_TEMPLATE("admin_online_footer"); - } -} - else -{ + loadTemplate('admin_list_online', false, $content); + } // END - if +} else { // Online statistics deactivated! - LOAD_TEMPLATE("admin_settings_saved", false, ONLINE_STATISTICS_DEACTIVATED); + loadTemplate('admin_settings_saved', false, getMessage('ONLINE_STATISTICS_DEACTIVATED')); } -// + +// [EOF] ?>