2016-01-30 20:28:43 +00:00
|
|
|
<?php
|
2021-03-05 03:08:47 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
|
|
|
* @author Llewellyn van der Merwe <http://www.joomlacomponentbuilder.com>
|
2021-12-21 14:44:50 +00:00
|
|
|
* @gitea Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
|
2021-03-05 03:08:47 +00:00
|
|
|
* @github Joomla Component Builder <https://github.com/vdm-io/Joomla-Component-Builder>
|
|
|
|
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
|
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
2020-11-29 00:00:20 +00:00
|
|
|
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');
|
2021-10-19 01:30:46 +00:00
|
|
|
JHtml::_('behavior.formvalidator');
|
2020-11-29 00:00:20 +00:00
|
|
|
JHtml::_('formbehavior.chosen', 'select');
|
2021-03-05 03:08:47 +00:00
|
|
|
JHtml::_('behavior.keepalive');
|
|
|
|
$componentParams = $this->params; // will be removed just use $this->params instead
|
|
|
|
?>
|
2016-05-31 05:36:31 +00:00
|
|
|
<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_componentbuilder/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('#componentbuilder_loader').fadeIn('fast');
|
|
|
|
jQuery('#loading').hide();
|
|
|
|
});
|
|
|
|
</script>
|
2021-03-05 03:08:47 +00:00
|
|
|
<div id="componentbuilder_loader" style="display: none;">
|
|
|
|
<form action="<?php echo JRoute::_('index.php?option=com_componentbuilder&layout=edit&id='. (int) $this->item->id . $this->referral); ?>" method="post" name="adminForm" id="adminForm" class="form-validate" enctype="multipart/form-data">
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2017-04-26 08:55:02 +00:00
|
|
|
<?php echo JLayoutHelper::render('help_document.details_above', $this); ?>
|
|
|
|
<div class="form-horizontal">
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
<?php echo JHtml::_('bootstrap.startTabSet', 'help_documentTab', array('active' => 'details')); ?>
|
|
|
|
|
|
|
|
<?php echo JHtml::_('bootstrap.addTab', 'help_documentTab', 'details', JText::_('COM_COMPONENTBUILDER_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'); ?>
|
|
|
|
|
2018-08-23 21:51:09 +00:00
|
|
|
<?php $this->ignore_fieldsets = array('details','metadata','vdmmetadata','accesscontrol'); ?>
|
|
|
|
<?php $this->tab_name = 'help_documentTab'; ?>
|
|
|
|
<?php echo JLayoutHelper::render('joomla.edit.params', $this); ?>
|
|
|
|
|
2020-06-25 19:22:30 +00:00
|
|
|
<?php if ($this->canDo->get('core.edit.created_by') || $this->canDo->get('core.edit.created') || $this->canDo->get('help_document.edit.state') || ($this->canDo->get('help_document.delete') && $this->canDo->get('help_document.edit.state'))) : ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
<?php echo JHtml::_('bootstrap.addTab', 'help_documentTab', 'publishing', JText::_('COM_COMPONENTBUILDER_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'); ?>
|
2016-02-15 08:37:21 +00:00
|
|
|
<?php endif; ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
<?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>
|
2021-03-05 03:08:47 +00:00
|
|
|
<?php echo JLayoutHelper::render('help_document.details_under', $this); ?>
|
|
|
|
</form>
|
2016-05-31 05:11:07 +00:00
|
|
|
</div>
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
2020-07-07 15:13:04 +00:00
|
|
|
// #jform_location listeners for location_vvvvwej function
|
2019-11-09 12:49:20 +00:00
|
|
|
jQuery('#jform_location').on('keyup',function()
|
2019-06-12 20:06:19 +00:00
|
|
|
{
|
2020-07-07 15:13:04 +00:00
|
|
|
var location_vvvvwej = jQuery("#jform_location input[type='radio']:checked").val();
|
|
|
|
vvvvwej(location_vvvvwej);
|
2019-06-12 20:06:19 +00:00
|
|
|
|
|
|
|
});
|
2019-11-09 12:49:20 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_location',function (e)
|
2019-06-12 20:06:19 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2020-07-07 15:13:04 +00:00
|
|
|
var location_vvvvwej = jQuery("#jform_location input[type='radio']:checked").val();
|
|
|
|
vvvvwej(location_vvvvwej);
|
2019-06-12 20:06:19 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
// #jform_location listeners for location_vvvvwek function
|
|
|
|
jQuery('#jform_location').on('keyup',function()
|
2019-06-12 20:36:05 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
var location_vvvvwek = jQuery("#jform_location input[type='radio']:checked").val();
|
|
|
|
vvvvwek(location_vvvvwek);
|
2019-06-12 20:36:05 +00:00
|
|
|
|
|
|
|
});
|
2022-07-09 15:16:21 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_location',function (e)
|
2019-06-12 20:36:05 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2022-07-09 15:16:21 +00:00
|
|
|
var location_vvvvwek = jQuery("#jform_location input[type='radio']:checked").val();
|
|
|
|
vvvvwek(location_vvvvwek);
|
2019-06-12 20:36:05 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2020-07-07 15:13:04 +00:00
|
|
|
// #jform_type listeners for type_vvvvwel function
|
2019-08-08 15:35:58 +00:00
|
|
|
jQuery('#jform_type').on('keyup',function()
|
|
|
|
{
|
2020-07-07 15:13:04 +00:00
|
|
|
var type_vvvvwel = jQuery("#jform_type").val();
|
|
|
|
vvvvwel(type_vvvvwel);
|
2019-08-08 15:35:58 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_type',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2020-07-07 15:13:04 +00:00
|
|
|
var type_vvvvwel = jQuery("#jform_type").val();
|
|
|
|
vvvvwel(type_vvvvwel);
|
2019-08-08 15:35:58 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2020-07-07 15:13:04 +00:00
|
|
|
// #jform_type listeners for type_vvvvwem function
|
2019-11-09 12:49:20 +00:00
|
|
|
jQuery('#jform_type').on('keyup',function()
|
|
|
|
{
|
2020-07-07 15:13:04 +00:00
|
|
|
var type_vvvvwem = jQuery("#jform_type").val();
|
|
|
|
vvvvwem(type_vvvvwem);
|
2019-11-09 12:49:20 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_type',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2020-07-07 15:13:04 +00:00
|
|
|
var type_vvvvwem = jQuery("#jform_type").val();
|
|
|
|
vvvvwem(type_vvvvwem);
|
2019-11-09 12:49:20 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
// #jform_type listeners for type_vvvvwen function
|
|
|
|
jQuery('#jform_type').on('keyup',function()
|
|
|
|
{
|
|
|
|
var type_vvvvwen = jQuery("#jform_type").val();
|
|
|
|
vvvvwen(type_vvvvwen);
|
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_type',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
|
|
|
var type_vvvvwen = jQuery("#jform_type").val();
|
|
|
|
vvvvwen(type_vvvvwen);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
// #jform_target listeners for target_vvvvweo function
|
2016-01-30 20:28:43 +00:00
|
|
|
jQuery('#jform_target').on('keyup',function()
|
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
var target_vvvvweo = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvweo(target_vvvvweo);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2022-07-09 15:16:21 +00:00
|
|
|
var target_vvvvweo = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvweo(target_vvvvweo);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2021-03-05 03:08:47 +00:00
|
|
|
</script>
|