2016-01-30 20:28:43 +00:00
|
|
|
<?php
|
2018-05-18 06:28:27 +00:00
|
|
|
/**
|
|
|
|
* @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>
|
2020-02-17 20:01:02 +00:00
|
|
|
* @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
|
2018-05-18 06:28:27 +00:00
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
// No direct access to this file
|
2018-09-11 20:28:17 +00:00
|
|
|
defined('_JEXEC') or die('Restricted access');
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<?php if ($this->canEdit&& $this->canState): ?>
|
|
|
|
<th width="1%" class="nowrap center hidden-phone">
|
2020-11-26 17:33:39 +00:00
|
|
|
<?php echo JHtml::_('grid.sort', '<i class="icon-menu-2"></i>', 'a.ordering', $this->listDirn, $this->listOrder, null, 'asc', 'JGRID_HEADING_ORDERING'); ?>
|
2016-01-30 20:28:43 +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-05-21 23:38:20 +00:00
|
|
|
<?php echo JHtml::_('grid.sort', 'COM_COMPONENTBUILDER_SITE_VIEW_SYSTEM_NAME_LABEL', 'a.system_name', $this->listDirn, $this->listOrder); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
</th>
|
|
|
|
<th class="nowrap hidden-phone" >
|
2020-05-21 23:38:20 +00:00
|
|
|
<?php echo JHtml::_('grid.sort', 'COM_COMPONENTBUILDER_SITE_VIEWS_NAMES', 'a.name', $this->listDirn, $this->listOrder); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
</th>
|
|
|
|
<th class="nowrap hidden-phone" >
|
2020-05-21 23:38:20 +00:00
|
|
|
<?php echo JHtml::_('grid.sort', 'COM_COMPONENTBUILDER_SITE_VIEWS_DETAILS', 'a.description', $this->listDirn, $this->listOrder); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
</th>
|
2018-08-23 01:37:42 +00:00
|
|
|
<th class="nowrap" >
|
2020-05-21 23:38:20 +00:00
|
|
|
<?php echo JHtml::_('grid.sort', 'COM_COMPONENTBUILDER_SITE_VIEW_MAIN_GET_LABEL', 'g.name', $this->listDirn, $this->listOrder); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
</th>
|
|
|
|
<?php if ($this->canState): ?>
|
|
|
|
<th width="10" class="nowrap center" >
|
2020-05-21 23:38:20 +00:00
|
|
|
<?php echo JHtml::_('grid.sort', 'COM_COMPONENTBUILDER_SITE_VIEW_STATUS', 'a.published', $this->listDirn, $this->listOrder); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
</th>
|
|
|
|
<?php else: ?>
|
|
|
|
<th width="10" class="nowrap center" >
|
|
|
|
<?php echo JText::_('COM_COMPONENTBUILDER_SITE_VIEW_STATUS'); ?>
|
|
|
|
</th>
|
|
|
|
<?php endif; ?>
|
|
|
|
<th width="5" class="nowrap center hidden-phone" >
|
2020-05-21 23:38:20 +00:00
|
|
|
<?php echo JHtml::_('grid.sort', 'COM_COMPONENTBUILDER_SITE_VIEW_ID', 'a.id', $this->listDirn, $this->listOrder); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
</th>
|
|
|
|
</tr>
|