X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmodules%2Fadmin%2Fwhat-usr_online.php;h=a19cb85f150682a19a9c490b56b40eebd2464f46;hb=f2aeaab0cd313b2eeb151642455ed558f6b186dc;hp=b73b91080718a5a165f69218fc074bdb6ca57438;hpb=7b0f17cd637e388049d2167811e4332cec1e979b;p=mailer.git diff --git a/inc/modules/admin/what-usr_online.php b/inc/modules/admin/what-usr_online.php index b73b910807..a19cb85f15 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'); - // 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'] = '{--_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 (isValidUserId($row['userid'])) { // Add profile link to userid - $content['userid'] = generateUserProfileLink($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'] = generateUserProfileLink($content['refid']); - } // END - if + // Add more content + $row['sw'] = $SW; + $row['timestamp'] = generateDateTime($row['timestamp'], 2); - OUTPUT_HTML(" - ".$content['id']." - ".$content['userid']." - ".$content['ip']." - ".$content['refid']." - ".$content['module']." - ".$content['action']." - ".$content['what']." - ".generateDateTime($content['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', createFancyTime(getConfig('online_timeout'))); + // Remember rows and fancy time in array + $content['rows'] = $OUT; + $content['online_timeout'] = '{--ONLINE_TIMEOUT_IS--}'; // 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, '{--ONLINE_STATISTICS_DEACTIVATED--}'); } -// +// [EOF] ?>