| 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:/inetpub/wwwroot/icd/administrator/components/com_noixacl/views/users/tmpl/ |
Upload File : |
<?php defined('_JEXEC') or die('Restricted access'); ?>
<?php JHTML::_('behavior.tooltip'); ?>
<?php
JToolBarHelper::title( JText::_( 'NOIXACL_VIEW_USERS_TITLE_USER_MANAGER' ), 'user.png' );
JToolBarHelper::custom( 'logout', 'cancel.png', 'cancel_f2.png', 'Logout' );
JToolBarHelper::deleteList();
JToolBarHelper::editListX();
JToolBarHelper::addNewX();
JToolBarHelper::help( 'screen.users' );
$option = JRequest::getVar( 'option' );
?>
<form action="index.php?option=<?php echo $option; ?>" method="post" name="adminForm">
<table>
<tr>
<td width="100%">
<?php echo JText::_( 'NOIXACL_VIEW_USERS_TEXT_FILTER' ); ?>:
<input type="text" name="search" id="search" value="<?php echo $this->lists['search'];?>" class="text_area" onchange="document.adminForm.submit();" />
<button onclick="this.form.submit();"><?php echo JText::_( 'NOIXACL_VIEW_USERS_BUTTON_GO' ); ?></button>
<button onclick="document.getElementById('search').value='';this.form.getElementById('filter_type').value='0';this.form.getElementById('filter_logged').value='0';this.form.submit();"><?php echo JText::_( 'NOIXACL_VIEW_USERS_BUTTON_RESET' ); ?></button>
</td>
<td nowrap="nowrap">
<?php echo $this->lists['type'];?>
<?php echo $this->lists['logged'];?>
</td>
</tr>
</table>
<table class="adminlist" cellpadding="1">
<thead>
<tr>
<th width="2%" class="title">
<?php echo JText::_( 'NOIXACL_VIEW_USERS_TH_NUM' ); ?>
</th>
<th width="3%" class="title">
<input type="checkbox" name="toggle" value="" onclick="checkAll(<?php echo count($this->items); ?>);" />
</th>
<th class="title">
<?php echo JHTML::_('grid.sort', 'NOIXACL_VIEW_USERS_TH_NAME', 'a.name', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>
</th>
<th width="15%" class="title" >
<?php echo JHTML::_('grid.sort', 'NOIXACL_VIEW_USERS_TH_USERNAME', 'a.username', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>
</th>
<th width="5%" class="title" nowrap="nowrap">
<?php echo JText::_( 'NOIXACL_VIEW_USERS_TH_LOGGED_IN' ); ?>
</th>
<th width="5%" class="title" nowrap="nowrap">
<?php echo JHTML::_('grid.sort', 'NOIXACL_VIEW_USERS_TH_ENABLED', 'a.block', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>
</th>
<th width="15%" class="title">
<?php echo JHTML::_('grid.sort', 'NOIXACL_VIEW_USERS_TH_GROUP', 'groupname', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>
</th>
<th width="15%" class="title">
<?php echo JHTML::_('grid.sort', 'NOIXACL_VIEW_USERS_TH_EMAIL', 'a.email', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>
</th>
<th width="10%" class="title">
<?php echo JHTML::_('grid.sort', 'NOIXACL_VIEW_USERS_TH_LAST_VISIT', 'a.lastvisitDate', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>
</th>
<th width="1%" class="title" nowrap="nowrap">
<?php echo JHTML::_('grid.sort', 'NOIXACL_VIEW_USERS_TH_ID', 'a.id', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>
</th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="10">
<?php echo $this->pagination->getListFooter(); ?>
</td>
</tr>
</tfoot>
<tbody>
<?php
$k = 0;
for ($i=0, $n=count( $this->items ); $i < $n; $i++)
{
$row =& $this->items[$i];
$img = $row->block ? 'publish_x.png' : 'tick.png';
$task = $row->block ? 'unblock' : 'block';
$alt = $row->block ? JText::_( 'NOIXACL_VIEW_USERS_TEXT_ENABLED' ) : JText::_( 'NOIXACL_VIEW_USERS_BLOCKED' );
$link = "index.php?option={$option}&controller=aclusers&view=user&task=edit&cid[]=". $row->id. '';
if ($row->lastvisitDate == "0000-00-00 00:00:00") {
$lvisit = JText::_( 'NOIXACL_VIEW_USERS_TEXT_NEVER' );
} else {
$lvisit = JHTML::_('date', $row->lastvisitDate, '%Y-%m-%d %H:%M:%S');
}
?>
<tr class="<?php echo "row$k"; ?>">
<td align="center">
<?php echo $i+1+$this->pagination->limitstart;?>
</td>
<td>
<?php echo JHTML::_('grid.id', $i, $row->id ); ?>
</td>
<td>
<a href="<?php echo $link; ?>">
<?php echo $row->name; ?></a>
</td>
<td>
<?php echo $row->username; ?>
</td>
<td align="center">
<?php echo $row->loggedin ? '<img src="images/tick.png" width="16" height="16" border="0" alt="" />': ''; ?>
</td>
<td align="center">
<a href="javascript:void(0);" onclick="return listItemTask('cb<?php echo $i;?>','<?php echo $task;?>')">
<img src="images/<?php echo $img;?>" width="16" height="16" border="0" alt="<?php echo $alt; ?>" /></a>
</td>
<td>
<?php echo JText::_( $row->groupname ); ?>
</td>
<td>
<a href="mailto:<?php echo $row->email; ?>">
<?php echo $row->email; ?></a>
</td>
<td nowrap="nowrap">
<?php echo $lvisit; ?>
</td>
<td>
<?php echo $row->id; ?>
</td>
</tr>
<?php
$k = 1 - $k;
}
?>
</tbody>
</table>
<input type="hidden" name="option" value="<?php echo $option; ?>" />
<input type="hidden" name="controller" value="aclusers" />
<input type="hidden" name="task" value="" />
<input type="hidden" name="boxchecked" value="0" />
<input type="hidden" name="filter_order" value="<?php echo $this->lists['order']; ?>" />
<input type="hidden" name="filter_order_Dir" value="<?php echo $this->lists['order_Dir']; ?>" />
<?php echo JHTML::_( 'form.token' ); ?>
</form>
<br clear="all" />
<?php include JPATH_COMPONENT_ADMINISTRATOR.DS."libraries".DS."version.php"; ?>