2017-11-11 22:18:13 +00:00
|
|
|
<?php
|
2021-03-05 03:08:47 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
2022-07-09 15:45:08 +00:00
|
|
|
* @author Llewellyn van der Merwe <https://dev.vdm.io>
|
|
|
|
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
|
2021-03-05 03:08:47 +00:00
|
|
|
* @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');
|
|
|
|
|
|
|
|
?>
|
2017-11-11 22:18:13 +00:00
|
|
|
<tr>
|
|
|
|
<?php if ($this->canEdit&& $this->canState): ?>
|
|
|
|
<th width="1%" class="nowrap center hidden-phone">
|
2020-12-03 05:24:20 +00:00
|
|
|
<?php echo JHtml::_('searchtools.sort', '', 'a.ordering', $this->listDirn, $this->listOrder, null, 'asc', 'JGRID_HEADING_ORDERING', 'icon-menu-2'); ?>
|
2017-11-11 22:18:13 +00:00
|
|
|
</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" >
|
2020-12-03 05:24:20 +00:00
|
|
|
<?php echo JHtml::_('searchtools.sort', 'COM_COMPONENTBUILDER_LIBRARY_NAME_LABEL', 'a.name', $this->listDirn, $this->listOrder); ?>
|
2017-11-11 22:18:13 +00:00
|
|
|
</th>
|
|
|
|
<th class="nowrap hidden-phone" >
|
2020-12-03 05:24:20 +00:00
|
|
|
<?php echo JHtml::_('searchtools.sort', 'COM_COMPONENTBUILDER_LIBRARY_TARGET_LABEL', 'a.target', $this->listDirn, $this->listOrder); ?>
|
2017-11-11 22:18:13 +00:00
|
|
|
</th>
|
2017-11-26 00:29:08 +00:00
|
|
|
<th class="nowrap hidden-phone" >
|
|
|
|
<?php echo JText::_('COM_COMPONENTBUILDER_LIBRARY_HOW_LABEL'); ?>
|
|
|
|
</th>
|
2017-12-03 18:09:04 +00:00
|
|
|
<th class="nowrap hidden-phone" >
|
2020-12-03 05:24:20 +00:00
|
|
|
<?php echo JHtml::_('searchtools.sort', 'COM_COMPONENTBUILDER_LIBRARY_TYPE_LABEL', 'a.type', $this->listDirn, $this->listOrder); ?>
|
2017-12-03 18:09:04 +00:00
|
|
|
</th>
|
2019-10-16 20:34:36 +00:00
|
|
|
<th class="nowrap hidden-phone" >
|
2020-12-03 05:24:20 +00:00
|
|
|
<?php echo JHtml::_('searchtools.sort', 'COM_COMPONENTBUILDER_LIBRARY_DESCRIPTION_LABEL', 'a.description', $this->listDirn, $this->listOrder); ?>
|
2019-10-16 20:34:36 +00:00
|
|
|
</th>
|
2017-11-11 22:18:13 +00:00
|
|
|
<?php if ($this->canState): ?>
|
|
|
|
<th width="10" class="nowrap center" >
|
2020-12-03 05:24:20 +00:00
|
|
|
<?php echo JHtml::_('searchtools.sort', 'COM_COMPONENTBUILDER_LIBRARY_STATUS', 'a.published', $this->listDirn, $this->listOrder); ?>
|
2017-11-11 22:18:13 +00:00
|
|
|
</th>
|
|
|
|
<?php else: ?>
|
|
|
|
<th width="10" class="nowrap center" >
|
|
|
|
<?php echo JText::_('COM_COMPONENTBUILDER_LIBRARY_STATUS'); ?>
|
|
|
|
</th>
|
|
|
|
<?php endif; ?>
|
|
|
|
<th width="5" class="nowrap center hidden-phone" >
|
2020-12-03 05:24:20 +00:00
|
|
|
<?php echo JHtml::_('searchtools.sort', 'COM_COMPONENTBUILDER_LIBRARY_ID', 'a.id', $this->listDirn, $this->listOrder); ?>
|
2017-11-11 22:18:13 +00:00
|
|
|
</th>
|
|
|
|
</tr>
|