| 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_logged/tmpl/ |
Upload File : |
<?php
/**
* @version $Id: default.php 21400 2011-05-30 23:21:14Z dextercowley $
* @package Joomla.Administrator
* @subpackage mod_logged
* @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;
?>
<table class="adminlist">
<thead>
<tr>
<th>
<?php
if($params->get('name', 1)) {
echo JText::_('MOD_LOGGED_NAME');
} else {
echo JText::_('JGLOBAL_USERNAME');
}; ?>
</th>
<th>
<strong><?php echo JText::_('JCLIENT'); ?></strong>
</th>
<th>
<strong><?php echo JText::_('JGRID_HEADING_ID');?></strong>
</th>
<th>
<strong><?php echo JText::_('MOD_LOGGED_LAST_ACTIVITY');?></strong>
</th>
<th>
<strong><?php echo JText::_('MOD_LOGGED_LOGOUT');?></strong>
</th>
</tr>
</thead>
<tbody>
<?php foreach ($users as $user) : ?>
<tr>
<th scope="row">
<?php if (isset($user->editLink)) :?>
<a href="<?php echo $user->editLink; ?>">
<?php echo $user->name;?></a>
<?php else :
echo $user->name;
endif; ?>
</th>
<td class="center">
<?php
if($user->client_id) {
echo JText::_('JADMINISTRATOR');
} else {
echo JText::_('JSITE');
}?>
</td>
<td class="center">
<?php echo $user->id; ?>
</td>
<td class="center">
<?php echo JHtml::_('date', $user->time, 'Y-m-d H:i:s'); ?>
</td>
<td class="center">
<?php if ($user->client_id == 0) :?>
<a href="<?php echo $user->logoutLink;?>">
<?php echo JHtml::_('image', 'mod_logged/icon-16-logout.png', JText::_('JLOGOUT'), null, true);?>
</a>
<?php endif; ?>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>