Server IP : 180.180.241.3 / Your IP : 216.73.216.252 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/AppServ/www/app/webroot/news/administrator/modules/mod_logged/tmpl/ |
Upload File : |
<?php /** $Id: default.php 10381 2008-06-01 03:35:53Z pasamio $ */ defined( '_JEXEC' ) or die( 'Restricted access' ); ?> <form method="post" action="index.php?option=com_users"> <table class="adminlist"> <thead> <tr> <td class="title"> <strong><?php echo '#' ?></strong> </td> <td class="title"> <strong><?php echo JText::_( 'Name' ); ?></strong> </td> <td class="title"> <strong><?php echo JText::_( 'Group' ); ?></strong> </td> <td class="title"> <strong><?php echo JText::_( 'Client' ); ?></strong> </td> <td class="title"> <strong><?php echo JText::_( 'Last Activity' ); ?></strong> </td> <td class="title"> <strong><?php echo JText::_( 'Logout' ); ?></strong> </td> </tr> </thead> <tbody> <?php $i = 0; $now = time(); foreach ($rows as $row) : $auth = $user->authorize( 'com_users', 'manage' ); if ($auth) : $link = 'index.php?option=com_users&task=edit&cid[]='. $row->userid; $name = '<a href="'. $link .'" title="'. JText::_( 'Edit User' ) .'">'. $row->username .'</a>'; else : $name = $row->username; endif; $clientInfo =& JApplicationHelper::getClientInfo($row->client_id); ?> <tr> <td width="5%"> <?php echo $pageNav->getRowOffset( $i ); ?> </td> <td> <?php echo $name;?> </td> <td> <?php echo $row->usertype;?> </td> <td> <?php echo $clientInfo->name;?> </td> <td> <?php echo JText::sprintf( 'activity hours', ($now - $row->time)/3600.0 );?> </td> <td> <?php if ($auth && $user->get('gid') > 24 && $row->userid != $user->get('id')) : ?> <input type="image" src="images/publish_x.png" onclick="f=this.form;f.task.value='flogout';f.client.value=<?php echo (int) $row->client_id; ?>;f.cid_value.value=<?php echo (int) $row->userid ?>" /> <?php endif; ?> </td> </tr> <?php $i++; endforeach; ?> </tbody> </table> <input type="hidden" name="task" value="" /> <input type="hidden" name="client" value="" /> <input type="hidden" name="cid[]" id="cid_value" value="" /> <?php echo JHTML::_( 'form.token' ); ?> </form>