114 lines
4.1 KiB
PHP
114 lines
4.1 KiB
PHP
<?php
|
|
/*----------------------------------------------------------------------------------| www.giz.de |----/
|
|
Deutsche Gesellschaft für International Zusammenarbeit (GIZ) Gmb
|
|
/-------------------------------------------------------------------------------------------------------/
|
|
|
|
@version 3.3.0
|
|
@build 14th January, 2016
|
|
@created 15th June, 2012
|
|
@package Cost Benefit Projection
|
|
@subpackage default_body.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');
|
|
|
|
$edit = "index.php?option=com_costbenefitprojection&view=currencies&task=currency.edit";
|
|
|
|
?>
|
|
<?php foreach ($this->items as $i => $item): ?>
|
|
<?php
|
|
$canCheckin = $this->user->authorise('core.manage', 'com_checkin') || $item->checked_out == $this->user->id || $item->checked_out == 0;
|
|
$userChkOut = JFactory::getUser($item->checked_out);
|
|
$canDo = CostbenefitprojectionHelper::getActions('currency',$item,'currencies');
|
|
?>
|
|
<tr class="row<?php echo $i % 2; ?>">
|
|
<td class="order nowrap center hidden-phone">
|
|
<?php if ($canDo->get('currency.edit.state')): ?>
|
|
<?php
|
|
if ($this->saveOrder)
|
|
{
|
|
$iconClass = ' inactive';
|
|
}
|
|
else
|
|
{
|
|
$iconClass = ' inactive tip-top" hasTooltip" title="' . JHtml::tooltipText('JORDERINGDISABLED');
|
|
}
|
|
?>
|
|
<span class="sortable-handler<?php echo $iconClass; ?>">
|
|
<i class="icon-menu"></i>
|
|
</span>
|
|
<?php if ($this->saveOrder) : ?>
|
|
<input type="text" style="display:none" name="order[]" size="5"
|
|
value="<?php echo $item->ordering; ?>" class="width-20 text-area-order " />
|
|
<?php endif; ?>
|
|
<?php else: ?>
|
|
⋮
|
|
<?php endif; ?>
|
|
</td>
|
|
<td class="nowrap center">
|
|
<?php if ($canDo->get('currency.edit')): ?>
|
|
<?php if ($item->checked_out) : ?>
|
|
<?php if ($canCheckin) : ?>
|
|
<?php echo JHtml::_('grid.id', $i, $item->id); ?>
|
|
<?php else: ?>
|
|
□
|
|
<?php endif; ?>
|
|
<?php else: ?>
|
|
<?php echo JHtml::_('grid.id', $i, $item->id); ?>
|
|
<?php endif; ?>
|
|
<?php else: ?>
|
|
□
|
|
<?php endif; ?>
|
|
</td>
|
|
<td class="nowrap">
|
|
<?php if ($canDo->get('currency.edit')): ?>
|
|
<div class="name">
|
|
<a href="<?php echo $edit; ?>&id=<?php echo $item->id; ?>"><?php echo $this->escape($item->name); ?></a>
|
|
<?php if ($item->checked_out): ?>
|
|
<?php echo JHtml::_('jgrid.checkedout', $i, $userChkOut->name, $item->checked_out_time, 'currencies.', $canCheckin); ?>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php else: ?>
|
|
<div class="name"><?php echo $this->escape($item->name); ?></div>
|
|
<?php endif; ?>
|
|
</td>
|
|
<td class="hidden-phone">
|
|
<?php echo $this->escape($item->codethree); ?>
|
|
</td>
|
|
<td class="hidden-phone">
|
|
<?php echo $this->escape($item->numericcode); ?>
|
|
</td>
|
|
<td class="hidden-phone">
|
|
<?php echo $this->escape($item->symbol); ?>
|
|
</td>
|
|
<td class="hidden-phone">
|
|
<?php echo $this->escape($item->decimalplace); ?>
|
|
</td>
|
|
<td class="center">
|
|
<?php if ($canDo->get('currency.edit.state')) : ?>
|
|
<?php if ($item->checked_out) : ?>
|
|
<?php if ($canCheckin) : ?>
|
|
<?php echo JHtml::_('jgrid.published', $item->published, $i, 'currencies.', true, 'cb'); ?>
|
|
<?php else: ?>
|
|
<?php echo JHtml::_('jgrid.published', $item->published, $i, 'currencies.', false, 'cb'); ?>
|
|
<?php endif; ?>
|
|
<?php else: ?>
|
|
<?php echo JHtml::_('jgrid.published', $item->published, $i, 'currencies.', true, 'cb'); ?>
|
|
<?php endif; ?>
|
|
<?php else: ?>
|
|
<?php echo JHtml::_('jgrid.published', $item->published, $i, 'currencies.', false, 'cb'); ?>
|
|
<?php endif; ?>
|
|
</td>
|
|
<td class="nowrap center hidden-phone">
|
|
<?php echo $item->id; ?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|