45 lines
1.5 KiB
PHP
45 lines
1.5 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* @package Joomla.CMS
|
||
|
* @subpackage com_release_checking
|
||
|
*
|
||
|
* @copyright (C) 2020 Open Source Matters, Inc. <http://www.joomla.org>
|
||
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||
|
*/
|
||
|
|
||
|
// No direct access to this file
|
||
|
defined('_JEXEC') or die('Restricted access');
|
||
|
|
||
|
?>
|
||
|
<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" >
|
||
|
<?php echo JHtml::_('grid.sort', 'COM_RELEASE_CHECKING_CONTEXT_NAME_LABEL', 'a.name', $this->listDirn, $this->listOrder); ?>
|
||
|
</th>
|
||
|
<?php if ($this->canState): ?>
|
||
|
<th width="10" class="nowrap center" >
|
||
|
<?php echo JHtml::_('grid.sort', 'COM_RELEASE_CHECKING_CONTEXT_STATUS', 'a.published', $this->listDirn, $this->listOrder); ?>
|
||
|
</th>
|
||
|
<?php else: ?>
|
||
|
<th width="10" class="nowrap center" >
|
||
|
<?php echo JText::_('COM_RELEASE_CHECKING_CONTEXT_STATUS'); ?>
|
||
|
</th>
|
||
|
<?php endif; ?>
|
||
|
<th width="5" class="nowrap center hidden-phone" >
|
||
|
<?php echo JHtml::_('grid.sort', 'COM_RELEASE_CHECKING_CONTEXT_ID', 'a.id', $this->listDirn, $this->listOrder); ?>
|
||
|
</th>
|
||
|
</tr>
|