2015-08-24 20:22:07 +00:00
|
|
|
<?php
|
|
|
|
/*----------------------------------------------------------------------------------| www.vdm.io |----/
|
|
|
|
Vast Development Method
|
|
|
|
/-------------------------------------------------------------------------------------------------------/
|
|
|
|
|
2015-12-29 19:39:38 +00:00
|
|
|
@version 1.0.5
|
2016-05-02 15:38:37 +00:00
|
|
|
@build 2nd May, 2016
|
2015-12-03 02:17:44 +00:00
|
|
|
@created 5th August, 2015
|
2015-08-24 20:22:07 +00:00
|
|
|
@package Demo
|
|
|
|
@subpackage edit.php
|
|
|
|
@author Llewellyn van der Merwe <https://www.vdm.io/>
|
|
|
|
@copyright Copyright (C) 2015. All Rights Reserved
|
|
|
|
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
____ _____ _____ __ __ __ __ ___ _____ __ __ ____ _____ _ _ ____ _ _ ____
|
|
|
|
(_ _)( _ )( _ )( \/ )( ) /__\ / __)( _ )( \/ )( _ \( _ )( \( )( ___)( \( )(_ _)
|
|
|
|
.-_)( )(_)( )(_)( ) ( )(__ /(__)\ ( (__ )(_)( ) ( )___/ )(_)( ) ( )__) ) ( )(
|
|
|
|
\____) (_____)(_____)(_/\/\_)(____)(__)(__) \___)(_____)(_/\/\_)(__) (_____)(_)\_)(____)(_)\_) (__)
|
|
|
|
|
|
|
|
/------------------------------------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
// 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_demo');
|
|
|
|
?>
|
|
|
|
|
|
|
|
<form action="<?php echo JRoute::_('index.php?option=com_demo&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_DEMO_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'); ?>
|
|
|
|
|
2016-02-20 20:19:24 +00:00
|
|
|
<?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')) : ?>
|
2015-08-24 20:22:07 +00:00
|
|
|
<?php echo JHtml::_('bootstrap.addTab', 'help_documentTab', 'publishing', JText::_('COM_DEMO_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.metadata', $this); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php echo JHtml::_('bootstrap.endTab'); ?>
|
2016-02-20 20:19:24 +00:00
|
|
|
<?php endif; ?>
|
2015-08-24 20:22:07 +00:00
|
|
|
|
|
|
|
<?php if ($this->canDo->get('core.admin')) : ?>
|
|
|
|
<?php echo JHtml::_('bootstrap.addTab', 'help_documentTab', 'permissions', JText::_('COM_DEMO_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>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
2016-02-26 13:57:10 +00:00
|
|
|
// #jform_location listeners for location_vvvvvvx function
|
2015-08-24 20:22:07 +00:00
|
|
|
jQuery('#jform_location').on('keyup',function()
|
|
|
|
{
|
2016-02-26 13:57:10 +00:00
|
|
|
var location_vvvvvvx = jQuery("#jform_location input[type='radio']:checked").val();
|
|
|
|
vvvvvvx(location_vvvvvvx);
|
2015-08-24 20:22:07 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_location',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2016-02-26 13:57:10 +00:00
|
|
|
var location_vvvvvvx = jQuery("#jform_location input[type='radio']:checked").val();
|
|
|
|
vvvvvvx(location_vvvvvvx);
|
2015-08-24 20:22:07 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-02-26 13:57:10 +00:00
|
|
|
// #jform_location listeners for location_vvvvvvy function
|
2015-08-24 20:22:07 +00:00
|
|
|
jQuery('#jform_location').on('keyup',function()
|
|
|
|
{
|
2016-02-26 13:57:10 +00:00
|
|
|
var location_vvvvvvy = jQuery("#jform_location input[type='radio']:checked").val();
|
|
|
|
vvvvvvy(location_vvvvvvy);
|
2015-08-24 20:22:07 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_location',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2016-02-26 13:57:10 +00:00
|
|
|
var location_vvvvvvy = jQuery("#jform_location input[type='radio']:checked").val();
|
|
|
|
vvvvvvy(location_vvvvvvy);
|
2015-08-24 20:22:07 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-02-26 13:57:10 +00:00
|
|
|
// #jform_type listeners for type_vvvvvvz function
|
2015-08-24 20:22:07 +00:00
|
|
|
jQuery('#jform_type').on('keyup',function()
|
|
|
|
{
|
2016-02-26 13:57:10 +00:00
|
|
|
var type_vvvvvvz = jQuery("#jform_type").val();
|
|
|
|
vvvvvvz(type_vvvvvvz);
|
2015-08-24 20:22:07 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_type',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2016-02-26 13:57:10 +00:00
|
|
|
var type_vvvvvvz = jQuery("#jform_type").val();
|
|
|
|
vvvvvvz(type_vvvvvvz);
|
2015-08-24 20:22:07 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-02-26 13:57:10 +00:00
|
|
|
// #jform_type listeners for type_vvvvvwa function
|
2015-08-24 20:22:07 +00:00
|
|
|
jQuery('#jform_type').on('keyup',function()
|
|
|
|
{
|
2016-02-26 13:57:10 +00:00
|
|
|
var type_vvvvvwa = jQuery("#jform_type").val();
|
|
|
|
vvvvvwa(type_vvvvvwa);
|
2015-08-24 20:22:07 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_type',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2016-02-26 13:57:10 +00:00
|
|
|
var type_vvvvvwa = jQuery("#jform_type").val();
|
|
|
|
vvvvvwa(type_vvvvvwa);
|
2015-08-24 20:22:07 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-02-26 13:57:10 +00:00
|
|
|
// #jform_type listeners for type_vvvvvwb function
|
2015-08-24 20:22:07 +00:00
|
|
|
jQuery('#jform_type').on('keyup',function()
|
|
|
|
{
|
2016-02-26 13:57:10 +00:00
|
|
|
var type_vvvvvwb = jQuery("#jform_type").val();
|
|
|
|
vvvvvwb(type_vvvvvwb);
|
2015-08-24 20:22:07 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_type',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2016-02-26 13:57:10 +00:00
|
|
|
var type_vvvvvwb = jQuery("#jform_type").val();
|
|
|
|
vvvvvwb(type_vvvvvwb);
|
2015-08-24 20:22:07 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-02-26 13:57:10 +00:00
|
|
|
// #jform_target listeners for target_vvvvvwc function
|
2015-08-24 20:22:07 +00:00
|
|
|
jQuery('#jform_target').on('keyup',function()
|
|
|
|
{
|
2016-02-26 13:57:10 +00:00
|
|
|
var target_vvvvvwc = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvvwc(target_vvvvvwc);
|
2015-08-24 20:22:07 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2016-02-26 13:57:10 +00:00
|
|
|
var target_vvvvvwc = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvvwc(target_vvvvvwc);
|
2015-08-24 20:22:07 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|