AAAAget('show_loggedin_users', 1)) :
$output[] = ''.JText::plural('MOD_STATUS_USERS', $online_num).'';
endif;
// Print the back-end logged in users.
if ($params->get('show_loggedin_users_admin', 1)) :
$output[] = ''.JText::plural('MOD_STATUS_BACKEND_USERS', $count).'';
endif;
// Print the inbox message.
if ($params->get('show_messages', 1)) :
$output[] = ''.
($hideLinks ? '' : '').
JText::plural('MOD_STATUS_MESSAGES', $unread).
($hideLinks ? '' : '').
'';
endif;
// Output the items.
foreach ($output as $item) :
echo $item;
endforeach;