170 lines
6.4 KiB
PHP
170 lines
6.4 KiB
PHP
<?php
|
|
/*----------------------------------------------------------------------------------| www.giz.de |----/
|
|
Deutsche Gesellschaft für International Zusammenarbeit (GIZ) Gmb
|
|
/-------------------------------------------------------------------------------------------------------/
|
|
|
|
@version 3.5.x
|
|
@build 27th May, 2022
|
|
@created 15th June, 2012
|
|
@package Cost Benefit Projection
|
|
@subpackage scaling_factors_fullwidth.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');
|
|
|
|
// set the defaults
|
|
$items = $displayData->vwcscaling_factors;
|
|
$user = JFactory::getUser();
|
|
$id = $displayData->item->id;
|
|
// set the edit URL
|
|
$edit = "index.php?option=com_costbenefitprojection&view=scaling_factors&task=scaling_factor.edit";
|
|
// set a return value
|
|
$return = ($id) ? "index.php?option=com_costbenefitprojection&view=company&layout=edit&id=" . $id : "";
|
|
// check for a return value
|
|
$jinput = JFactory::getApplication()->input;
|
|
if ($_return = $jinput->get('return', null, 'base64'))
|
|
{
|
|
$return .= "&return=" . $_return;
|
|
}
|
|
// check if return value was set
|
|
if (CostbenefitprojectionHelper::checkString($return))
|
|
{
|
|
// set the referral values
|
|
$ref = ($id) ? "&ref=company&refid=" . $id . "&return=" . urlencode(base64_encode($return)) : "&return=" . urlencode(base64_encode($return));
|
|
}
|
|
else
|
|
{
|
|
$ref = ($id) ? "&ref=company&refid=" . $id : "";
|
|
}
|
|
|
|
?>
|
|
<div class="form-vertical">
|
|
<?php if (CostbenefitprojectionHelper::checkArray($items)): ?>
|
|
<table class="footable table data scaling_factors metro-blue" data-page-size="20" data-filter="#filter_scaling_factors">
|
|
<thead>
|
|
<tr>
|
|
<th data-toggle="true">
|
|
<?php echo JText::_('COM_COSTBENEFITPROJECTION_SCALING_FACTOR_CAUSERISK_LABEL'); ?>
|
|
</th>
|
|
<th data-hide="phone">
|
|
<?php echo JText::_('COM_COSTBENEFITPROJECTION_SCALING_FACTOR_COMPANY_LABEL'); ?>
|
|
</th>
|
|
<th data-hide="phone">
|
|
<?php echo JText::_('COM_COSTBENEFITPROJECTION_SCALING_FACTOR_YLD_SCALING_FACTOR_MALES_LABEL'); ?>
|
|
</th>
|
|
<th data-hide="phone,tablet">
|
|
<?php echo JText::_('COM_COSTBENEFITPROJECTION_SCALING_FACTOR_YLD_SCALING_FACTOR_FEMALES_LABEL'); ?>
|
|
</th>
|
|
<th data-hide="phone,tablet">
|
|
<?php echo JText::_('COM_COSTBENEFITPROJECTION_SCALING_FACTOR_MORTALITY_SCALING_FACTOR_MALES_LABEL'); ?>
|
|
</th>
|
|
<th data-hide="phone,tablet">
|
|
<?php echo JText::_('COM_COSTBENEFITPROJECTION_SCALING_FACTOR_MORTALITY_SCALING_FACTOR_FEMALES_LABEL'); ?>
|
|
</th>
|
|
<th data-hide="all">
|
|
<?php echo JText::_('COM_COSTBENEFITPROJECTION_SCALING_FACTOR_PRESENTEEISM_SCALING_FACTOR_MALES_LABEL'); ?>
|
|
</th>
|
|
<th data-hide="all">
|
|
<?php echo JText::_('COM_COSTBENEFITPROJECTION_SCALING_FACTOR_PRESENTEEISM_SCALING_FACTOR_FEMALES_LABEL'); ?>
|
|
</th>
|
|
<th width="10" data-hide="phone,tablet">
|
|
<?php echo JText::_('COM_COSTBENEFITPROJECTION_SCALING_FACTOR_STATUS'); ?>
|
|
</th>
|
|
<th width="5" data-type="numeric" data-hide="phone,tablet">
|
|
<?php echo JText::_('COM_COSTBENEFITPROJECTION_SCALING_FACTOR_ID'); ?>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($items as $i => $item): ?>
|
|
<?php
|
|
$canCheckin = $user->authorise('core.manage', 'com_checkin') || $item->checked_out == $user->id || $item->checked_out == 0;
|
|
$userChkOut = JFactory::getUser($item->checked_out);
|
|
$canDo = CostbenefitprojectionHelper::getActions('scaling_factor',$item,'scaling_factors');
|
|
?>
|
|
<tr>
|
|
<td>
|
|
<?php if ($canDo->get('scaling_factor.edit')): ?>
|
|
<a href="<?php echo $edit; ?>&id=<?php echo $item->id; ?><?php echo $ref; ?>"><?php echo $displayData->escape($item->causerisk_name); ?></a>
|
|
<?php if ($item->checked_out): ?>
|
|
<?php echo JHtml::_('jgrid.checkedout', $i, $userChkOut->name, $item->checked_out_time, 'scaling_factors.', $canCheckin); ?>
|
|
<?php endif; ?>
|
|
<?php else: ?>
|
|
<?php echo $displayData->escape($item->causerisk_name); ?>
|
|
<?php endif; ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $displayData->escape($item->company_name); ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $displayData->escape($item->yld_scaling_factor_males); ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $displayData->escape($item->yld_scaling_factor_females); ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $displayData->escape($item->mortality_scaling_factor_males); ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $displayData->escape($item->mortality_scaling_factor_females); ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $displayData->escape($item->presenteeism_scaling_factor_males); ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $displayData->escape($item->presenteeism_scaling_factor_females); ?>
|
|
</td>
|
|
<?php if ($item->published == 1): ?>
|
|
<td class="center" data-value="1">
|
|
<span class="status-metro status-published" title="<?php echo JText::_('COM_COSTBENEFITPROJECTION_PUBLISHED'); ?>">
|
|
<?php echo JText::_('COM_COSTBENEFITPROJECTION_PUBLISHED'); ?>
|
|
</span>
|
|
</td>
|
|
<?php elseif ($item->published == 0): ?>
|
|
<td class="center" data-value="2">
|
|
<span class="status-metro status-inactive" title="<?php echo JText::_('COM_COSTBENEFITPROJECTION_INACTIVE'); ?>">
|
|
<?php echo JText::_('COM_COSTBENEFITPROJECTION_INACTIVE'); ?>
|
|
</span>
|
|
</td>
|
|
<?php elseif ($item->published == 2): ?>
|
|
<td class="center" data-value="3">
|
|
<span class="status-metro status-archived" title="<?php echo JText::_('COM_COSTBENEFITPROJECTION_ARCHIVED'); ?>">
|
|
<?php echo JText::_('COM_COSTBENEFITPROJECTION_ARCHIVED'); ?>
|
|
</span>
|
|
</td>
|
|
<?php elseif ($item->published == -2): ?>
|
|
<td class="center" data-value="4">
|
|
<span class="status-metro status-trashed" title="<?php echo JText::_('COM_COSTBENEFITPROJECTION_TRASHED'); ?>">
|
|
<?php echo JText::_('COM_COSTBENEFITPROJECTION_TRASHED'); ?>
|
|
</span>
|
|
</td>
|
|
<?php endif; ?>
|
|
<td class="nowrap center hidden-phone">
|
|
<?php echo $item->id; ?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
<tfoot class="hide-if-no-paging">
|
|
<tr>
|
|
<td colspan="10">
|
|
<div class="pagination pagination-centered"></div>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
<?php else: ?>
|
|
<div class="alert alert-no-items">
|
|
<?php echo JText::_('JGLOBAL_NO_MATCHING_RESULTS'); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|