213 lines
7.2 KiB
PHP
213 lines
7.2 KiB
PHP
<?php
|
|
/*----------------------------------------------------------------------------------| www.giz.de |----/
|
|
Deutsche Gesellschaft für International Zusammenarbeit (GIZ) Gmb
|
|
/-------------------------------------------------------------------------------------------------------/
|
|
|
|
@version 3.4.2
|
|
@build 29th June, 2016
|
|
@created 15th June, 2012
|
|
@package Cost Benefit Projection
|
|
@subpackage edit.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');
|
|
|
|
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');
|
|
JHtml::_('behavior.tooltip');
|
|
JHtml::_('behavior.formvalidation');
|
|
JHtml::_('formbehavior.chosen', 'select');
|
|
JHtml::_('behavior.keepalive');
|
|
$componentParams = JComponentHelper::getParams('com_costbenefitprojection');
|
|
?>
|
|
<script type="text/javascript">
|
|
// waiting spinner
|
|
var outerDiv = jQuery('body');
|
|
jQuery('<div id="loading"></div>')
|
|
.css("background", "rgba(255, 255, 255, .8) url('components/com_costbenefitprojection/assets/images/import.gif') 50% 15% no-repeat")
|
|
.css("top", outerDiv.position().top - jQuery(window).scrollTop())
|
|
.css("left", outerDiv.position().left - jQuery(window).scrollLeft())
|
|
.css("width", outerDiv.width())
|
|
.css("height", outerDiv.height())
|
|
.css("position", "fixed")
|
|
.css("opacity", "0.80")
|
|
.css("-ms-filter", "progid:DXImageTransform.Microsoft.Alpha(Opacity = 80)")
|
|
.css("filter", "alpha(opacity = 80)")
|
|
.css("display", "none")
|
|
.appendTo(outerDiv);
|
|
jQuery('#loading').show();
|
|
// when page is ready remove and show
|
|
jQuery(window).load(function() {
|
|
jQuery('#costbenefitprojection_loader').fadeIn('fast');
|
|
jQuery('#loading').hide();
|
|
});
|
|
</script>
|
|
<div id="costbenefitprojection_loader" style="display: none;">
|
|
<form action="<?php echo JRoute::_('index.php?option=com_costbenefitprojection&layout=edit&id='.(int) $this->item->id.$this->referral); ?>" method="post" name="adminForm" id="adminForm" class="form-validate" enctype="multipart/form-data">
|
|
|
|
<?php echo JLayoutHelper::render('help_document.details_above', $this); ?><div class="form-horizontal">
|
|
|
|
<?php echo JHtml::_('bootstrap.startTabSet', 'help_documentTab', array('active' => 'details')); ?>
|
|
|
|
<?php echo JHtml::_('bootstrap.addTab', 'help_documentTab', 'details', JText::_('COM_COSTBENEFITPROJECTION_HELP_DOCUMENT_DETAILS', true)); ?>
|
|
<div class="row-fluid form-horizontal-desktop">
|
|
<div class="span6">
|
|
<?php echo JLayoutHelper::render('help_document.details_left', $this); ?>
|
|
</div>
|
|
<div class="span6">
|
|
<?php echo JLayoutHelper::render('help_document.details_right', $this); ?>
|
|
</div>
|
|
</div>
|
|
<div class="row-fluid form-horizontal-desktop">
|
|
<div class="span12">
|
|
<?php echo JLayoutHelper::render('help_document.details_fullwidth', $this); ?>
|
|
</div>
|
|
</div>
|
|
<?php echo JHtml::_('bootstrap.endTab'); ?>
|
|
|
|
<?php if ($this->canDo->get('help_document.delete') || $this->canDo->get('core.edit.created_by') || $this->canDo->get('help_document.edit.state') || $this->canDo->get('core.edit.created')) : ?>
|
|
<?php echo JHtml::_('bootstrap.addTab', 'help_documentTab', 'publishing', JText::_('COM_COSTBENEFITPROJECTION_HELP_DOCUMENT_PUBLISHING', true)); ?>
|
|
<div class="row-fluid form-horizontal-desktop">
|
|
<div class="span6">
|
|
<?php echo JLayoutHelper::render('help_document.publishing', $this); ?>
|
|
</div>
|
|
<div class="span6">
|
|
<?php echo JLayoutHelper::render('help_document.publlshing', $this); ?>
|
|
</div>
|
|
</div>
|
|
<?php echo JHtml::_('bootstrap.endTab'); ?>
|
|
<?php endif; ?>
|
|
|
|
<?php if ($this->canDo->get('core.admin')) : ?>
|
|
<?php echo JHtml::_('bootstrap.addTab', 'help_documentTab', 'permissions', JText::_('COM_COSTBENEFITPROJECTION_HELP_DOCUMENT_PERMISSION', true)); ?>
|
|
<div class="row-fluid form-horizontal-desktop">
|
|
<div class="span12">
|
|
<fieldset class="adminform">
|
|
<div class="adminformlist">
|
|
<?php foreach ($this->form->getFieldset('accesscontrol') as $field): ?>
|
|
<div>
|
|
<?php echo $field->label; echo $field->input;?>
|
|
</div>
|
|
<div class="clearfix"></div>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
</fieldset>
|
|
</div>
|
|
</div>
|
|
<?php echo JHtml::_('bootstrap.endTab'); ?>
|
|
<?php endif; ?>
|
|
|
|
<?php echo JHtml::_('bootstrap.endTabSet'); ?>
|
|
|
|
<div>
|
|
<input type="hidden" name="task" value="help_document.edit" />
|
|
<?php echo JHtml::_('form.token'); ?>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="clearfix"></div>
|
|
<?php echo JLayoutHelper::render('help_document.details_under', $this); ?>
|
|
</form>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
|
|
// #jform_location listeners for location_vvvvvwb function
|
|
jQuery('#jform_location').on('keyup',function()
|
|
{
|
|
var location_vvvvvwb = jQuery("#jform_location input[type='radio']:checked").val();
|
|
vvvvvwb(location_vvvvvwb);
|
|
|
|
});
|
|
jQuery('#adminForm').on('change', '#jform_location',function (e)
|
|
{
|
|
e.preventDefault();
|
|
var location_vvvvvwb = jQuery("#jform_location input[type='radio']:checked").val();
|
|
vvvvvwb(location_vvvvvwb);
|
|
|
|
});
|
|
|
|
// #jform_location listeners for location_vvvvvwc function
|
|
jQuery('#jform_location').on('keyup',function()
|
|
{
|
|
var location_vvvvvwc = jQuery("#jform_location input[type='radio']:checked").val();
|
|
vvvvvwc(location_vvvvvwc);
|
|
|
|
});
|
|
jQuery('#adminForm').on('change', '#jform_location',function (e)
|
|
{
|
|
e.preventDefault();
|
|
var location_vvvvvwc = jQuery("#jform_location input[type='radio']:checked").val();
|
|
vvvvvwc(location_vvvvvwc);
|
|
|
|
});
|
|
|
|
// #jform_type listeners for type_vvvvvwd function
|
|
jQuery('#jform_type').on('keyup',function()
|
|
{
|
|
var type_vvvvvwd = jQuery("#jform_type").val();
|
|
vvvvvwd(type_vvvvvwd);
|
|
|
|
});
|
|
jQuery('#adminForm').on('change', '#jform_type',function (e)
|
|
{
|
|
e.preventDefault();
|
|
var type_vvvvvwd = jQuery("#jform_type").val();
|
|
vvvvvwd(type_vvvvvwd);
|
|
|
|
});
|
|
|
|
// #jform_type listeners for type_vvvvvwe function
|
|
jQuery('#jform_type').on('keyup',function()
|
|
{
|
|
var type_vvvvvwe = jQuery("#jform_type").val();
|
|
vvvvvwe(type_vvvvvwe);
|
|
|
|
});
|
|
jQuery('#adminForm').on('change', '#jform_type',function (e)
|
|
{
|
|
e.preventDefault();
|
|
var type_vvvvvwe = jQuery("#jform_type").val();
|
|
vvvvvwe(type_vvvvvwe);
|
|
|
|
});
|
|
|
|
// #jform_type listeners for type_vvvvvwf function
|
|
jQuery('#jform_type').on('keyup',function()
|
|
{
|
|
var type_vvvvvwf = jQuery("#jform_type").val();
|
|
vvvvvwf(type_vvvvvwf);
|
|
|
|
});
|
|
jQuery('#adminForm').on('change', '#jform_type',function (e)
|
|
{
|
|
e.preventDefault();
|
|
var type_vvvvvwf = jQuery("#jform_type").val();
|
|
vvvvvwf(type_vvvvvwf);
|
|
|
|
});
|
|
|
|
// #jform_target listeners for target_vvvvvwg function
|
|
jQuery('#jform_target').on('keyup',function()
|
|
{
|
|
var target_vvvvvwg = jQuery("#jform_target input[type='radio']:checked").val();
|
|
vvvvvwg(target_vvvvvwg);
|
|
|
|
});
|
|
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
|
{
|
|
e.preventDefault();
|
|
var target_vvvvvwg = jQuery("#jform_target input[type='radio']:checked").val();
|
|
vvvvvwg(target_vvvvvwg);
|
|
|
|
});
|
|
|
|
</script>
|