2018-07-11 00:35:10 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2018-07-25 03:00:13 +00:00
|
|
|
* @package Joomla.Members.Manager
|
2018-07-11 00:35:10 +00:00
|
|
|
*
|
|
|
|
* @created 6th September, 2015
|
|
|
|
* @author Llewellyn van der Merwe <https://www.joomlacomponentbuilder.com/>
|
2018-07-25 03:00:13 +00:00
|
|
|
* @github Joomla Members Manager <https://github.com/vdm-io/Joomla-Members-Manager>
|
2018-07-11 00:35:10 +00:00
|
|
|
* @copyright Copyright (C) 2015. All Rights Reserved
|
|
|
|
* @license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
// No direct access to this file
|
2018-09-19 12:29:53 +00:00
|
|
|
defined('_JEXEC') or die('Restricted access');
|
2018-07-11 00:35:10 +00:00
|
|
|
|
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<?php if ($this->canEdit&& $this->canState): ?>
|
|
|
|
<th width="1%" class="nowrap center hidden-phone">
|
|
|
|
<?php echo JHtml::_('grid.sort', '<i class="icon-menu-2"></i>', 'ordering', $this->listDirn, $this->listOrder, null, 'asc', 'JGRID_HEADING_ORDERING'); ?>
|
|
|
|
</th>
|
|
|
|
<th width="20" class="nowrap center">
|
|
|
|
<?php echo JHtml::_('grid.checkall'); ?>
|
|
|
|
</th>
|
|
|
|
<?php else: ?>
|
|
|
|
<th width="20" class="nowrap center hidden-phone">
|
|
|
|
▾
|
|
|
|
</th>
|
|
|
|
<th width="20" class="nowrap center">
|
|
|
|
■
|
|
|
|
</th>
|
|
|
|
<?php endif; ?>
|
|
|
|
<th class="nowrap" >
|
2018-09-19 12:29:53 +00:00
|
|
|
<?php echo JText::_('COM_MEMBERSMANAGER_MEMBERS_DETAILS'); ?>
|
2018-07-11 00:35:10 +00:00
|
|
|
</th>
|
|
|
|
<th class="nowrap hidden-phone" >
|
2018-09-19 12:29:53 +00:00
|
|
|
<?php echo JText::_('COM_MEMBERSMANAGER_MEMBER_EMAIL_LABEL'); ?>
|
2018-07-11 00:35:10 +00:00
|
|
|
</th>
|
|
|
|
<th class="nowrap hidden-phone" >
|
|
|
|
<?php echo JHtml::_('grid.sort', 'COM_MEMBERSMANAGER_MEMBER_ACCOUNT_LABEL', 'account', $this->listDirn, $this->listOrder); ?>
|
|
|
|
</th>
|
|
|
|
<?php if ($this->canState): ?>
|
|
|
|
<th width="10" class="nowrap center" >
|
|
|
|
<?php echo JHtml::_('grid.sort', 'COM_MEMBERSMANAGER_MEMBER_STATUS', 'published', $this->listDirn, $this->listOrder); ?>
|
|
|
|
</th>
|
|
|
|
<?php else: ?>
|
|
|
|
<th width="10" class="nowrap center" >
|
|
|
|
<?php echo JText::_('COM_MEMBERSMANAGER_MEMBER_STATUS'); ?>
|
|
|
|
</th>
|
|
|
|
<?php endif; ?>
|
|
|
|
<th width="5" class="nowrap center hidden-phone" >
|
|
|
|
<?php echo JHtml::_('grid.sort', 'COM_MEMBERSMANAGER_MEMBER_ID', 'id', $this->listDirn, $this->listOrder); ?>
|
|
|
|
</th>
|
|
|
|
</tr>
|