149 lines
5.9 KiB
PHP
149 lines
5.9 KiB
PHP
<?php
|
|
\defined('_JEXEC') or die;
|
|
|
|
use Joomla\CMS\HTML\HTMLHelper;
|
|
use Joomla\CMS\Language\Text;
|
|
use Joomla\CMS\Router\Route;
|
|
use Joomla\CMS\Language\Multilanguage;
|
|
use Joomla\CMS\Language\Associations;
|
|
use Joomla\CMS\Layout\LayoutHelper;
|
|
use Joomla\CMS\Session\Session;
|
|
|
|
$wa = $this->document->getWebAssetManager();
|
|
$wa->useScript('table.columns');
|
|
|
|
$canChange = true;
|
|
$assoc = Associations::isEnabled();
|
|
$listOrder = $this->escape($this->state->get('list.ordering'));
|
|
$listDirn = $this->escape($this->state->get('list.direction'));
|
|
$saveOrder = $listOrder == 'a.ordering';
|
|
|
|
if ($saveOrder && !empty($this->items)) {
|
|
$saveOrderingUrl = 'index.php?option=com_foos&task=foos.saveOrderAjax&tmpl=component&' . Session::getFormToken() . '=1';
|
|
}
|
|
?>
|
|
<form action="<?php echo Route::_('index.php?option=com_foos'); ?>" method="post" name="adminForm" id="adminForm">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div id="j-main-container" class="j-main-container">
|
|
<?php echo LayoutHelper::render('joomla.searchtools.default', ['view' => $this]); ?>
|
|
<?php if (empty($this->items)) : ?>
|
|
<div class="alert alert-warning">
|
|
<?php echo Text::_('JGLOBAL_NO_MATCHING_RESULTS'); ?>
|
|
</div>
|
|
<?php else : ?>
|
|
<table class="table" id="fooList">
|
|
<caption class="visually-hidden">
|
|
<?php echo Text::_('COM_FOOS_TABLE_CAPTION'); ?>, <?php echo Text::_('JGLOBAL_SORTED_BY'); ?>
|
|
</caption>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col" style="width:1%" class="text-center d-none d-md-table-cell">
|
|
<?php echo HTMLHelper::_('searchtools.sort', '', 'a.ordering', $listDirn, $listOrder, null, 'asc', 'JGRID_HEADING_ORDERING', 'icon-menu-2'); ?>
|
|
</th>
|
|
<td style="width:1%" class="text-center">
|
|
<?php echo HTMLHelper::_('grid.checkall'); ?>
|
|
</td>
|
|
<th scope="col" style="width:1%" class="text-center d-none d-md-table-cell">
|
|
<?php echo HTMLHelper::_('searchtools.sort', 'COM_FOOS_TABLE_TABLEHEAD_NAME', 'a.name', $listDirn, $listOrder); ?>
|
|
</th>
|
|
<th scope="col" style="width:1%; min-width:85px" class="text-center">
|
|
<?php echo HTMLHelper::_('searchtools.sort', 'JSTATUS', 'a.published', $listDirn, $listOrder); ?>
|
|
</th>
|
|
<th scope="col" style="width:10%" class="d-none d-md-table-cell">
|
|
<?php echo HTMLHelper::_('searchtools.sort', 'JGRID_HEADING_ACCESS', 'access_level', $listDirn, $listOrder); ?>
|
|
</th>
|
|
<?php if ($assoc) : ?>
|
|
<th scope="col" style="width:10%">
|
|
<?php echo HTMLHelper::_('searchtools.sort', 'COM_FOOS_HEADING_ASSOCIATION', 'association', $listDirn, $listOrder); ?>
|
|
</th>
|
|
<?php endif; ?>
|
|
<?php if (Multilanguage::isEnabled()) : ?>
|
|
<th scope="col" style="width:10%" class="d-none d-md-table-cell">
|
|
<?php echo HTMLHelper::_('searchtools.sort', 'JGRID_HEADING_LANGUAGE', 'language_title', $listDirn, $listOrder); ?>
|
|
</th>
|
|
<?php endif; ?>
|
|
<th scope="col">
|
|
<?php echo HTMLHelper::_('searchtools.sort', 'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder); ?>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
$n = count($this->items);
|
|
foreach ($this->items as $i => $item) :
|
|
?>
|
|
<tr class="row<?php echo $i % 2; ?>">
|
|
<td class="order text-center d-none d-md-table-cell">
|
|
<?php
|
|
$iconClass = '';
|
|
if (!$canChange) {
|
|
$iconClass = ' inactive';
|
|
} else if (!$saveOrder) {
|
|
$iconClass = ' inactive tip-top hasTooltip" title="' . HTMLHelper::_('tooltipText', 'JORDERINGDISABLED');
|
|
}
|
|
?>
|
|
<span class="sortable-handler<?php echo $iconClass; ?>">
|
|
<span class="icon-menu" aria-hidden="true"></span>
|
|
</span>
|
|
<?php if ($canChange && $saveOrder) : ?>
|
|
<input type="text" style="display:none" name="order[]" size="5"
|
|
value="<?php echo $item->ordering; ?>" class="width-20 text-area-order">
|
|
<?php endif; ?>
|
|
</td>
|
|
<td class="text-center">
|
|
<?php echo HTMLHelper::_('grid.id', $i, $item->id); ?>
|
|
</td>
|
|
<th scope="row" class="has-context">
|
|
<div>
|
|
<?php echo $this->escape($item->name); ?>
|
|
</div>
|
|
<?php $editIcon = '<span class="fa fa-pencil-square mr-2" aria-hidden="true"></span>'; ?>
|
|
<a class="hasTooltip" href="<?php echo Route::_('index.php?option=com_foos&task=foo.edit&id=' . (int) $item->id); ?>" title="<?php echo Text::_('JACTION_EDIT'); ?> <?php echo $this->escape(addslashes($item->name)); ?>">
|
|
<?php echo $editIcon; ?><?php echo $this->escape($item->name); ?></a>
|
|
|
|
<div class="small">
|
|
<?php echo Text::_('JCATEGORY') . ': ' . $this->escape($item->category_title); ?>
|
|
</div>
|
|
</th>
|
|
<td class="text-center">
|
|
<?php
|
|
echo HTMLHelper::_('jgrid.published', $item->published, $i, 'foos.', $canChange, 'cb', $item->publish_up, $item->publish_down);
|
|
?>
|
|
</td>
|
|
<td class="small d-none d-md-table-cell">
|
|
<?php echo $item->access_level; ?>
|
|
</td>
|
|
|
|
<?php if ($assoc) : ?>
|
|
<td class="d-none d-md-table-cell">
|
|
<?php if ($item->association) : ?>
|
|
<?php
|
|
echo HTMLHelper::_('foosadministrator.association', $item->id);
|
|
?>
|
|
<?php endif; ?>
|
|
</td>
|
|
<?php endif; ?>
|
|
<?php if (Multilanguage::isEnabled()) : ?>
|
|
<td class="small d-none d-md-table-cell">
|
|
<?php echo LayoutHelper::render('joomla.content.language', $item); ?>
|
|
</td>
|
|
<?php endif; ?>
|
|
|
|
<td class="d-none d-md-table-cell">
|
|
<?php echo $item->id; ?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
|
|
<?php endif; ?>
|
|
<input type="hidden" name="task" value="">
|
|
<input type="hidden" name="boxchecked" value="0">
|
|
<?php echo HTMLHelper::_('form.token'); ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|