67 lines
2.9 KiB
PHP
67 lines
2.9 KiB
PHP
<?php
|
|
/*----------------------------------------------------------------------------------| www.giz.de |----/
|
|
Deutsche Gesellschaft für International Zusammenarbeit (GIZ) Gmb
|
|
/-------------------------------------------------------------------------------------------------------/
|
|
|
|
@version 3.0.8
|
|
@build 2nd December, 2015
|
|
@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');
|
|
|
|
?>
|
|
<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_COSTBENEFITPROJECTION_CURRENCY_NAME_LABEL', 'name', $this->listDirn, $this->listOrder); ?>
|
|
</th>
|
|
<th class="nowrap hidden-phone" >
|
|
<?php echo JHtml::_('grid.sort', 'COM_COSTBENEFITPROJECTION_CURRENCY_CODETHREE_LABEL', 'codethree', $this->listDirn, $this->listOrder); ?>
|
|
</th>
|
|
<th class="nowrap hidden-phone" >
|
|
<?php echo JHtml::_('grid.sort', 'COM_COSTBENEFITPROJECTION_CURRENCY_NUMERICCODE_LABEL', 'numericcode', $this->listDirn, $this->listOrder); ?>
|
|
</th>
|
|
<th class="nowrap hidden-phone" >
|
|
<?php echo JText::_('COM_COSTBENEFITPROJECTION_CURRENCY_SYMBOL_LABEL'); ?>
|
|
</th>
|
|
<th class="nowrap hidden-phone" >
|
|
<?php echo JHtml::_('grid.sort', 'COM_COSTBENEFITPROJECTION_CURRENCY_DECIMALPLACE_LABEL', 'decimalplace', $this->listDirn, $this->listOrder); ?>
|
|
</th>
|
|
<?php if ($this->canState): ?>
|
|
<th width="10" class="nowrap center" >
|
|
<?php echo JHtml::_('grid.sort', 'COM_COSTBENEFITPROJECTION_CURRENCY_STATUS', 'published', $this->listDirn, $this->listOrder); ?>
|
|
</th>
|
|
<?php else: ?>
|
|
<th width="10" class="nowrap center" >
|
|
<?php echo JText::_('COM_COSTBENEFITPROJECTION_CURRENCY_STATUS'); ?>
|
|
</th>
|
|
<?php endif; ?>
|
|
<th width="5" class="nowrap center hidden-phone" >
|
|
<?php echo JHtml::_('grid.sort', 'COM_COSTBENEFITPROJECTION_CURRENCY_ID', 'id', $this->listDirn, $this->listOrder); ?>
|
|
</th>
|
|
</tr>
|