Cost-Benefit-Projection/admin/views/companies/tmpl/default_head.php

70 lines
3.1 KiB
PHP
Raw Permalink Normal View History

2015-12-01 05:06:34 +00:00
<?php
2022-03-03 02:58:38 +00:00
/*----------------------------------------------------------------------------------| www.giz.de |----/
Deutsche Gesellschaft für International Zusammenarbeit (GIZ) Gmb
/-------------------------------------------------------------------------------------------------------/
2022-05-27 05:41:44 +00:00
@version 3.5.x
@build 27th May, 2022
2022-03-03 02:58:38 +00:00
@created 15th June, 2012
@package Cost Benefit Projection
@subpackage default_head.php
@author Llewellyn van der Merwe <http://www.vdm.io>
@owner Deutsche Gesellschaft für International Zusammenarbeit (GIZ) Gmb
@copyright Copyright (C) 2015. All Rights Reserved
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/-------------------------------------------------------------------------------------------------------/
Cost Benefit Projection Tool.
/------------------------------------------------------------------------------------------------------*/
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
?>
2015-12-01 05:06:34 +00:00
<tr>
<?php if ($this->canEdit&& $this->canState): ?>
<th width="1%" class="nowrap center hidden-phone">
2021-01-06 13:46:53 +00:00
<?php echo JHtml::_('grid.sort', '<i class="icon-menu-2"></i>', 'a.ordering', $this->listDirn, $this->listOrder, null, 'asc', 'JGRID_HEADING_ORDERING'); ?>
2015-12-01 05:06:34 +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">
&#9662;
</th>
<th width="20" class="nowrap center">
&#9632;
</th>
<?php endif; ?>
<th class="nowrap" >
2020-05-30 22:55:13 +00:00
<?php echo JHtml::_('grid.sort', 'COM_COSTBENEFITPROJECTION_COMPANY_NAME_LABEL', 'a.name', $this->listDirn, $this->listOrder); ?>
2015-12-01 05:06:34 +00:00
</th>
<th class="nowrap" >
2020-05-30 22:55:13 +00:00
<?php echo JHtml::_('grid.sort', 'COM_COSTBENEFITPROJECTION_COMPANY_USER_LABEL', 'g.name', $this->listDirn, $this->listOrder); ?>
2015-12-01 05:06:34 +00:00
</th>
<th class="nowrap hidden-phone" >
2020-05-30 22:55:13 +00:00
<?php echo JHtml::_('grid.sort', 'COM_COSTBENEFITPROJECTION_COMPANY_DEPARTMENT_LABEL', 'a.department', $this->listDirn, $this->listOrder); ?>
2015-12-01 05:06:34 +00:00
</th>
<th class="nowrap" >
2020-05-30 22:55:13 +00:00
<?php echo JHtml::_('grid.sort', 'COM_COSTBENEFITPROJECTION_COMPANY_COUNTRY_LABEL', 'h.name', $this->listDirn, $this->listOrder); ?>
2015-12-01 05:06:34 +00:00
</th>
<th class="nowrap" >
2020-05-30 22:55:13 +00:00
<?php echo JHtml::_('grid.sort', 'COM_COSTBENEFITPROJECTION_COMPANY_SERVICE_PROVIDER_LABEL', 'i.user', $this->listDirn, $this->listOrder); ?>
2015-12-01 05:06:34 +00:00
</th>
<th class="nowrap hidden-phone" >
2020-05-30 22:55:13 +00:00
<?php echo JHtml::_('grid.sort', 'COM_COSTBENEFITPROJECTION_COMPANY_PER_LABEL', 'a.per', $this->listDirn, $this->listOrder); ?>
2015-12-01 05:06:34 +00:00
</th>
<?php if ($this->canState): ?>
<th width="10" class="nowrap center" >
2020-05-30 22:55:13 +00:00
<?php echo JHtml::_('grid.sort', 'COM_COSTBENEFITPROJECTION_COMPANY_STATUS', 'a.published', $this->listDirn, $this->listOrder); ?>
2015-12-01 05:06:34 +00:00
</th>
<?php else: ?>
<th width="10" class="nowrap center" >
<?php echo JText::_('COM_COSTBENEFITPROJECTION_COMPANY_STATUS'); ?>
</th>
<?php endif; ?>
<th width="5" class="nowrap center hidden-phone" >
2020-05-30 22:55:13 +00:00
<?php echo JHtml::_('grid.sort', 'COM_COSTBENEFITPROJECTION_COMPANY_ID', 'a.id', $this->listDirn, $this->listOrder); ?>
2015-12-01 05:06:34 +00:00
</th>
</tr>