X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-usr_online.php;h=159a43e123a82bfec0ba1a63983853862317731f;hb=5ab0d021f3e96722af5d96d2b9036430200c06cb;hp=17fbc97f49c1b976a4f9f61076a5cfef583b611a;hpb=4001187f22197f55e5a1f211fc8defcc180f7c32;p=mailer.git diff --git a/inc/modules/admin/what-usr_online.php b/inc/modules/admin/what-usr_online.php index 17fbc97f49..159a43e123 100644 --- a/inc/modules/admin/what-usr_online.php +++ b/inc/modules/admin/what-usr_online.php @@ -1,7 +1,7 @@ 0) { - // Load header template - LOAD_TEMPLATE("admin_online_header"); - + if (!SQL_HASZERONUMS($result)) { // List all online users - $SW = 2; - while ($content = SQL_FETCHARRAY($result)) { - // Fix empty action/what - if (empty($content['action'])) $content['action'] = "---"; - if (empty($content['what'])) $content['what'] = "---"; - - if ($content['is_admin'] == "Y") { + $OUT = ''; + while ($row = SQL_FETCHARRAY($result)) { + if ($row['is_admin'] == 'Y') { // Is an administrator - $content['userid'] = getMessage('_IS_ADMIN'); - } elseif (($content['is_member'] == "N") && ($content['is_admin'] == "N")) { + $row['userid'] = '{--_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'] = '{--_IS_GUEST--}'; + } elseif (isValidId($row['userid'])) { // Add profile link to userid - $content['userid'] = ADMIN_USER_PROFILE_LINK($content['userid']); - } // END - if + $row['userid'] = generateUserProfileLink($row['userid']); + } - // Is the refid set? - if ($content['refid'] > 0) { - // Add profile link to referer id - $content['refid'] = ADMIN_USER_PROFILE_LINK($content['refid']); - } // END - if + // Add more content + $row['timestamp'] = generateDateTime($row['timestamp'], 2); - OUTPUT_HTML(" - ".$content['id']." - ".$content['userid']." - ".$content['ip']." - ".$content['refid']." - ".$content['module']." - ".$content['action']." - ".$content['what']." - ".MAKE_DATETIME($content['timestamp'], "2")." -"); - $SW = 3 - $SW; + // Load row template and switch color + $OUT .= loadTemplate('admin_list_online_row', TRUE, $row); } // 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; // 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')); + displayMessage('{--ONLINE_STATISTICS_DEACTIVATED--}'); } -// +// [EOF] ?>