79 lines
3.9 KiB
PHP
79 lines
3.9 KiB
PHP
<?php
|
|
/*----------------------------------------------------------------------------------| www.giz.de |----/
|
|
Deutsche Gesellschaft für International Zusammenarbeit (GIZ) Gmb
|
|
/-------------------------------------------------------------------------------------------------------/
|
|
|
|
@version 3.0.9
|
|
@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_SCALING_FACTOR_CAUSERISK_LABEL', 'causerisk_name', $this->listDirn, $this->listOrder); ?>
|
|
</th>
|
|
<th class="nowrap" >
|
|
<?php echo JHtml::_('grid.sort', 'COM_COSTBENEFITPROJECTION_SCALING_FACTOR_COMPANY_LABEL', 'company_name', $this->listDirn, $this->listOrder); ?>
|
|
</th>
|
|
<th class="nowrap hidden-phone" >
|
|
<?php echo JText::_('COM_COSTBENEFITPROJECTION_SCALING_FACTOR_REFERENCE_LABEL'); ?>
|
|
</th>
|
|
<th class="nowrap hidden-phone" >
|
|
<?php echo JHtml::_('grid.sort', 'COM_COSTBENEFITPROJECTION_SCALING_FACTOR_YLD_SCALING_FACTOR_MALES_LABEL', 'yld_scaling_factor_males', $this->listDirn, $this->listOrder); ?>
|
|
</th>
|
|
<th class="nowrap hidden-phone" >
|
|
<?php echo JHtml::_('grid.sort', 'COM_COSTBENEFITPROJECTION_SCALING_FACTOR_YLD_SCALING_FACTOR_FEMALES_LABEL', 'yld_scaling_factor_females', $this->listDirn, $this->listOrder); ?>
|
|
</th>
|
|
<th class="nowrap hidden-phone" >
|
|
<?php echo JHtml::_('grid.sort', 'COM_COSTBENEFITPROJECTION_SCALING_FACTOR_MORTALITY_SCALING_FACTOR_MALES_LABEL', 'mortality_scaling_factor_males', $this->listDirn, $this->listOrder); ?>
|
|
</th>
|
|
<th class="nowrap hidden-phone" >
|
|
<?php echo JHtml::_('grid.sort', 'COM_COSTBENEFITPROJECTION_SCALING_FACTOR_MORTALITY_SCALING_FACTOR_FEMALES_LABEL', 'mortality_scaling_factor_females', $this->listDirn, $this->listOrder); ?>
|
|
</th>
|
|
<th class="nowrap hidden-phone" >
|
|
<?php echo JHtml::_('grid.sort', 'COM_COSTBENEFITPROJECTION_SCALING_FACTOR_PRESENTEEISM_SCALING_FACTOR_MALES_LABEL', 'presenteeism_scaling_factor_males', $this->listDirn, $this->listOrder); ?>
|
|
</th>
|
|
<th class="nowrap hidden-phone" >
|
|
<?php echo JHtml::_('grid.sort', 'COM_COSTBENEFITPROJECTION_SCALING_FACTOR_PRESENTEEISM_SCALING_FACTOR_FEMALES_LABEL', 'presenteeism_scaling_factor_females', $this->listDirn, $this->listOrder); ?>
|
|
</th>
|
|
<?php if ($this->canState): ?>
|
|
<th width="10" class="nowrap center" >
|
|
<?php echo JHtml::_('grid.sort', 'COM_COSTBENEFITPROJECTION_SCALING_FACTOR_STATUS', 'published', $this->listDirn, $this->listOrder); ?>
|
|
</th>
|
|
<?php else: ?>
|
|
<th width="10" class="nowrap center" >
|
|
<?php echo JText::_('COM_COSTBENEFITPROJECTION_SCALING_FACTOR_STATUS'); ?>
|
|
</th>
|
|
<?php endif; ?>
|
|
<th width="5" class="nowrap center hidden-phone" >
|
|
<?php echo JHtml::_('grid.sort', 'COM_COSTBENEFITPROJECTION_SCALING_FACTOR_ID', 'id', $this->listDirn, $this->listOrder); ?>
|
|
</th>
|
|
</tr>
|