first commit
This commit is contained in:
235
administrator/components/com_users/tmpl/users/default.php
Normal file
235
administrator/components/com_users/tmpl/users/default.php
Normal file
@ -0,0 +1,235 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Administrator
|
||||
* @subpackage com_users
|
||||
*
|
||||
* @copyright (C) 2007 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Access\Access;
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Layout\LayoutHelper;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Router\Route;
|
||||
use Joomla\CMS\String\PunycodeHelper;
|
||||
|
||||
/** @var \Joomla\Component\Users\Administrator\View\Users\HtmlView $this */
|
||||
|
||||
|
||||
/** @var \Joomla\CMS\WebAsset\WebAssetManager $wa */
|
||||
$wa = $this->document->getWebAssetManager();
|
||||
$wa->useScript('table.columns')
|
||||
->useScript('multiselect');
|
||||
|
||||
$listOrder = $this->escape($this->state->get('list.ordering'));
|
||||
$listDirn = $this->escape($this->state->get('list.direction'));
|
||||
$loggeduser = $this->getCurrentUser();
|
||||
$mfa = PluginHelper::isEnabled('multifactorauth');
|
||||
|
||||
?>
|
||||
<form action="<?php echo Route::_('index.php?option=com_users&view=users'); ?>" method="post" name="adminForm" id="adminForm">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div id="j-main-container" class="j-main-container">
|
||||
<?php
|
||||
// Search tools bar
|
||||
echo LayoutHelper::render('joomla.searchtools.default', ['view' => $this]);
|
||||
?>
|
||||
<?php if (empty($this->items)) : ?>
|
||||
<div class="alert alert-info">
|
||||
<span class="icon-info-circle" aria-hidden="true"></span><span class="visually-hidden"><?php echo Text::_('INFO'); ?></span>
|
||||
<?php echo Text::_('JGLOBAL_NO_MATCHING_RESULTS'); ?>
|
||||
</div>
|
||||
<?php else : ?>
|
||||
<table class="table" id="userList">
|
||||
<caption class="visually-hidden">
|
||||
<?php echo Text::_('COM_USERS_USERS_TABLE_CAPTION'); ?>,
|
||||
<span id="orderedBy"><?php echo Text::_('JGLOBAL_SORTED_BY'); ?> </span>,
|
||||
<span id="filteredBy"><?php echo Text::_('JGLOBAL_FILTERED_BY'); ?></span>
|
||||
</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="w-1 text-center">
|
||||
<?php echo HTMLHelper::_('grid.checkall'); ?>
|
||||
</td>
|
||||
<th scope="col">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'COM_USERS_HEADING_NAME', 'a.name', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<th scope="col" class="w-10 d-none d-md-table-cell">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'JGLOBAL_USERNAME', 'a.username', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<th scope="col" class="w-5 text-center d-md-table-cell">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'COM_USERS_HEADING_ENABLED', 'a.block', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<th scope="col" class="w-5 text-center d-md-table-cell">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'COM_USERS_HEADING_ACTIVATED', 'a.activation', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<?php if ($mfa) : ?>
|
||||
<th scope="col" class="w-5 text-center d-none d-md-table-cell">
|
||||
<?php echo Text::_('COM_USERS_HEADING_MFA'); ?>
|
||||
</th>
|
||||
<?php endif; ?>
|
||||
<th scope="col" class="w-12 d-none d-md-table-cell">
|
||||
<?php echo Text::_('COM_USERS_HEADING_GROUPS'); ?>
|
||||
</th>
|
||||
<th scope="col" class="w-12 d-none d-xl-table-cell">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'JGLOBAL_EMAIL', 'a.email', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<th scope="col" class="w-12 d-none d-xl-table-cell">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'COM_USERS_HEADING_LAST_VISIT_DATE', 'a.lastvisitDate', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<th scope="col" class="w-12 d-none d-xl-table-cell">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'COM_USERS_HEADING_REGISTRATION_DATE', 'a.registerDate', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<th scope="col" class="w-5 d-none d-md-table-cell">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach ($this->items as $i => $item) :
|
||||
$canEdit = $this->canDo->get('core.edit');
|
||||
$canChange = $loggeduser->authorise('core.edit.state', 'com_users');
|
||||
|
||||
// If this group is super admin and this user is not super admin, $canEdit is false
|
||||
if ((!$loggeduser->authorise('core.admin')) && Access::check($item->id, 'core.admin')) {
|
||||
$canEdit = false;
|
||||
$canChange = false;
|
||||
}
|
||||
?>
|
||||
<tr class="row<?php echo $i % 2; ?>">
|
||||
<td class="text-center">
|
||||
<?php if ($canEdit || $canChange) : ?>
|
||||
<?php echo HTMLHelper::_('grid.id', $i, $item->id, false, 'cid', 'cb', $item->name); ?>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
<th scope="row">
|
||||
<div class="name break-word">
|
||||
<?php if ($canEdit) : ?>
|
||||
<a href="<?php echo Route::_('index.php?option=com_users&task=user.edit&id=' . (int) $item->id); ?>" title="<?php echo Text::sprintf('COM_USERS_EDIT_USER', $this->escape($item->name)); ?>">
|
||||
<?php echo $this->escape($item->name); ?></a>
|
||||
<?php else : ?>
|
||||
<?php echo $this->escape($item->name); ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<div class="btn-group">
|
||||
<?php echo HTMLHelper::_('users.addNote', $item->id); ?>
|
||||
<?php if ($item->note_count > 0) : ?>
|
||||
<button type="button" class="btn btn-secondary btn-sm dropdown-toggle dropdown-toggle-split" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<span class="visually-hidden"><?php echo Text::_('JGLOBAL_TOGGLE_DROPDOWN'); ?></span>
|
||||
</button>
|
||||
<div class="dropdown-menu">
|
||||
<?php echo HTMLHelper::_('users.filterNotes', $item->note_count, $item->id); ?>
|
||||
<?php echo HTMLHelper::_('users.notes', $item->note_count, $item->id); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<?php echo HTMLHelper::_('users.notesModal', $item->note_count, $item->id); ?>
|
||||
<?php if ($item->requireReset == '1') : ?>
|
||||
<span class="badge bg-warning text-dark"><?php echo Text::_('COM_USERS_PASSWORD_RESET_REQUIRED'); ?></span>
|
||||
<?php endif; ?>
|
||||
</th>
|
||||
<td class="break-word d-none d-md-table-cell">
|
||||
<?php echo $this->escape($item->username); ?>
|
||||
</td>
|
||||
<td class="text-center d-md-table-cell">
|
||||
<?php $self = $loggeduser->id == $item->id; ?>
|
||||
<?php if ($canChange) : ?>
|
||||
<?php echo HTMLHelper::_('jgrid.state', HTMLHelper::_('users.blockStates', $self), $item->block, $i, 'users.', !$self); ?>
|
||||
<?php else : ?>
|
||||
<?php echo HTMLHelper::_('jgrid.state', HTMLHelper::_('users.blockStates', $self), $item->block, $i, 'users.', false); ?>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
<td class="text-center d-md-table-cell">
|
||||
<?php
|
||||
$activated = empty($item->activation) ? 0 : 1;
|
||||
echo HTMLHelper::_('jgrid.state', HTMLHelper::_('users.activateStates'), $activated, $i, 'users.', (bool) $activated);
|
||||
?>
|
||||
</td>
|
||||
<?php if ($mfa) : ?>
|
||||
<td class="text-center d-none d-md-table-cell">
|
||||
<span class="tbody-icon">
|
||||
<?php if ($item->mfaRecords > 0 || !empty($item->otpKey)) : ?>
|
||||
<span class="icon-check" aria-hidden="true" aria-describedby="tip-mfa<?php echo $i; ?>"></span>
|
||||
<div role="tooltip" id="tip-mfa<?php echo $i; ?>">
|
||||
<?php echo Text::_('COM_USERS_MFA_ACTIVE'); ?>
|
||||
</div>
|
||||
<?php else : ?>
|
||||
<span class="icon-times" aria-hidden="true" aria-describedby="tip-mfa<?php echo $i; ?>"></span>
|
||||
<div role="tooltip" id="tip-mfa<?php echo $i; ?>">
|
||||
<?php echo Text::_('COM_USERS_MFA_NOTACTIVE'); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</span>
|
||||
</td>
|
||||
<?php endif; ?>
|
||||
<td class="d-none d-md-table-cell">
|
||||
<?php if (substr_count($item->group_names, "\n") > 1) : ?>
|
||||
<span tabindex="0"><?php echo Text::_('COM_USERS_USERS_MULTIPLE_GROUPS'); ?></span>
|
||||
<div role="tooltip" id="tip<?php echo $i; ?>">
|
||||
<strong><?php echo Text::_('COM_USERS_HEADING_GROUPS'); ?></strong>
|
||||
<ul><li><?php echo str_replace("\n", '</li><li>', $item->group_names); ?></li></ul>
|
||||
</div>
|
||||
<?php else : ?>
|
||||
<?php echo nl2br($item->group_names, false); ?>
|
||||
<?php endif; ?>
|
||||
<a class="btn btn-sm btn-secondary"
|
||||
href="<?php echo Route::_('index.php?option=com_users&view=debuguser&user_id=' . (int) $item->id); ?>">
|
||||
<?php echo Text::_('COM_USERS_DEBUG_PERMISSIONS'); ?>
|
||||
</a>
|
||||
</td>
|
||||
<td class="d-none d-xl-table-cell break-word">
|
||||
<?php echo PunycodeHelper::emailToUTF8($this->escape($item->email)); ?>
|
||||
</td>
|
||||
<td class="d-none d-xl-table-cell">
|
||||
<?php if ($item->lastvisitDate !== null) : ?>
|
||||
<?php echo HTMLHelper::_('date', $item->lastvisitDate, Text::_('DATE_FORMAT_LC6')); ?>
|
||||
<?php else : ?>
|
||||
<?php echo Text::_('JNEVER'); ?>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
<td class="d-none d-xl-table-cell">
|
||||
<?php echo HTMLHelper::_('date', $item->registerDate, Text::_('DATE_FORMAT_LC6')); ?>
|
||||
</td>
|
||||
<td class="d-none d-md-table-cell">
|
||||
<?php echo (int) $item->id; ?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<?php // load the pagination. ?>
|
||||
<?php echo $this->pagination->getListFooter(); ?>
|
||||
|
||||
<?php // Load the batch processing form if user is allowed ?>
|
||||
<?php
|
||||
if (
|
||||
$loggeduser->authorise('core.create', 'com_users')
|
||||
&& $loggeduser->authorise('core.edit', 'com_users')
|
||||
&& $loggeduser->authorise('core.edit.state', 'com_users')
|
||||
) : ?>
|
||||
<?php echo HTMLHelper::_(
|
||||
'bootstrap.renderModal',
|
||||
'collapseModal',
|
||||
[
|
||||
'title' => Text::_('COM_USERS_BATCH_OPTIONS'),
|
||||
'footer' => $this->loadTemplate('batch_footer'),
|
||||
],
|
||||
$this->loadTemplate('batch_body')
|
||||
); ?>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<input type="hidden" name="task" value="">
|
||||
<input type="hidden" name="boxchecked" value="0">
|
||||
<?php echo HTMLHelper::_('form.token'); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<layout title="COM_USERS_USERS_VIEW_DEFAULT_TITLE">
|
||||
<message>
|
||||
<![CDATA[COM_USERS_USERS_VIEW_DEFAULT_DESC]]>
|
||||
</message>
|
||||
</layout>
|
||||
</metadata>
|
||||
@ -0,0 +1,66 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Administrator
|
||||
* @subpackage com_users
|
||||
*
|
||||
* @copyright (C) 2015 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
// Create the copy/move options.
|
||||
$options = [
|
||||
HTMLHelper::_('select.option', 'add', Text::_('COM_USERS_BATCH_ADD')),
|
||||
HTMLHelper::_('select.option', 'del', Text::_('COM_USERS_BATCH_DELETE')),
|
||||
HTMLHelper::_('select.option', 'set', Text::_('COM_USERS_BATCH_SET'))
|
||||
];
|
||||
|
||||
// Create the reset password options.
|
||||
$resetOptions = [
|
||||
HTMLHelper::_('select.option', '', Text::_('COM_USERS_NO_ACTION')),
|
||||
HTMLHelper::_('select.option', 'yes', Text::_('JYES')),
|
||||
HTMLHelper::_('select.option', 'no', Text::_('JNO'))
|
||||
];
|
||||
|
||||
/** @var Joomla\CMS\WebAsset\WebAssetManager $wa */
|
||||
$wa = $this->document->getWebAssetManager();
|
||||
$wa->useScript('joomla.batch-copymove');
|
||||
|
||||
?>
|
||||
|
||||
<div class="p-3">
|
||||
<form>
|
||||
<div class="form-group">
|
||||
<label id="batch-choose-action-lbl" class="control-label" for="batch-group-id">
|
||||
<?php echo Text::_('COM_USERS_BATCH_GROUP'); ?>
|
||||
</label>
|
||||
<div id="batch-choose-action" class="combo controls">
|
||||
<select class="form-select" name="batch[group_id]" id="batch-group-id">
|
||||
<option value=""><?php echo Text::_('JSELECT'); ?></option>
|
||||
<?php echo HTMLHelper::_('select.options', HTMLHelper::_('user.groups')); ?>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<fieldset>
|
||||
<legend>
|
||||
<?php echo Text::_('COM_USERS_BATCH_ACTIONS'); ?>
|
||||
</legend>
|
||||
<?php echo HTMLHelper::_('select.radiolist', $options, 'batch[group_action]', '', 'value', 'text', 'add'); ?>
|
||||
</fieldset>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<fieldset id="batch-password-reset_id">
|
||||
<legend>
|
||||
<?php echo Text::_('COM_USERS_REQUIRE_PASSWORD_RESET'); ?>
|
||||
</legend>
|
||||
<?php echo HTMLHelper::_('select.radiolist', $resetOptions, 'batch[reset_id]', '', 'value', 'text', ''); ?>
|
||||
</fieldset>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Administrator
|
||||
* @subpackage com_users
|
||||
*
|
||||
* @copyright (C) 2015 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
?>
|
||||
<button type="button" class="btn btn-secondary" onclick="document.getElementById('batch-group-id').value=''" data-bs-dismiss="modal">
|
||||
<?php echo Text::_('JCANCEL'); ?>
|
||||
</button>
|
||||
<button type="submit" class="btn btn-success" onclick="Joomla.submitbutton('user.batch');return false;">
|
||||
<?php echo Text::_('JGLOBAL_BATCH_PROCESS'); ?>
|
||||
</button>
|
||||
126
administrator/components/com_users/tmpl/users/modal.php
Normal file
126
administrator/components/com_users/tmpl/users/modal.php
Normal file
@ -0,0 +1,126 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Administrator
|
||||
* @subpackage com_users
|
||||
*
|
||||
* @copyright (C) 2009 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Layout\LayoutHelper;
|
||||
use Joomla\CMS\Router\Route;
|
||||
|
||||
/** @var Joomla\CMS\WebAsset\WebAssetManager $wa */
|
||||
$wa = $this->document->getWebAssetManager();
|
||||
$wa->useScript('multiselect')->useScript('modal-content-select');
|
||||
|
||||
$input = Factory::getApplication()->getInput();
|
||||
$field = $input->getCmd('field', '');
|
||||
$listOrder = $this->escape($this->state->get('list.ordering', ''));
|
||||
$listDirn = $this->escape($this->state->get('list.direction', ''));
|
||||
$enabledStates = [0 => 'icon-check', 1 => 'icon-times'];
|
||||
$activatedStates = [0 => 'icon-check', 1 => 'icon-times'];
|
||||
$userRequired = (int) $input->get('required', 0, 'int');
|
||||
|
||||
?>
|
||||
<div class="container-popup">
|
||||
<form action="<?php echo Route::_('index.php?option=com_users&view=users&layout=modal&tmpl=component&groups=' . $input->get('groups', '', 'BASE64') . '&excluded=' . $input->get('excluded', '', 'BASE64')); ?>" method="post" name="adminForm" id="adminForm">
|
||||
<?php if (!$userRequired) : ?>
|
||||
<div>
|
||||
<button type="button" class="btn btn-primary button-select" data-user-value="0" data-user-name="<?php echo $this->escape(Text::_('JLIB_FORM_SELECT_USER')); ?>"
|
||||
data-user-field="<?php echo $this->escape($field); ?>"><?php echo Text::_('JOPTION_NO_USER'); ?></button>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php echo LayoutHelper::render('joomla.searchtools.default', ['view' => $this]); ?>
|
||||
<?php if (empty($this->items)) : ?>
|
||||
<div class="alert alert-info">
|
||||
<span class="icon-info-circle" aria-hidden="true"></span><span class="visually-hidden"><?php echo Text::_('INFO'); ?></span>
|
||||
<?php echo Text::_('JGLOBAL_NO_MATCHING_RESULTS'); ?>
|
||||
</div>
|
||||
<?php else : ?>
|
||||
<table class="table table-sm">
|
||||
<caption class="visually-hidden">
|
||||
<?php echo Text::_('COM_USERS_USERS_TABLE_CAPTION'); ?>,
|
||||
<span id="orderedBy"><?php echo Text::_('JGLOBAL_SORTED_BY'); ?> </span>,
|
||||
<span id="filteredBy"><?php echo Text::_('JGLOBAL_FILTERED_BY'); ?></span>
|
||||
</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'COM_USERS_HEADING_NAME', 'a.name', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<th scope="col" class="w-25">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'JGLOBAL_USERNAME', 'a.username', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<th scope="col" class="w-1 text-center">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'COM_USERS_HEADING_ENABLED', 'a.block', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<th scope="col" class="w-1 text-center">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'COM_USERS_HEADING_ACTIVATED', 'a.activation', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<th scope="col" class="w-25">
|
||||
<?php echo Text::_('COM_USERS_HEADING_GROUPS'); ?>
|
||||
</th>
|
||||
<th scope="col" class="w-1">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php $i = 0; ?>
|
||||
<?php foreach ($this->items as $item) :
|
||||
$attribs = 'data-content-select data-content-type="com_users.user"'
|
||||
. ' data-id="' . ((int) $item->id) . '"'
|
||||
. ' data-name="' . $this->escape($item->name) . '"'
|
||||
// @TODO: data-user-value, data-user-name, data-user-field is for backward compatibility, remove in Joomla 6
|
||||
. ' data-user-value="' . ((int) $item->id) . '"'
|
||||
. ' data-user-name="' . $this->escape($item->name) . '"'
|
||||
. ' data-user-field="' . $this->escape($field) . '"';
|
||||
?>
|
||||
<tr class="row<?php echo $i % 2; ?>">
|
||||
<th scope="row">
|
||||
<a class="pointer button-select" href="#" <?php echo $attribs; ?>>
|
||||
<?php echo $this->escape($item->name); ?>
|
||||
</a>
|
||||
</th>
|
||||
<td>
|
||||
<?php echo $this->escape($item->username); ?>
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<span class="tbody-icon">
|
||||
<span class="<?php echo $enabledStates[(int) $this->escape($item->block)]; ?>"></span>
|
||||
</span>
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<span class="tbody-icon">
|
||||
<span class="<?php echo $activatedStates[(empty($item->activation) ? 0 : 1)]; ?>"></span>
|
||||
</span>
|
||||
</td>
|
||||
<td>
|
||||
<?php echo nl2br($item->group_names, false); ?>
|
||||
</td>
|
||||
<td>
|
||||
<?php echo (int) $item->id; ?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<?php // load the pagination. ?>
|
||||
<?php echo $this->pagination->getListFooter(); ?>
|
||||
|
||||
<?php endif; ?>
|
||||
<input type="hidden" name="task" value="">
|
||||
<input type="hidden" name="field" value="<?php echo $this->escape($field); ?>">
|
||||
<input type="hidden" name="boxchecked" value="0">
|
||||
<input type="hidden" name="required" value="<?php echo $userRequired; ?>">
|
||||
<?php echo HTMLHelper::_('form.token'); ?>
|
||||
</form>
|
||||
</div>
|
||||
Reference in New Issue
Block a user