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
|
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
|
|
|
|
|
|
|
?>
|
2016-05-31 05:36:31 +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';
|
2016-05-31 05:36:31 +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';
|
2016-05-31 05:36:31 +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">
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo LayoutHelper::render('dynamic_get.main_above', $this); ?>
|
|
|
|
<div class="main-card">
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.startTabSet', 'dynamic_getTab', ['active' => 'main', 'recall' => true]); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'dynamic_getTab', 'main', Text::_('COM_COMPONENTBUILDER_DYNAMIC_GET_MAIN', true)); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-6">
|
|
|
|
<?php echo LayoutHelper::render('dynamic_get.main_left', $this); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<div class="col-md-6">
|
|
|
|
<?php echo LayoutHelper::render('dynamic_get.main_right', $this); ?>
|
2018-08-23 01:37:42 +00:00
|
|
|
</div>
|
2016-01-30 20:28:43 +00:00
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<?php echo LayoutHelper::render('dynamic_get.main_fullwidth', $this); ?>
|
2017-10-06 14:53:22 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2017-10-06 14:53:22 +00:00
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'dynamic_getTab', 'tweak', Text::_('COM_COMPONENTBUILDER_DYNAMIC_GET_TWEAK', true)); ?>
|
|
|
|
<div class="row">
|
2017-10-26 16:43:51 +00:00
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<?php echo LayoutHelper::render('dynamic_get.tweak_fullwidth', $this); ?>
|
2017-10-26 16:43:51 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2017-10-26 16:43:51 +00:00
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'dynamic_getTab', 'joint', Text::_('COM_COMPONENTBUILDER_DYNAMIC_GET_JOINT', true)); ?>
|
|
|
|
<div class="row">
|
2017-10-06 14:53:22 +00:00
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<?php echo LayoutHelper::render('dynamic_get.joint_fullwidth', $this); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'dynamic_getTab', 'custom_script', Text::_('COM_COMPONENTBUILDER_DYNAMIC_GET_CUSTOM_SCRIPT', true)); ?>
|
|
|
|
<div class="row">
|
2016-01-30 20:28:43 +00:00
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<?php echo LayoutHelper::render('dynamic_get.custom_script_fullwidth', $this); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'dynamic_getTab', 'abacus', Text::_('COM_COMPONENTBUILDER_DYNAMIC_GET_ABACUS', true)); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<?php echo LayoutHelper::render('dynamic_get.abacus_left', $this); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<?php echo LayoutHelper::render('dynamic_get.abacus_fullwidth', $this); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2018-08-23 21:51:09 +00:00
|
|
|
<?php $this->ignore_fieldsets = array('details','metadata','vdmmetadata','accesscontrol'); ?>
|
|
|
|
<?php $this->tab_name = 'dynamic_getTab'; ?>
|
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('dynamic_get.edit.state') || ($this->canDo->get('dynamic_get.delete') && $this->canDo->get('dynamic_get.edit.state'))) : ?>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'dynamic_getTab', 'publishing', Text::_('COM_COMPONENTBUILDER_DYNAMIC_GET_PUBLISHING', true)); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-6">
|
|
|
|
<?php echo LayoutHelper::render('dynamic_get.publishing', $this); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<div class="col-md-6">
|
|
|
|
<?php echo LayoutHelper::render('dynamic_get.publlshing', $this); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2016-02-15 08:37:21 +00:00
|
|
|
<?php endif; ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
<?php if ($this->canDo->get('core.admin')) : ?>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'dynamic_getTab', 'permissions', Text::_('COM_COMPONENTBUILDER_DYNAMIC_GET_PERMISSION', true)); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
2016-01-30 20:28:43 +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'); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.endTabSet'); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
<div>
|
|
|
|
<input type="hidden" name="task" value="dynamic_get.edit" />
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('form.token'); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="clearfix"></div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo LayoutHelper::render('dynamic_get.main_under', $this); ?>
|
2021-03-05 03:08:47 +00:00
|
|
|
</form>
|
2016-05-31 05:11:07 +00:00
|
|
|
</div>
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_gettype listeners for gettype_vvvvvzg function
|
2016-01-30 20:28:43 +00:00
|
|
|
jQuery('#jform_gettype').on('keyup',function()
|
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var gettype_vvvvvzg = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzg(gettype_vvvvvzg);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var gettype_vvvvvzg = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzg(gettype_vvvvvzg);
|
2024-04-09 11:54:59 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_main_source listeners for main_source_vvvvvzh function
|
2024-04-09 11:54:59 +00:00
|
|
|
jQuery('#jform_main_source').on('keyup',function()
|
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var main_source_vvvvvzh = jQuery("#jform_main_source").val();
|
|
|
|
vvvvvzh(main_source_vvvvvzh);
|
2024-04-09 11:54:59 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_main_source',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var main_source_vvvvvzh = jQuery("#jform_main_source").val();
|
|
|
|
vvvvvzh(main_source_vvvvvzh);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2016-09-11 15:27:04 +00:00
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_main_source listeners for main_source_vvvvvzi function
|
2019-05-15 17:39:27 +00:00
|
|
|
jQuery('#jform_main_source').on('keyup',function()
|
2016-04-22 21:32:02 +00:00
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var main_source_vvvvvzi = jQuery("#jform_main_source").val();
|
|
|
|
vvvvvzi(main_source_vvvvvzi);
|
2016-04-22 21:32:02 +00:00
|
|
|
|
|
|
|
});
|
2019-05-15 17:39:27 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_main_source',function (e)
|
2016-04-22 21:32:02 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var main_source_vvvvvzi = jQuery("#jform_main_source").val();
|
|
|
|
vvvvvzi(main_source_vvvvvzi);
|
2016-04-22 21:32:02 +00:00
|
|
|
|
2016-11-22 17:08:17 +00:00
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_main_source listeners for main_source_vvvvvzj function
|
2019-06-12 20:06:19 +00:00
|
|
|
jQuery('#jform_main_source').on('keyup',function()
|
2016-09-03 21:44:47 +00:00
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var main_source_vvvvvzj = jQuery("#jform_main_source").val();
|
|
|
|
vvvvvzj(main_source_vvvvvzj);
|
2016-09-03 21:44:47 +00:00
|
|
|
|
|
|
|
});
|
2019-06-12 20:06:19 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_main_source',function (e)
|
2016-09-03 21:44:47 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var main_source_vvvvvzj = jQuery("#jform_main_source").val();
|
|
|
|
vvvvvzj(main_source_vvvvvzj);
|
2016-09-03 21:44:47 +00:00
|
|
|
|
2016-11-25 02:56:16 +00:00
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_main_source listeners for main_source_vvvvvzk function
|
2019-06-12 20:36:05 +00:00
|
|
|
jQuery('#jform_main_source').on('keyup',function()
|
2016-09-11 15:27:04 +00:00
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var main_source_vvvvvzk = jQuery("#jform_main_source").val();
|
|
|
|
vvvvvzk(main_source_vvvvvzk);
|
2016-09-11 15:27:04 +00:00
|
|
|
|
|
|
|
});
|
2019-06-12 20:36:05 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_main_source',function (e)
|
2016-09-11 15:27:04 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var main_source_vvvvvzk = jQuery("#jform_main_source").val();
|
|
|
|
vvvvvzk(main_source_vvvvvzk);
|
2016-09-11 15:27:04 +00:00
|
|
|
|
2016-12-30 10:47:19 +00:00
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_main_source listeners for main_source_vvvvvzl function
|
2019-08-08 15:35:58 +00:00
|
|
|
jQuery('#jform_main_source').on('keyup',function()
|
2016-11-22 17:08:17 +00:00
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var main_source_vvvvvzl = jQuery("#jform_main_source").val();
|
|
|
|
vvvvvzl(main_source_vvvvvzl);
|
2016-11-22 17:08:17 +00:00
|
|
|
|
|
|
|
});
|
2019-08-08 15:35:58 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_main_source',function (e)
|
2016-11-22 17:08:17 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var main_source_vvvvvzl = jQuery("#jform_main_source").val();
|
|
|
|
vvvvvzl(main_source_vvvvvzl);
|
2016-11-22 17:08:17 +00:00
|
|
|
|
2017-09-13 00:37:43 +00:00
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_addcalculation listeners for addcalculation_vvvvvzm function
|
2024-04-09 11:54:59 +00:00
|
|
|
jQuery('#jform_addcalculation').on('keyup',function()
|
2016-11-25 02:56:16 +00:00
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var addcalculation_vvvvvzm = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
|
|
|
vvvvvzm(addcalculation_vvvvvzm);
|
2016-11-25 02:56:16 +00:00
|
|
|
|
|
|
|
});
|
2024-04-09 11:54:59 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_addcalculation',function (e)
|
2016-11-25 02:56:16 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var addcalculation_vvvvvzm = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
|
|
|
vvvvvzm(addcalculation_vvvvvzm);
|
2017-10-06 14:53:22 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_addcalculation listeners for addcalculation_vvvvvzn function
|
2019-06-12 20:36:05 +00:00
|
|
|
jQuery('#jform_addcalculation').on('keyup',function()
|
2016-12-30 10:47:19 +00:00
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var addcalculation_vvvvvzn = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzn = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzn(addcalculation_vvvvvzn,gettype_vvvvvzn);
|
2016-12-30 10:47:19 +00:00
|
|
|
|
|
|
|
});
|
2019-06-12 20:36:05 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_addcalculation',function (e)
|
2016-12-30 10:47:19 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var addcalculation_vvvvvzn = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzn = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzn(addcalculation_vvvvvzn,gettype_vvvvvzn);
|
2024-04-09 11:54:59 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_gettype listeners for gettype_vvvvvzn function
|
2024-04-09 11:54:59 +00:00
|
|
|
jQuery('#jform_gettype').on('keyup',function()
|
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var addcalculation_vvvvvzn = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzn = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzn(addcalculation_vvvvvzn,gettype_vvvvvzn);
|
2024-04-09 11:54:59 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var addcalculation_vvvvvzn = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzn = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzn(addcalculation_vvvvvzn,gettype_vvvvvzn);
|
2016-12-30 10:47:19 +00:00
|
|
|
|
2017-10-12 00:50:14 +00:00
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_addcalculation listeners for addcalculation_vvvvvzo function
|
2019-08-08 15:35:58 +00:00
|
|
|
jQuery('#jform_addcalculation').on('keyup',function()
|
2017-09-13 00:37:43 +00:00
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var addcalculation_vvvvvzo = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzo = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzo(addcalculation_vvvvvzo,gettype_vvvvvzo);
|
2017-09-13 00:37:43 +00:00
|
|
|
|
|
|
|
});
|
2019-08-08 15:35:58 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_addcalculation',function (e)
|
2017-09-13 00:37:43 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var addcalculation_vvvvvzo = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzo = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzo(addcalculation_vvvvvzo,gettype_vvvvvzo);
|
2018-07-06 13:46:30 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_gettype listeners for gettype_vvvvvzo function
|
2019-08-08 15:35:58 +00:00
|
|
|
jQuery('#jform_gettype').on('keyup',function()
|
2018-07-06 13:46:30 +00:00
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var addcalculation_vvvvvzo = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzo = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzo(addcalculation_vvvvvzo,gettype_vvvvvzo);
|
2018-07-06 13:46:30 +00:00
|
|
|
|
|
|
|
});
|
2019-08-08 15:35:58 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
2018-07-06 13:46:30 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var addcalculation_vvvvvzo = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzo = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzo(addcalculation_vvvvvzo,gettype_vvvvvzo);
|
2017-09-13 00:37:43 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_main_source listeners for main_source_vvvvvzr function
|
2024-04-09 11:54:59 +00:00
|
|
|
jQuery('#jform_main_source').on('keyup',function()
|
2017-10-06 14:53:22 +00:00
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var main_source_vvvvvzr = jQuery("#jform_main_source").val();
|
|
|
|
vvvvvzr(main_source_vvvvvzr);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2017-10-06 14:53:22 +00:00
|
|
|
});
|
2024-04-09 11:54:59 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_main_source',function (e)
|
2017-10-06 14:53:22 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var main_source_vvvvvzr = jQuery("#jform_main_source").val();
|
|
|
|
vvvvvzr(main_source_vvvvvzr);
|
2018-08-14 08:25:46 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_main_source listeners for main_source_vvvvvzs function
|
2024-04-09 11:54:59 +00:00
|
|
|
jQuery('#jform_main_source').on('keyup',function()
|
2018-08-14 08:25:46 +00:00
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var main_source_vvvvvzs = jQuery("#jform_main_source").val();
|
|
|
|
vvvvvzs(main_source_vvvvvzs);
|
2018-08-14 08:25:46 +00:00
|
|
|
|
|
|
|
});
|
2024-04-09 11:54:59 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_main_source',function (e)
|
2018-08-14 08:25:46 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var main_source_vvvvvzs = jQuery("#jform_main_source").val();
|
|
|
|
vvvvvzs(main_source_vvvvvzs);
|
2017-10-06 14:53:22 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_add_php_before_getitem listeners for add_php_before_getitem_vvvvvzt function
|
2024-04-09 11:54:59 +00:00
|
|
|
jQuery('#jform_add_php_before_getitem').on('keyup',function()
|
2018-01-23 22:05:57 +00:00
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var add_php_before_getitem_vvvvvzt = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzt = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzt(add_php_before_getitem_vvvvvzt,gettype_vvvvvzt);
|
2018-01-23 22:05:57 +00:00
|
|
|
|
|
|
|
});
|
2024-04-09 11:54:59 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_add_php_before_getitem',function (e)
|
2018-01-23 22:05:57 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var add_php_before_getitem_vvvvvzt = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzt = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzt(add_php_before_getitem_vvvvvzt,gettype_vvvvvzt);
|
2019-01-29 14:43:27 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_gettype listeners for gettype_vvvvvzt function
|
2024-04-09 11:54:59 +00:00
|
|
|
jQuery('#jform_gettype').on('keyup',function()
|
2019-01-29 14:43:27 +00:00
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var add_php_before_getitem_vvvvvzt = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzt = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzt(add_php_before_getitem_vvvvvzt,gettype_vvvvvzt);
|
2018-01-23 22:05:57 +00:00
|
|
|
|
|
|
|
});
|
2024-04-09 11:54:59 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
2019-01-29 14:43:27 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var add_php_before_getitem_vvvvvzt = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzt = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzt(add_php_before_getitem_vvvvvzt,gettype_vvvvvzt);
|
2018-01-23 22:05:57 +00:00
|
|
|
|
2019-01-29 14:43:27 +00:00
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_add_php_after_getitem listeners for add_php_after_getitem_vvvvvzu function
|
2024-04-09 11:54:59 +00:00
|
|
|
jQuery('#jform_add_php_after_getitem').on('keyup',function()
|
2018-01-23 22:05:57 +00:00
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var add_php_after_getitem_vvvvvzu = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzu = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzu(add_php_after_getitem_vvvvvzu,gettype_vvvvvzu);
|
2018-01-23 22:05:57 +00:00
|
|
|
|
|
|
|
});
|
2024-04-09 11:54:59 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_add_php_after_getitem',function (e)
|
2018-01-23 22:05:57 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var add_php_after_getitem_vvvvvzu = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzu = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzu(add_php_after_getitem_vvvvvzu,gettype_vvvvvzu);
|
2019-05-15 17:39:27 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_gettype listeners for gettype_vvvvvzu function
|
2019-08-08 15:35:58 +00:00
|
|
|
jQuery('#jform_gettype').on('keyup',function()
|
2019-05-15 17:39:27 +00:00
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var add_php_after_getitem_vvvvvzu = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzu = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzu(add_php_after_getitem_vvvvvzu,gettype_vvvvvzu);
|
2019-05-15 17:39:27 +00:00
|
|
|
|
|
|
|
});
|
2019-08-08 15:35:58 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
2019-05-15 17:39:27 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var add_php_after_getitem_vvvvvzu = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzu = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzu(add_php_after_getitem_vvvvvzu,gettype_vvvvvzu);
|
2018-01-23 22:05:57 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_gettype listeners for gettype_vvvvvzw function
|
2024-04-09 11:54:59 +00:00
|
|
|
jQuery('#jform_gettype').on('keyup',function()
|
2018-05-11 04:08:14 +00:00
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var gettype_vvvvvzw = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzw(gettype_vvvvvzw);
|
2018-05-11 04:08:14 +00:00
|
|
|
|
|
|
|
});
|
2024-04-09 11:54:59 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
2018-05-11 04:08:14 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var gettype_vvvvvzw = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzw(gettype_vvvvvzw);
|
2019-06-12 20:06:19 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_add_php_getlistquery listeners for add_php_getlistquery_vvvvvzx function
|
2024-04-09 11:54:59 +00:00
|
|
|
jQuery('#jform_add_php_getlistquery').on('keyup',function()
|
2019-06-12 20:06:19 +00:00
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var add_php_getlistquery_vvvvvzx = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzx = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzx(add_php_getlistquery_vvvvvzx,gettype_vvvvvzx);
|
2019-06-12 20:06:19 +00:00
|
|
|
|
|
|
|
});
|
2024-04-09 11:54:59 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_add_php_getlistquery',function (e)
|
2019-06-12 20:06:19 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var add_php_getlistquery_vvvvvzx = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzx = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzx(add_php_getlistquery_vvvvvzx,gettype_vvvvvzx);
|
2018-05-11 04:08:14 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_gettype listeners for gettype_vvvvvzx function
|
2018-07-06 13:46:30 +00:00
|
|
|
jQuery('#jform_gettype').on('keyup',function()
|
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var add_php_getlistquery_vvvvvzx = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzx = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzx(add_php_getlistquery_vvvvvzx,gettype_vvvvvzx);
|
2018-07-06 13:46:30 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var add_php_getlistquery_vvvvvzx = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzx = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzx(add_php_getlistquery_vvvvvzx,gettype_vvvvvzx);
|
2019-06-12 20:36:05 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_add_php_before_getitems listeners for add_php_before_getitems_vvvvvzy function
|
2024-04-09 11:54:59 +00:00
|
|
|
jQuery('#jform_add_php_before_getitems').on('keyup',function()
|
2019-06-12 20:36:05 +00:00
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var add_php_before_getitems_vvvvvzy = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzy = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzy(add_php_before_getitems_vvvvvzy,gettype_vvvvvzy);
|
2019-06-12 20:36:05 +00:00
|
|
|
|
|
|
|
});
|
2024-04-09 11:54:59 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_add_php_before_getitems',function (e)
|
2019-06-12 20:36:05 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var add_php_before_getitems_vvvvvzy = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzy = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzy(add_php_before_getitems_vvvvvzy,gettype_vvvvvzy);
|
2018-07-06 13:46:30 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_gettype listeners for gettype_vvvvvzy function
|
2018-08-14 08:25:46 +00:00
|
|
|
jQuery('#jform_gettype').on('keyup',function()
|
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var add_php_before_getitems_vvvvvzy = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzy = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzy(add_php_before_getitems_vvvvvzy,gettype_vvvvvzy);
|
2018-08-14 08:25:46 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var add_php_before_getitems_vvvvvzy = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzy = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzy(add_php_before_getitems_vvvvvzy,gettype_vvvvvzy);
|
2019-08-08 15:35:58 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_add_php_after_getitems listeners for add_php_after_getitems_vvvvvzz function
|
2024-04-09 11:54:59 +00:00
|
|
|
jQuery('#jform_add_php_after_getitems').on('keyup',function()
|
2019-08-08 15:35:58 +00:00
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var add_php_after_getitems_vvvvvzz = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzz = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzz(add_php_after_getitems_vvvvvzz,gettype_vvvvvzz);
|
2019-08-08 15:35:58 +00:00
|
|
|
|
|
|
|
});
|
2024-04-09 11:54:59 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_add_php_after_getitems',function (e)
|
2019-08-08 15:35:58 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var add_php_after_getitems_vvvvvzz = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzz = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzz(add_php_after_getitems_vvvvvzz,gettype_vvvvvzz);
|
2019-01-29 14:43:27 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_gettype listeners for gettype_vvvvvzz function
|
2019-01-29 14:43:27 +00:00
|
|
|
jQuery('#jform_gettype').on('keyup',function()
|
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var add_php_after_getitems_vvvvvzz = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzz = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzz(add_php_after_getitems_vvvvvzz,gettype_vvvvvzz);
|
2019-01-29 14:43:27 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var add_php_after_getitems_vvvvvzz = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
|
|
|
|
var gettype_vvvvvzz = jQuery("#jform_gettype").val();
|
|
|
|
vvvvvzz(add_php_after_getitems_vvvvvzz,gettype_vvvvvzz);
|
2018-08-14 08:25:46 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_gettype listeners for gettype_vvvvwab function
|
2019-05-15 17:39:27 +00:00
|
|
|
jQuery('#jform_gettype').on('keyup',function()
|
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var gettype_vvvvwab = jQuery("#jform_gettype").val();
|
|
|
|
vvvvwab(gettype_vvvvwab);
|
2019-05-15 17:39:27 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var gettype_vvvvwab = jQuery("#jform_gettype").val();
|
|
|
|
vvvvwab(gettype_vvvvwab);
|
2019-05-15 17:39:27 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_gettype listeners for gettype_vvvvwac function
|
2019-06-12 20:06:19 +00:00
|
|
|
jQuery('#jform_gettype').on('keyup',function()
|
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var gettype_vvvvwac = jQuery("#jform_gettype").val();
|
|
|
|
vvvvwac(gettype_vvvvwac);
|
2019-06-12 20:06:19 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var gettype_vvvvwac = jQuery("#jform_gettype").val();
|
|
|
|
vvvvwac(gettype_vvvvwac);
|
2019-06-12 20:06:19 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_gettype listeners for gettype_vvvvwad function
|
2019-06-12 20:36:05 +00:00
|
|
|
jQuery('#jform_gettype').on('keyup',function()
|
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var gettype_vvvvwad = jQuery("#jform_gettype").val();
|
|
|
|
vvvvwad(gettype_vvvvwad);
|
2019-06-12 20:36:05 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var gettype_vvvvwad = jQuery("#jform_gettype").val();
|
|
|
|
vvvvwad(gettype_vvvvwad);
|
2019-06-12 20:36:05 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_gettype listeners for gettype_vvvvwae function
|
2019-08-08 15:35:58 +00:00
|
|
|
jQuery('#jform_gettype').on('keyup',function()
|
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var gettype_vvvvwae = jQuery("#jform_gettype").val();
|
|
|
|
var add_php_router_parse_vvvvwae = jQuery("#jform_add_php_router_parse input[type='radio']:checked").val();
|
|
|
|
vvvvwae(gettype_vvvvwae,add_php_router_parse_vvvvwae);
|
2019-08-08 15:35:58 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var gettype_vvvvwae = jQuery("#jform_gettype").val();
|
|
|
|
var add_php_router_parse_vvvvwae = jQuery("#jform_add_php_router_parse input[type='radio']:checked").val();
|
|
|
|
vvvvwae(gettype_vvvvwae,add_php_router_parse_vvvvwae);
|
2019-08-08 15:35:58 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_add_php_router_parse listeners for add_php_router_parse_vvvvwae function
|
2018-01-23 22:05:57 +00:00
|
|
|
jQuery('#jform_add_php_router_parse').on('keyup',function()
|
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var gettype_vvvvwae = jQuery("#jform_gettype").val();
|
|
|
|
var add_php_router_parse_vvvvwae = jQuery("#jform_add_php_router_parse input[type='radio']:checked").val();
|
|
|
|
vvvvwae(gettype_vvvvwae,add_php_router_parse_vvvvwae);
|
2018-01-23 22:05:57 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_add_php_router_parse',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var gettype_vvvvwae = jQuery("#jform_gettype").val();
|
|
|
|
var add_php_router_parse_vvvvwae = jQuery("#jform_add_php_router_parse input[type='radio']:checked").val();
|
|
|
|
vvvvwae(gettype_vvvvwae,add_php_router_parse_vvvvwae);
|
2018-01-23 22:05:57 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// #jform_gettype listeners for gettype_vvvvwag function
|
2018-08-23 01:37:42 +00:00
|
|
|
jQuery('#jform_gettype').on('keyup',function()
|
|
|
|
{
|
2024-04-27 14:00:36 +00:00
|
|
|
var gettype_vvvvwag = jQuery("#jform_gettype").val();
|
|
|
|
vvvvwag(gettype_vvvvwag);
|
2018-08-23 01:37:42 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-27 14:00:36 +00:00
|
|
|
var gettype_vvvvwag = jQuery("#jform_gettype").val();
|
|
|
|
vvvvwag(gettype_vvvvwag);
|
2018-08-23 01:37:42 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2017-10-06 14:53:22 +00:00
|
|
|
|
2018-03-11 02:44:43 +00:00
|
|
|
|
2017-10-06 14:53:22 +00:00
|
|
|
<?php $fieldNrs = range(0,50,1); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
<?php $fieldNames = array('db' => 'Db','view' => 'View'); ?>
|
2017-10-06 14:53:22 +00:00
|
|
|
// for the vlaues already set
|
|
|
|
jQuery(document).ready(function(){
|
|
|
|
<?php foreach($fieldNames as $fieldName => $funcName): ?>
|
|
|
|
<?php foreach($fieldNrs as $fieldNr): ?>
|
|
|
|
updateSubItems('<?php echo $fieldName ?>', <?php echo $fieldNr ?>, '_', '_');
|
2016-01-30 20:28:43 +00:00
|
|
|
<?php endforeach; ?>
|
2017-10-06 14:53:22 +00:00
|
|
|
<?php endforeach; ?>
|
|
|
|
});
|
|
|
|
// for the values the will still be set
|
|
|
|
jQuery(document).ready(function(){
|
|
|
|
jQuery(document).on('subform-row-add', function(event, row){
|
|
|
|
var groupName = jQuery(row).data('group');
|
|
|
|
var fieldName = groupName.replace('join_', '').replace('_table', '').replace(/([0-9])/g, '');
|
|
|
|
var fieldNr = groupName.replace(/([A-z_])/g, '');
|
2017-11-16 04:37:32 +00:00
|
|
|
updateSubItems(fieldName, fieldNr, '_', '_');
|
2016-01-30 20:28:43 +00:00
|
|
|
});
|
2017-10-06 14:53:22 +00:00
|
|
|
|
2016-01-30 20:28:43 +00:00
|
|
|
});
|
2017-10-06 14:53:22 +00:00
|
|
|
<?php foreach($fieldNames as $fieldName => $funcName): ?>jQuery('#adminForm').on('change', '#jform_<?php echo $fieldName ?>_table_main',function (e) {
|
2016-01-30 20:28:43 +00:00
|
|
|
// get options
|
|
|
|
var value_<?php echo $fieldName ?> = jQuery("#jform_<?php echo $fieldName ?>_table_main option:selected").val();
|
2019-01-29 14:43:27 +00:00
|
|
|
get<?php echo $funcName; ?>TableColumns(value_<?php echo $fieldName ?>, 'a', '<?php echo $fieldName ?>', 3, true, '', '');
|
2016-01-30 20:28:43 +00:00
|
|
|
});
|
2018-01-15 15:54:05 +00:00
|
|
|
<?php endforeach; ?>
|
2018-01-23 22:05:57 +00:00
|
|
|
// #jform_add_php_router_parse listeners
|
|
|
|
jQuery('#jform_add_php_router_parse').on('change',function() {
|
|
|
|
var valueSwitch = jQuery("#jform_add_php_router_parse input[type='radio']:checked").val();
|
|
|
|
getDynamicScripts(valueSwitch);
|
|
|
|
});
|
2019-01-29 14:43:27 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_select_all',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
|
|
|
// get the selected value
|
|
|
|
var select_all = jQuery("#jform_select_all input[type='radio']:checked").val();
|
|
|
|
setSelectAll(select_all);
|
|
|
|
|
|
|
|
});
|
2019-07-08 16:05:54 +00:00
|
|
|
|
|
|
|
<?php
|
2024-03-09 19:52:51 +00:00
|
|
|
$app = Factory::getApplication();
|
2019-07-08 16:05:54 +00:00
|
|
|
?>
|
|
|
|
function JRouter(link) {
|
|
|
|
<?php
|
2020-01-03 01:41:55 +00:00
|
|
|
if ($app->isClient('site'))
|
2019-07-08 16:05:54 +00:00
|
|
|
{
|
2024-03-09 19:52:51 +00:00
|
|
|
echo 'var url = "'. \Joomla\CMS\Uri\Uri::root() . '";';
|
2019-07-08 16:05:54 +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);
|
|
|
|
});
|
2018-02-27 12:17:38 +00:00
|
|
|
});
|
2021-03-05 03:08:47 +00:00
|
|
|
</script>
|