forked from joomla/Component-Builder
53 lines
2.1 KiB
PHP
53 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* @package Joomla.Component.Builder
|
|
*
|
|
* @created 30th April, 2015
|
|
* @author Llewellyn van der Merwe <http://www.joomlacomponentbuilder.com>
|
|
* @github Joomla Component Builder <https://github.com/vdm-io/Joomla-Component-Builder>
|
|
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
|
|
* @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::_('searchtools.sort', '', 'a.ordering', $this->listDirn, $this->listOrder, null, 'asc', 'JGRID_HEADING_ORDERING', 'icon-menu-2'); ?>
|
|
</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::_('searchtools.sort', 'COM_COMPONENTBUILDER_TEMPLATES_NAMES', 'a.name', $this->listDirn, $this->listOrder); ?>
|
|
</th>
|
|
<th class="nowrap hidden-phone" >
|
|
<?php echo JHtml::_('searchtools.sort', 'COM_COMPONENTBUILDER_TEMPLATES_DETAILS', 'a.description', $this->listDirn, $this->listOrder); ?>
|
|
</th>
|
|
<th class="nowrap" >
|
|
<?php echo JHtml::_('searchtools.sort', 'COM_COMPONENTBUILDER_TEMPLATE_DYNAMIC_GET_LABEL', 'g.name', $this->listDirn, $this->listOrder); ?>
|
|
</th>
|
|
<?php if ($this->canState): ?>
|
|
<th width="10" class="nowrap center" >
|
|
<?php echo JHtml::_('searchtools.sort', 'COM_COMPONENTBUILDER_TEMPLATE_STATUS', 'a.published', $this->listDirn, $this->listOrder); ?>
|
|
</th>
|
|
<?php else: ?>
|
|
<th width="10" class="nowrap center" >
|
|
<?php echo JText::_('COM_COMPONENTBUILDER_TEMPLATE_STATUS'); ?>
|
|
</th>
|
|
<?php endif; ?>
|
|
<th width="5" class="nowrap center hidden-phone" >
|
|
<?php echo JHtml::_('searchtools.sort', 'COM_COMPONENTBUILDER_TEMPLATE_ID', 'a.id', $this->listDirn, $this->listOrder); ?>
|
|
</th>
|
|
</tr>
|