2017-11-11 22:18:13 +00:00
|
|
|
<?php
|
2021-03-05 03:08:47 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
2022-07-09 15:45:08 +00:00
|
|
|
* @author Llewellyn van der Merwe <https://dev.vdm.io>
|
|
|
|
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
|
2021-03-05 03:08:47 +00:00
|
|
|
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
|
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
use Joomla\CMS\Factory;
|
|
|
|
use Joomla\CMS\Language\Text;
|
|
|
|
use Joomla\CMS\HTML\HTMLHelper as Html;
|
|
|
|
use Joomla\CMS\Layout\LayoutHelper;
|
|
|
|
use Joomla\CMS\Router\Route;
|
|
|
|
use VDM\Component\Componentbuilder\Administrator\Helper\ComponentbuilderHelper;
|
|
|
|
|
|
|
|
/** @var Joomla\CMS\WebAsset\WebAssetManager $wa */
|
|
|
|
$wa = $this->getDocument()->getWebAssetManager();
|
|
|
|
$wa->useScript('keepalive')->useScript('form.validate');
|
|
|
|
Html::_('bootstrap.tooltip');
|
|
|
|
|
2021-03-05 03:08:47 +00:00
|
|
|
// No direct access to this file
|
2024-03-09 19:52:51 +00:00
|
|
|
defined('_JEXEC') or die;
|
2021-03-05 03:08:47 +00:00
|
|
|
|
|
|
|
?>
|
2017-11-11 22:18:13 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
// waiting spinner
|
2024-03-09 19:52:51 +00:00
|
|
|
var outerDiv = document.querySelector('body');
|
|
|
|
var loadingDiv = document.createElement('div');
|
|
|
|
loadingDiv.id = 'loading';
|
|
|
|
loadingDiv.style.cssText = "background: rgba(255, 255, 255, .8) url('components/com_componentbuilder/assets/images/import.gif') 50% 15% no-repeat; top: " + (outerDiv.getBoundingClientRect().top + window.pageYOffset) + "px; left: " + (outerDiv.getBoundingClientRect().left + window.pageXOffset) + "px; width: " + outerDiv.offsetWidth + "px; height: " + outerDiv.offsetHeight + "px; position: fixed; opacity: 0.80; -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); filter: alpha(opacity=80); display: none;";
|
|
|
|
outerDiv.appendChild(loadingDiv);
|
|
|
|
loadingDiv.style.display = 'block';
|
2017-11-11 22:18:13 +00:00
|
|
|
// when page is ready remove and show
|
2024-03-09 19:52:51 +00:00
|
|
|
window.addEventListener('load', function() {
|
|
|
|
var componentLoader = document.getElementById('componentbuilder_loader');
|
|
|
|
if (componentLoader) componentLoader.style.display = 'block';
|
|
|
|
loadingDiv.style.display = 'none';
|
2017-11-11 22:18:13 +00:00
|
|
|
});
|
|
|
|
</script>
|
2021-03-05 03:08:47 +00:00
|
|
|
<div id="componentbuilder_loader" style="display: none;">
|
2024-03-09 19:52:51 +00:00
|
|
|
<form action="<?php echo Route::_('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">
|
2017-11-11 22:18:13 +00:00
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo LayoutHelper::render('library.behaviour_above', $this); ?>
|
|
|
|
<div class="main-card">
|
2017-11-11 22:18:13 +00:00
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.startTabSet', 'libraryTab', ['active' => 'behaviour', 'recall' => true]); ?>
|
2017-11-11 22:18:13 +00:00
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'libraryTab', 'behaviour', Text::_('COM_COMPONENTBUILDER_LIBRARY_BEHAVIOUR', true)); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-6">
|
|
|
|
<?php echo LayoutHelper::render('library.behaviour_left', $this); ?>
|
2017-12-03 18:09:04 +00:00
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<div class="col-md-6">
|
|
|
|
<?php echo LayoutHelper::render('library.behaviour_right', $this); ?>
|
2017-11-11 22:18:13 +00:00
|
|
|
</div>
|
2017-11-26 00:29:08 +00:00
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<?php echo LayoutHelper::render('library.behaviour_fullwidth', $this); ?>
|
2017-11-26 00:29:08 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2017-11-26 00:29:08 +00:00
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'libraryTab', 'files_folders_urls', Text::_('COM_COMPONENTBUILDER_LIBRARY_FILES_FOLDERS_URLS', true)); ?>
|
|
|
|
<div class="row">
|
2017-11-26 00:29:08 +00:00
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<?php echo LayoutHelper::render('library.files_folders_urls_fullwidth', $this); ?>
|
2017-11-26 00:29:08 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2017-11-26 00:29:08 +00:00
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'libraryTab', 'config', Text::_('COM_COMPONENTBUILDER_LIBRARY_CONFIG', true)); ?>
|
|
|
|
<div class="row">
|
2017-11-26 00:29:08 +00:00
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<?php echo LayoutHelper::render('library.config_fullwidth', $this); ?>
|
2017-11-11 22:18:13 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2017-11-11 22:18:13 +00:00
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'libraryTab', 'linked', Text::_('COM_COMPONENTBUILDER_LIBRARY_LINKED', true)); ?>
|
|
|
|
<div class="row">
|
2018-01-15 15:54:05 +00:00
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<?php echo LayoutHelper::render('library.linked_fullwidth', $this); ?>
|
2018-01-15 15:54:05 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2018-01-15 15:54:05 +00:00
|
|
|
|
2018-08-23 21:51:09 +00:00
|
|
|
<?php $this->ignore_fieldsets = array('details','metadata','vdmmetadata','accesscontrol'); ?>
|
|
|
|
<?php $this->tab_name = 'libraryTab'; ?>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo LayoutHelper::render('joomla.edit.params', $this); ?>
|
2018-08-23 21:51:09 +00:00
|
|
|
|
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('library.edit.state') || ($this->canDo->get('library.delete') && $this->canDo->get('library.edit.state'))) : ?>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'libraryTab', 'publishing', Text::_('COM_COMPONENTBUILDER_LIBRARY_PUBLISHING', true)); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-6">
|
|
|
|
<?php echo LayoutHelper::render('library.publishing', $this); ?>
|
2017-11-11 22:18:13 +00:00
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<div class="col-md-6">
|
|
|
|
<?php echo LayoutHelper::render('library.publlshing', $this); ?>
|
2017-11-11 22:18:13 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2017-11-11 22:18:13 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php if ($this->canDo->get('core.admin')) : ?>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'libraryTab', 'permissions', Text::_('COM_COMPONENTBUILDER_LIBRARY_PERMISSION', true)); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
2017-11-11 22:18:13 +00:00
|
|
|
<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>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2017-11-11 22:18:13 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.endTabSet'); ?>
|
2017-11-11 22:18:13 +00:00
|
|
|
|
|
|
|
<div>
|
|
|
|
<input type="hidden" name="task" value="library.edit" />
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('form.token'); ?>
|
2017-11-11 22:18:13 +00:00
|
|
|
</div>
|
2017-11-26 00:29:08 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="clearfix"></div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo LayoutHelper::render('library.behaviour_under', $this); ?>
|
2021-03-05 03:08:47 +00:00
|
|
|
</form>
|
2017-11-26 00:29:08 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_how listeners for how_vvvvwch function
|
2018-08-14 08:25:46 +00:00
|
|
|
jQuery('#jform_how').on('keyup',function()
|
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwch = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwch = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwch(how_vvvvwch,target_vvvvwch);
|
2018-08-14 08:25:46 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwch = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwch = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwch(how_vvvvwch,target_vvvvwch);
|
2018-08-14 08:25:46 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_target listeners for target_vvvvwch function
|
2019-10-16 20:34:36 +00:00
|
|
|
jQuery('#jform_target').on('keyup',function()
|
2018-08-23 01:37:42 +00:00
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwch = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwch = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwch(how_vvvvwch,target_vvvvwch);
|
2018-08-23 01:37:42 +00:00
|
|
|
|
|
|
|
});
|
2019-10-16 20:34:36 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
2018-08-23 01:37:42 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwch = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwch = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwch(how_vvvvwch,target_vvvvwch);
|
2018-08-23 01:37:42 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_how listeners for how_vvvvwcj function
|
2019-01-29 14:43:27 +00:00
|
|
|
jQuery('#jform_how').on('keyup',function()
|
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwcj = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwcj = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcj(how_vvvvwcj,target_vvvvwcj);
|
2019-01-29 14:43:27 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwcj = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwcj = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcj(how_vvvvwcj,target_vvvvwcj);
|
2019-01-29 14:43:27 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_target listeners for target_vvvvwcj function
|
2019-10-16 20:34:36 +00:00
|
|
|
jQuery('#jform_target').on('keyup',function()
|
2019-05-15 17:39:27 +00:00
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwcj = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwcj = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcj(how_vvvvwcj,target_vvvvwcj);
|
2019-05-15 17:39:27 +00:00
|
|
|
|
|
|
|
});
|
2019-10-16 20:34:36 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
2019-05-15 17:39:27 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwcj = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwcj = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcj(how_vvvvwcj,target_vvvvwcj);
|
2019-05-15 17:39:27 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_how listeners for how_vvvvwcl function
|
2019-06-12 20:06:19 +00:00
|
|
|
jQuery('#jform_how').on('keyup',function()
|
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwcl = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwcl = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcl(how_vvvvwcl,target_vvvvwcl);
|
2019-06-12 20:06:19 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwcl = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwcl = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcl(how_vvvvwcl,target_vvvvwcl);
|
2019-06-12 20:06:19 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_target listeners for target_vvvvwcl function
|
2019-10-16 20:34:36 +00:00
|
|
|
jQuery('#jform_target').on('keyup',function()
|
2019-06-12 20:36:05 +00:00
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwcl = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwcl = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcl(how_vvvvwcl,target_vvvvwcl);
|
2019-06-12 20:36:05 +00:00
|
|
|
|
|
|
|
});
|
2019-10-16 20:34:36 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
2019-06-12 20:36:05 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwcl = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwcl = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcl(how_vvvvwcl,target_vvvvwcl);
|
2019-06-12 20:36:05 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_how listeners for how_vvvvwcn function
|
2019-08-08 15:35:58 +00:00
|
|
|
jQuery('#jform_how').on('keyup',function()
|
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwcn = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwcn = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcn(how_vvvvwcn,target_vvvvwcn);
|
2019-08-08 15:35:58 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwcn = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwcn = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcn(how_vvvvwcn,target_vvvvwcn);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_target listeners for target_vvvvwcn function
|
2019-10-16 20:34:36 +00:00
|
|
|
jQuery('#jform_target').on('keyup',function()
|
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwcn = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwcn = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcn(how_vvvvwcn,target_vvvvwcn);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwcn = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwcn = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcn(how_vvvvwcn,target_vvvvwcn);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_how listeners for how_vvvvwcp function
|
2019-10-16 20:34:36 +00:00
|
|
|
jQuery('#jform_how').on('keyup',function()
|
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwcp = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwcp = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcp(how_vvvvwcp,target_vvvvwcp);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwcp = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwcp = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcp(how_vvvvwcp,target_vvvvwcp);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_target listeners for target_vvvvwcp function
|
2019-10-16 20:34:36 +00:00
|
|
|
jQuery('#jform_target').on('keyup',function()
|
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwcp = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwcp = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcp(how_vvvvwcp,target_vvvvwcp);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwcp = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwcp = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcp(how_vvvvwcp,target_vvvvwcp);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_target listeners for target_vvvvwcq function
|
2019-10-16 20:34:36 +00:00
|
|
|
jQuery('#jform_target').on('keyup',function()
|
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var target_vvvvwcq = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
var how_vvvvwcq = jQuery("#jform_how").val();
|
|
|
|
vvvvwcq(target_vvvvwcq,how_vvvvwcq);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var target_vvvvwcq = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
var how_vvvvwcq = jQuery("#jform_how").val();
|
|
|
|
vvvvwcq(target_vvvvwcq,how_vvvvwcq);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_how listeners for how_vvvvwcq function
|
2019-10-16 20:34:36 +00:00
|
|
|
jQuery('#jform_how').on('keyup',function()
|
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var target_vvvvwcq = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
var how_vvvvwcq = jQuery("#jform_how").val();
|
|
|
|
vvvvwcq(target_vvvvwcq,how_vvvvwcq);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var target_vvvvwcq = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
var how_vvvvwcq = jQuery("#jform_how").val();
|
|
|
|
vvvvwcq(target_vvvvwcq,how_vvvvwcq);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_how listeners for how_vvvvwcr function
|
2019-10-16 20:34:36 +00:00
|
|
|
jQuery('#jform_how').on('keyup',function()
|
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwcr = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcr(how_vvvvwcr,target_vvvvwcr);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwcr = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcr(how_vvvvwcr,target_vvvvwcr);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_target listeners for target_vvvvwcr function
|
2019-10-16 20:34:36 +00:00
|
|
|
jQuery('#jform_target').on('keyup',function()
|
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwcr = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcr(how_vvvvwcr,target_vvvvwcr);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwcr = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcr(how_vvvvwcr,target_vvvvwcr);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_target listeners for target_vvvvwcs function
|
2019-10-16 20:34:36 +00:00
|
|
|
jQuery('#jform_target').on('keyup',function()
|
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var target_vvvvwcs = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
var how_vvvvwcs = jQuery("#jform_how").val();
|
|
|
|
vvvvwcs(target_vvvvwcs,how_vvvvwcs);
|
2019-08-08 15:35:58 +00:00
|
|
|
|
|
|
|
});
|
2019-10-16 20:34:36 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var target_vvvvwcs = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
var how_vvvvwcs = jQuery("#jform_how").val();
|
|
|
|
vvvvwcs(target_vvvvwcs,how_vvvvwcs);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_how listeners for how_vvvvwcs function
|
2019-10-16 20:34:36 +00:00
|
|
|
jQuery('#jform_how').on('keyup',function()
|
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var target_vvvvwcs = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
var how_vvvvwcs = jQuery("#jform_how").val();
|
|
|
|
vvvvwcs(target_vvvvwcs,how_vvvvwcs);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var target_vvvvwcs = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
var how_vvvvwcs = jQuery("#jform_how").val();
|
|
|
|
vvvvwcs(target_vvvvwcs,how_vvvvwcs);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_how listeners for how_vvvvwct function
|
2019-10-16 20:34:36 +00:00
|
|
|
jQuery('#jform_how').on('keyup',function()
|
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwct = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwct(how_vvvvwct,target_vvvvwct);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwct = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwct(how_vvvvwct,target_vvvvwct);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_target listeners for target_vvvvwct function
|
2019-10-16 20:34:36 +00:00
|
|
|
jQuery('#jform_target').on('keyup',function()
|
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwct = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwct(how_vvvvwct,target_vvvvwct);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var how_vvvvwct = jQuery("#jform_how").val();
|
|
|
|
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwct(how_vvvvwct,target_vvvvwct);
|
2019-08-08 15:35:58 +00:00
|
|
|
|
2019-10-16 20:34:36 +00:00
|
|
|
});
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_target listeners for target_vvvvwcu function
|
2019-10-16 20:34:36 +00:00
|
|
|
jQuery('#jform_target').on('keyup',function()
|
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var target_vvvvwcu = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
var how_vvvvwcu = jQuery("#jform_how").val();
|
|
|
|
vvvvwcu(target_vvvvwcu,how_vvvvwcu);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var target_vvvvwcu = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
var how_vvvvwcu = jQuery("#jform_how").val();
|
|
|
|
vvvvwcu(target_vvvvwcu,how_vvvvwcu);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_how listeners for how_vvvvwcu function
|
2019-10-16 20:34:36 +00:00
|
|
|
jQuery('#jform_how').on('keyup',function()
|
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var target_vvvvwcu = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
var how_vvvvwcu = jQuery("#jform_how").val();
|
|
|
|
vvvvwcu(target_vvvvwcu,how_vvvvwcu);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var target_vvvvwcu = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
var how_vvvvwcu = jQuery("#jform_how").val();
|
|
|
|
vvvvwcu(target_vvvvwcu,how_vvvvwcu);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_target listeners for target_vvvvwcv function
|
2019-10-16 20:34:36 +00:00
|
|
|
jQuery('#jform_target').on('keyup',function()
|
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var target_vvvvwcv = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
var type_vvvvwcv = jQuery("#jform_type input[type='radio']:checked").val();
|
|
|
|
vvvvwcv(target_vvvvwcv,type_vvvvwcv);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var target_vvvvwcv = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
var type_vvvvwcv = jQuery("#jform_type input[type='radio']:checked").val();
|
|
|
|
vvvvwcv(target_vvvvwcv,type_vvvvwcv);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_type listeners for type_vvvvwcv function
|
2017-12-03 18:09:04 +00:00
|
|
|
jQuery('#jform_type').on('keyup',function()
|
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var target_vvvvwcv = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
var type_vvvvwcv = jQuery("#jform_type input[type='radio']:checked").val();
|
|
|
|
vvvvwcv(target_vvvvwcv,type_vvvvwcv);
|
2017-12-03 18:09:04 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_type',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var target_vvvvwcv = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
var type_vvvvwcv = jQuery("#jform_type input[type='radio']:checked").val();
|
|
|
|
vvvvwcv(target_vvvvwcv,type_vvvvwcv);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_target listeners for target_vvvvwcx function
|
2019-10-16 20:34:36 +00:00
|
|
|
jQuery('#jform_target').on('keyup',function()
|
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var target_vvvvwcx = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcx(target_vvvvwcx);
|
2019-10-16 20:34:36 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var target_vvvvwcx = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcx(target_vvvvwcx);
|
2017-12-03 18:09:04 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-09 11:54:59 +00:00
|
|
|
// #jform_target listeners for target_vvvvwcy function
|
2019-11-09 12:49:20 +00:00
|
|
|
jQuery('#jform_target').on('keyup',function()
|
|
|
|
{
|
2024-04-09 11:54:59 +00:00
|
|
|
var target_vvvvwcy = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcy(target_vvvvwcy);
|
2019-11-09 12:49:20 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-09 11:54:59 +00:00
|
|
|
var target_vvvvwcy = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcy(target_vvvvwcy);
|
2019-11-09 12:49:20 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2017-11-26 00:29:08 +00:00
|
|
|
|
2018-03-11 02:44:43 +00:00
|
|
|
|
2018-04-13 15:33:04 +00:00
|
|
|
<?php $numberAddconditions = range(0, count( (array) $this->item->addconditions) + 3, 1);?>
|
2017-11-26 00:29:08 +00:00
|
|
|
|
|
|
|
// for the values already set
|
|
|
|
jQuery(document).ready(function(){
|
|
|
|
<?php foreach($numberAddconditions as $fieldNr): ?>
|
|
|
|
jQuery('#adminForm').on('change', '#jform_addconditions__addconditions<?php echo $fieldNr ?>__option_field',function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
getFieldSelectOptions(<?php echo $fieldNr ?>);
|
|
|
|
});
|
|
|
|
<?php endforeach; ?>
|
|
|
|
jQuery(document).on('subform-row-add', function(event, row){
|
|
|
|
var groupName = jQuery(row).data('group');
|
|
|
|
var fieldName = groupName.replace(/([0-9])/g, '');
|
|
|
|
var fieldNr = groupName.replace(/([A-z_])/g, '');
|
|
|
|
if ('addconditions' === fieldName) {
|
|
|
|
jQuery('#adminForm').on('change', '#jform_addconditions__addconditions'+fieldNr+'__option_field',function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
getFieldSelectOptions(fieldNr);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2018-02-27 12:17:38 +00:00
|
|
|
|
2017-11-26 00:29:08 +00:00
|
|
|
<?php
|
2024-03-09 19:52:51 +00:00
|
|
|
$app = Factory::getApplication();
|
2017-11-26 00:29:08 +00:00
|
|
|
?>
|
|
|
|
function JRouter(link) {
|
|
|
|
<?php
|
2020-01-03 01:41:55 +00:00
|
|
|
if ($app->isClient('site'))
|
2017-11-26 00:29:08 +00:00
|
|
|
{
|
2024-03-09 19:52:51 +00:00
|
|
|
echo 'var url = "'. \Joomla\CMS\Uri\Uri::root() . '";';
|
2017-11-26 00:29:08 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
echo 'var url = "";';
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
return url+link;
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
document.addEventListener("DOMContentLoaded", function() {
|
|
|
|
document.querySelectorAll(".loading-dots").forEach(function(loading_dots) {
|
|
|
|
let x = 0;
|
|
|
|
let intervalId = setInterval(function() {
|
|
|
|
if (!loading_dots.classList.contains("loading-dots")) {
|
|
|
|
clearInterval(intervalId);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let dots = ".".repeat(x % 8);
|
|
|
|
loading_dots.textContent = dots;
|
|
|
|
x++;
|
|
|
|
}, 500);
|
|
|
|
});
|
2019-07-08 16:05:54 +00:00
|
|
|
});
|
2021-03-05 03:08:47 +00:00
|
|
|
</script>
|