| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Old Sites/moke/administrator/modules/mod_status/tmpl/ |
Upload File : |
<?php
/**
* @version $Id: default.php 21721 2011-07-01 08:48:47Z chdemko $
* @package Joomla.Administrator
* @subpackage mod_status
* @copyright Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// No direct access.
defined('_JEXEC') or die;
$hideLinks = JRequest::getBool('hidemainmenu');
$output = array();
// Print the logged in users.
if ($params->get('show_loggedin_users', 1)) :
$output[] = '<span class="loggedin-users">'.JText::plural('MOD_STATUS_USERS', $online_num).'</span>';
endif;
// Print the back-end logged in users.
if ($params->get('show_loggedin_users_admin', 1)) :
$output[] = '<span class="backloggedin-users">'.JText::plural('MOD_STATUS_BACKEND_USERS', $count).'</span>';
endif;
// Print the inbox message.
if ($params->get('show_messages', 1)) :
$output[] = '<span class="'.$inboxClass.'">'.
($hideLinks ? '' : '<a href="'.$inboxLink.'">').
JText::plural('MOD_STATUS_MESSAGES', $unread).
($hideLinks ? '' : '</a>').
'</span>';
endif;
// Reverse rendering order for rtl display.
if ($lang->isRTL()) :
$output = array_reverse($output);
endif;
// Output the items.
foreach ($output as $item) :
echo $item;
endforeach;