forked from joomla/Component-Builder
Release of v3.2.1-alpha3
Fix plugin code display when methods and properties are missing.
This commit is contained in:
parent
4c7b4f11a4
commit
a66e099a73
@ -1,3 +1,7 @@
|
||||
# v3.2.1-alpha3
|
||||
|
||||
- Fix plugin code display when methods and properties are missing.
|
||||
|
||||
# v3.2.1-alpha2
|
||||
|
||||
- Add view list and single name fix.
|
||||
|
@ -9,7 +9,7 @@ The Component Builder for [Joomla](https://extensions.joomla.org/extension/compo
|
||||
|
||||
Whether you're a seasoned [Joomla](https://extensions.joomla.org/extension/component-builder/) developer, or have just started, Component Builder will save you lots of time and money. A real must have!
|
||||
|
||||
You can install it quite easily and with no limitations. On [gitea](https://git.vdm.dev/joomla/Component-Builder/tags) is the latest release (3.2.1-alpha2) with **ALL** its features and **ALL** concepts totally open-source and free!
|
||||
You can install it quite easily and with no limitations. On [gitea](https://git.vdm.dev/joomla/Component-Builder/tags) is the latest release (3.2.1-alpha3) with **ALL** its features and **ALL** concepts totally open-source and free!
|
||||
|
||||
> Watch Quick Build of a Hello World component in [JCB on Youtube](https://www.youtube.com/watch?v=IQfsLYIeblk&list=PLQRGFI8XZ_wtGvPQZWBfDzzlERLQgpMRE&index=45)
|
||||
|
||||
@ -145,12 +145,12 @@ TODO
|
||||
+ *Name*: [Component Builder](https://git.vdm.dev/joomla/Component-Builder)
|
||||
+ *First Build*: 30th April, 2015
|
||||
+ *Last Build*: 9th April, 2024
|
||||
+ *Version*: 3.2.1-alpha2
|
||||
+ *Version*: 3.2.1-alpha3
|
||||
+ *Copyright*: Copyright (C) 2015 Vast Development Method. All rights reserved.
|
||||
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt
|
||||
+ *Line count*: **739869**
|
||||
+ *Line count*: **739813**
|
||||
+ *Field count*: **2080**
|
||||
+ *File count*: **5213**
|
||||
+ *File count*: **5214**
|
||||
+ *Folder count*: **459**
|
||||
|
||||
> This **component** was build with a [Joomla](https://extensions.joomla.org/extension/component-builder/) [Automated Component Builder](https://www.joomlacomponentbuilder.com).
|
||||
|
@ -9,7 +9,7 @@ The Component Builder for [Joomla](https://extensions.joomla.org/extension/compo
|
||||
|
||||
Whether you're a seasoned [Joomla](https://extensions.joomla.org/extension/component-builder/) developer, or have just started, Component Builder will save you lots of time and money. A real must have!
|
||||
|
||||
You can install it quite easily and with no limitations. On [gitea](https://git.vdm.dev/joomla/Component-Builder/tags) is the latest release (3.2.1-alpha2) with **ALL** its features and **ALL** concepts totally open-source and free!
|
||||
You can install it quite easily and with no limitations. On [gitea](https://git.vdm.dev/joomla/Component-Builder/tags) is the latest release (3.2.1-alpha3) with **ALL** its features and **ALL** concepts totally open-source and free!
|
||||
|
||||
> Watch Quick Build of a Hello World component in [JCB on Youtube](https://www.youtube.com/watch?v=IQfsLYIeblk&list=PLQRGFI8XZ_wtGvPQZWBfDzzlERLQgpMRE&index=45)
|
||||
|
||||
@ -145,12 +145,12 @@ TODO
|
||||
+ *Name*: [Component Builder](https://git.vdm.dev/joomla/Component-Builder)
|
||||
+ *First Build*: 30th April, 2015
|
||||
+ *Last Build*: 9th April, 2024
|
||||
+ *Version*: 3.2.1-alpha2
|
||||
+ *Version*: 3.2.1-alpha3
|
||||
+ *Copyright*: Copyright (C) 2015 Vast Development Method. All rights reserved.
|
||||
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt
|
||||
+ *Line count*: **739869**
|
||||
+ *Line count*: **739813**
|
||||
+ *Field count*: **2080**
|
||||
+ *File count*: **5213**
|
||||
+ *File count*: **5214**
|
||||
+ *Folder count*: **459**
|
||||
|
||||
> This **component** was build with a [Joomla](https://extensions.joomla.org/extension/component-builder/) [Automated Component Builder](https://www.joomlacomponentbuilder.com).
|
||||
|
@ -62,12 +62,17 @@ class JFormFieldPluginsclassmethods extends JFormFieldList
|
||||
}
|
||||
$db->setQuery((string)$query);
|
||||
$items = $db->loadObjectList();
|
||||
$options = array();
|
||||
$options = [];
|
||||
if ($items)
|
||||
{
|
||||
$options[] = Html::_('select.option', '', 'Select a method');
|
||||
foreach($items as $item)
|
||||
{
|
||||
if (!isset($item->visibility))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
// we are using this code in more then one field JCB custom_code
|
||||
if ('method' === 'method')
|
||||
{
|
||||
@ -77,6 +82,7 @@ class JFormFieldPluginsclassmethods extends JFormFieldList
|
||||
{
|
||||
$select = $item->visibility . ' $' . $item->method_name;
|
||||
}
|
||||
|
||||
$options[] = Html::_('select.option', $item->id, $select);
|
||||
}
|
||||
}
|
||||
|
@ -62,12 +62,17 @@ class JFormFieldPluginsclassproperties extends JFormFieldList
|
||||
}
|
||||
$db->setQuery((string)$query);
|
||||
$items = $db->loadObjectList();
|
||||
$options = array();
|
||||
$options = [];
|
||||
if ($items)
|
||||
{
|
||||
$options[] = Html::_('select.option', '', 'Select a property');
|
||||
foreach($items as $item)
|
||||
{
|
||||
if (!isset($item->visibility))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
// we are using this code in more then one field JCB custom_code
|
||||
if ('method' === 'property')
|
||||
{
|
||||
@ -77,6 +82,7 @@ class JFormFieldPluginsclassproperties extends JFormFieldList
|
||||
{
|
||||
$select = $item->visibility . ' $' . $item->property_name;
|
||||
}
|
||||
|
||||
$options[] = Html::_('select.option', $item->id, $select);
|
||||
}
|
||||
}
|
||||
|
@ -62,12 +62,17 @@ class JFormFieldPowersclassmethods extends JFormFieldList
|
||||
}
|
||||
$db->setQuery((string)$query);
|
||||
$items = $db->loadObjectList();
|
||||
$options = array();
|
||||
$options = [];
|
||||
if ($items)
|
||||
{
|
||||
$options[] = Html::_('select.option', '', 'Select a method');
|
||||
foreach($items as $item)
|
||||
{
|
||||
if (!isset($item->visibility))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
// we are using this code in more then one field JCB custom_code
|
||||
if ('method' === 'method')
|
||||
{
|
||||
@ -77,6 +82,7 @@ class JFormFieldPowersclassmethods extends JFormFieldList
|
||||
{
|
||||
$select = $item->visibility . ' $' . $item->method_name;
|
||||
}
|
||||
|
||||
$options[] = Html::_('select.option', $item->id, $select);
|
||||
}
|
||||
}
|
||||
|
@ -62,12 +62,17 @@ class JFormFieldPowersclassproperties extends JFormFieldList
|
||||
}
|
||||
$db->setQuery((string)$query);
|
||||
$items = $db->loadObjectList();
|
||||
$options = array();
|
||||
$options = [];
|
||||
if ($items)
|
||||
{
|
||||
$options[] = Html::_('select.option', '', 'Select a property');
|
||||
foreach($items as $item)
|
||||
{
|
||||
if (!isset($item->visibility))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
// we are using this code in more then one field JCB custom_code
|
||||
if ('method' === 'property')
|
||||
{
|
||||
@ -77,6 +82,7 @@ class JFormFieldPowersclassproperties extends JFormFieldList
|
||||
{
|
||||
$select = $item->visibility . ' $' . $item->property_name;
|
||||
}
|
||||
|
||||
$options[] = Html::_('select.option', $item->id, $select);
|
||||
}
|
||||
}
|
||||
|
1
admin/sql/updates/mysql/3.2.1-alpha2.sql
Normal file
1
admin/sql/updates/mysql/3.2.1-alpha2.sql
Normal file
@ -0,0 +1 @@
|
||||
|
@ -206,476 +206,491 @@ $componentParams = $this->params; // will be removed just use $this->params inst
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// #jform_add_css_view listeners for add_css_view_vvvvvyw function
|
||||
// #jform_add_css_view listeners for add_css_view_vvvvvyv function
|
||||
jQuery('#jform_add_css_view').on('keyup',function()
|
||||
{
|
||||
var add_css_view_vvvvvyw = jQuery("#jform_add_css_view input[type='radio']:checked").val();
|
||||
vvvvvyw(add_css_view_vvvvvyw);
|
||||
var add_css_view_vvvvvyv = jQuery("#jform_add_css_view input[type='radio']:checked").val();
|
||||
vvvvvyv(add_css_view_vvvvvyv);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_css_view',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_css_view_vvvvvyw = jQuery("#jform_add_css_view input[type='radio']:checked").val();
|
||||
vvvvvyw(add_css_view_vvvvvyw);
|
||||
var add_css_view_vvvvvyv = jQuery("#jform_add_css_view input[type='radio']:checked").val();
|
||||
vvvvvyv(add_css_view_vvvvvyv);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_css_views listeners for add_css_views_vvvvvyx function
|
||||
// #jform_add_css_views listeners for add_css_views_vvvvvyw function
|
||||
jQuery('#jform_add_css_views').on('keyup',function()
|
||||
{
|
||||
var add_css_views_vvvvvyx = jQuery("#jform_add_css_views input[type='radio']:checked").val();
|
||||
vvvvvyx(add_css_views_vvvvvyx);
|
||||
var add_css_views_vvvvvyw = jQuery("#jform_add_css_views input[type='radio']:checked").val();
|
||||
vvvvvyw(add_css_views_vvvvvyw);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_css_views',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_css_views_vvvvvyx = jQuery("#jform_add_css_views input[type='radio']:checked").val();
|
||||
vvvvvyx(add_css_views_vvvvvyx);
|
||||
var add_css_views_vvvvvyw = jQuery("#jform_add_css_views input[type='radio']:checked").val();
|
||||
vvvvvyw(add_css_views_vvvvvyw);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_javascript_view_file listeners for add_javascript_view_file_vvvvvyy function
|
||||
// #jform_add_javascript_view_file listeners for add_javascript_view_file_vvvvvyx function
|
||||
jQuery('#jform_add_javascript_view_file').on('keyup',function()
|
||||
{
|
||||
var add_javascript_view_file_vvvvvyy = jQuery("#jform_add_javascript_view_file input[type='radio']:checked").val();
|
||||
vvvvvyy(add_javascript_view_file_vvvvvyy);
|
||||
var add_javascript_view_file_vvvvvyx = jQuery("#jform_add_javascript_view_file input[type='radio']:checked").val();
|
||||
vvvvvyx(add_javascript_view_file_vvvvvyx);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_javascript_view_file',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_javascript_view_file_vvvvvyy = jQuery("#jform_add_javascript_view_file input[type='radio']:checked").val();
|
||||
vvvvvyy(add_javascript_view_file_vvvvvyy);
|
||||
var add_javascript_view_file_vvvvvyx = jQuery("#jform_add_javascript_view_file input[type='radio']:checked").val();
|
||||
vvvvvyx(add_javascript_view_file_vvvvvyx);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_javascript_views_file listeners for add_javascript_views_file_vvvvvyz function
|
||||
// #jform_add_javascript_views_file listeners for add_javascript_views_file_vvvvvyy function
|
||||
jQuery('#jform_add_javascript_views_file').on('keyup',function()
|
||||
{
|
||||
var add_javascript_views_file_vvvvvyz = jQuery("#jform_add_javascript_views_file input[type='radio']:checked").val();
|
||||
vvvvvyz(add_javascript_views_file_vvvvvyz);
|
||||
var add_javascript_views_file_vvvvvyy = jQuery("#jform_add_javascript_views_file input[type='radio']:checked").val();
|
||||
vvvvvyy(add_javascript_views_file_vvvvvyy);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_javascript_views_file',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_javascript_views_file_vvvvvyz = jQuery("#jform_add_javascript_views_file input[type='radio']:checked").val();
|
||||
vvvvvyz(add_javascript_views_file_vvvvvyz);
|
||||
var add_javascript_views_file_vvvvvyy = jQuery("#jform_add_javascript_views_file input[type='radio']:checked").val();
|
||||
vvvvvyy(add_javascript_views_file_vvvvvyy);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_javascript_view_footer listeners for add_javascript_view_footer_vvvvvza function
|
||||
// #jform_add_javascript_view_footer listeners for add_javascript_view_footer_vvvvvyz function
|
||||
jQuery('#jform_add_javascript_view_footer').on('keyup',function()
|
||||
{
|
||||
var add_javascript_view_footer_vvvvvza = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val();
|
||||
vvvvvza(add_javascript_view_footer_vvvvvza);
|
||||
var add_javascript_view_footer_vvvvvyz = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val();
|
||||
vvvvvyz(add_javascript_view_footer_vvvvvyz);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_javascript_view_footer',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_javascript_view_footer_vvvvvza = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val();
|
||||
vvvvvza(add_javascript_view_footer_vvvvvza);
|
||||
var add_javascript_view_footer_vvvvvyz = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val();
|
||||
vvvvvyz(add_javascript_view_footer_vvvvvyz);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_javascript_views_footer listeners for add_javascript_views_footer_vvvvvzb function
|
||||
// #jform_add_javascript_views_footer listeners for add_javascript_views_footer_vvvvvza function
|
||||
jQuery('#jform_add_javascript_views_footer').on('keyup',function()
|
||||
{
|
||||
var add_javascript_views_footer_vvvvvzb = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val();
|
||||
vvvvvzb(add_javascript_views_footer_vvvvvzb);
|
||||
var add_javascript_views_footer_vvvvvza = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val();
|
||||
vvvvvza(add_javascript_views_footer_vvvvvza);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_javascript_views_footer',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_javascript_views_footer_vvvvvzb = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val();
|
||||
vvvvvzb(add_javascript_views_footer_vvvvvzb);
|
||||
var add_javascript_views_footer_vvvvvza = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val();
|
||||
vvvvvza(add_javascript_views_footer_vvvvvza);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_ajax listeners for add_php_ajax_vvvvvzc function
|
||||
// #jform_add_php_ajax listeners for add_php_ajax_vvvvvzb function
|
||||
jQuery('#jform_add_php_ajax').on('keyup',function()
|
||||
{
|
||||
var add_php_ajax_vvvvvzc = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
||||
vvvvvzc(add_php_ajax_vvvvvzc);
|
||||
var add_php_ajax_vvvvvzb = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
||||
vvvvvzb(add_php_ajax_vvvvvzb);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_ajax',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_ajax_vvvvvzc = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
||||
vvvvvzc(add_php_ajax_vvvvvzc);
|
||||
var add_php_ajax_vvvvvzb = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
||||
vvvvvzb(add_php_ajax_vvvvvzb);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_getitem listeners for add_php_getitem_vvvvvzd function
|
||||
// #jform_add_php_getitem listeners for add_php_getitem_vvvvvzc function
|
||||
jQuery('#jform_add_php_getitem').on('keyup',function()
|
||||
{
|
||||
var add_php_getitem_vvvvvzd = jQuery("#jform_add_php_getitem input[type='radio']:checked").val();
|
||||
vvvvvzd(add_php_getitem_vvvvvzd);
|
||||
var add_php_getitem_vvvvvzc = jQuery("#jform_add_php_getitem input[type='radio']:checked").val();
|
||||
vvvvvzc(add_php_getitem_vvvvvzc);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_getitem',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_getitem_vvvvvzd = jQuery("#jform_add_php_getitem input[type='radio']:checked").val();
|
||||
vvvvvzd(add_php_getitem_vvvvvzd);
|
||||
var add_php_getitem_vvvvvzc = jQuery("#jform_add_php_getitem input[type='radio']:checked").val();
|
||||
vvvvvzc(add_php_getitem_vvvvvzc);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_getitems listeners for add_php_getitems_vvvvvze function
|
||||
// #jform_add_php_getitems listeners for add_php_getitems_vvvvvzd function
|
||||
jQuery('#jform_add_php_getitems').on('keyup',function()
|
||||
{
|
||||
var add_php_getitems_vvvvvze = jQuery("#jform_add_php_getitems input[type='radio']:checked").val();
|
||||
vvvvvze(add_php_getitems_vvvvvze);
|
||||
var add_php_getitems_vvvvvzd = jQuery("#jform_add_php_getitems input[type='radio']:checked").val();
|
||||
vvvvvzd(add_php_getitems_vvvvvzd);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_getitems',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_getitems_vvvvvze = jQuery("#jform_add_php_getitems input[type='radio']:checked").val();
|
||||
vvvvvze(add_php_getitems_vvvvvze);
|
||||
var add_php_getitems_vvvvvzd = jQuery("#jform_add_php_getitems input[type='radio']:checked").val();
|
||||
vvvvvzd(add_php_getitems_vvvvvzd);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_getitems_after_all listeners for add_php_getitems_after_all_vvvvvzf function
|
||||
// #jform_add_php_getitems_after_all listeners for add_php_getitems_after_all_vvvvvze function
|
||||
jQuery('#jform_add_php_getitems_after_all').on('keyup',function()
|
||||
{
|
||||
var add_php_getitems_after_all_vvvvvzf = jQuery("#jform_add_php_getitems_after_all input[type='radio']:checked").val();
|
||||
vvvvvzf(add_php_getitems_after_all_vvvvvzf);
|
||||
var add_php_getitems_after_all_vvvvvze = jQuery("#jform_add_php_getitems_after_all input[type='radio']:checked").val();
|
||||
vvvvvze(add_php_getitems_after_all_vvvvvze);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_getitems_after_all',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_getitems_after_all_vvvvvzf = jQuery("#jform_add_php_getitems_after_all input[type='radio']:checked").val();
|
||||
vvvvvzf(add_php_getitems_after_all_vvvvvzf);
|
||||
var add_php_getitems_after_all_vvvvvze = jQuery("#jform_add_php_getitems_after_all input[type='radio']:checked").val();
|
||||
vvvvvze(add_php_getitems_after_all_vvvvvze);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_getlistquery listeners for add_php_getlistquery_vvvvvzg function
|
||||
// #jform_add_php_getlistquery listeners for add_php_getlistquery_vvvvvzf function
|
||||
jQuery('#jform_add_php_getlistquery').on('keyup',function()
|
||||
{
|
||||
var add_php_getlistquery_vvvvvzg = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
||||
vvvvvzg(add_php_getlistquery_vvvvvzg);
|
||||
var add_php_getlistquery_vvvvvzf = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
||||
vvvvvzf(add_php_getlistquery_vvvvvzf);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_getlistquery',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_getlistquery_vvvvvzg = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
||||
vvvvvzg(add_php_getlistquery_vvvvvzg);
|
||||
var add_php_getlistquery_vvvvvzf = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
||||
vvvvvzf(add_php_getlistquery_vvvvvzf);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_getform listeners for add_php_getform_vvvvvzh function
|
||||
// #jform_add_php_getform listeners for add_php_getform_vvvvvzg function
|
||||
jQuery('#jform_add_php_getform').on('keyup',function()
|
||||
{
|
||||
var add_php_getform_vvvvvzh = jQuery("#jform_add_php_getform input[type='radio']:checked").val();
|
||||
vvvvvzh(add_php_getform_vvvvvzh);
|
||||
var add_php_getform_vvvvvzg = jQuery("#jform_add_php_getform input[type='radio']:checked").val();
|
||||
vvvvvzg(add_php_getform_vvvvvzg);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_getform',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_getform_vvvvvzh = jQuery("#jform_add_php_getform input[type='radio']:checked").val();
|
||||
vvvvvzh(add_php_getform_vvvvvzh);
|
||||
var add_php_getform_vvvvvzg = jQuery("#jform_add_php_getform input[type='radio']:checked").val();
|
||||
vvvvvzg(add_php_getform_vvvvvzg);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_before_save listeners for add_php_before_save_vvvvvzi function
|
||||
// #jform_add_php_before_save listeners for add_php_before_save_vvvvvzh function
|
||||
jQuery('#jform_add_php_before_save').on('keyup',function()
|
||||
{
|
||||
var add_php_before_save_vvvvvzi = jQuery("#jform_add_php_before_save input[type='radio']:checked").val();
|
||||
vvvvvzi(add_php_before_save_vvvvvzi);
|
||||
var add_php_before_save_vvvvvzh = jQuery("#jform_add_php_before_save input[type='radio']:checked").val();
|
||||
vvvvvzh(add_php_before_save_vvvvvzh);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_before_save',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_before_save_vvvvvzi = jQuery("#jform_add_php_before_save input[type='radio']:checked").val();
|
||||
vvvvvzi(add_php_before_save_vvvvvzi);
|
||||
var add_php_before_save_vvvvvzh = jQuery("#jform_add_php_before_save input[type='radio']:checked").val();
|
||||
vvvvvzh(add_php_before_save_vvvvvzh);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_save listeners for add_php_save_vvvvvzj function
|
||||
// #jform_add_php_save listeners for add_php_save_vvvvvzi function
|
||||
jQuery('#jform_add_php_save').on('keyup',function()
|
||||
{
|
||||
var add_php_save_vvvvvzj = jQuery("#jform_add_php_save input[type='radio']:checked").val();
|
||||
vvvvvzj(add_php_save_vvvvvzj);
|
||||
var add_php_save_vvvvvzi = jQuery("#jform_add_php_save input[type='radio']:checked").val();
|
||||
vvvvvzi(add_php_save_vvvvvzi);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_save',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_save_vvvvvzj = jQuery("#jform_add_php_save input[type='radio']:checked").val();
|
||||
vvvvvzj(add_php_save_vvvvvzj);
|
||||
var add_php_save_vvvvvzi = jQuery("#jform_add_php_save input[type='radio']:checked").val();
|
||||
vvvvvzi(add_php_save_vvvvvzi);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_postsavehook listeners for add_php_postsavehook_vvvvvzk function
|
||||
// #jform_add_php_postsavehook listeners for add_php_postsavehook_vvvvvzj function
|
||||
jQuery('#jform_add_php_postsavehook').on('keyup',function()
|
||||
{
|
||||
var add_php_postsavehook_vvvvvzk = jQuery("#jform_add_php_postsavehook input[type='radio']:checked").val();
|
||||
vvvvvzk(add_php_postsavehook_vvvvvzk);
|
||||
var add_php_postsavehook_vvvvvzj = jQuery("#jform_add_php_postsavehook input[type='radio']:checked").val();
|
||||
vvvvvzj(add_php_postsavehook_vvvvvzj);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_postsavehook',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_postsavehook_vvvvvzk = jQuery("#jform_add_php_postsavehook input[type='radio']:checked").val();
|
||||
vvvvvzk(add_php_postsavehook_vvvvvzk);
|
||||
var add_php_postsavehook_vvvvvzj = jQuery("#jform_add_php_postsavehook input[type='radio']:checked").val();
|
||||
vvvvvzj(add_php_postsavehook_vvvvvzj);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_allowadd listeners for add_php_allowadd_vvvvvzl function
|
||||
// #jform_add_php_allowadd listeners for add_php_allowadd_vvvvvzk function
|
||||
jQuery('#jform_add_php_allowadd').on('keyup',function()
|
||||
{
|
||||
var add_php_allowadd_vvvvvzl = jQuery("#jform_add_php_allowadd input[type='radio']:checked").val();
|
||||
vvvvvzl(add_php_allowadd_vvvvvzl);
|
||||
var add_php_allowadd_vvvvvzk = jQuery("#jform_add_php_allowadd input[type='radio']:checked").val();
|
||||
vvvvvzk(add_php_allowadd_vvvvvzk);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_allowadd',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_allowadd_vvvvvzl = jQuery("#jform_add_php_allowadd input[type='radio']:checked").val();
|
||||
vvvvvzl(add_php_allowadd_vvvvvzl);
|
||||
var add_php_allowadd_vvvvvzk = jQuery("#jform_add_php_allowadd input[type='radio']:checked").val();
|
||||
vvvvvzk(add_php_allowadd_vvvvvzk);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_allowedit listeners for add_php_allowedit_vvvvvzm function
|
||||
// #jform_add_php_allowedit listeners for add_php_allowedit_vvvvvzl function
|
||||
jQuery('#jform_add_php_allowedit').on('keyup',function()
|
||||
{
|
||||
var add_php_allowedit_vvvvvzm = jQuery("#jform_add_php_allowedit input[type='radio']:checked").val();
|
||||
vvvvvzm(add_php_allowedit_vvvvvzm);
|
||||
var add_php_allowedit_vvvvvzl = jQuery("#jform_add_php_allowedit input[type='radio']:checked").val();
|
||||
vvvvvzl(add_php_allowedit_vvvvvzl);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_allowedit',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_allowedit_vvvvvzm = jQuery("#jform_add_php_allowedit input[type='radio']:checked").val();
|
||||
vvvvvzm(add_php_allowedit_vvvvvzm);
|
||||
var add_php_allowedit_vvvvvzl = jQuery("#jform_add_php_allowedit input[type='radio']:checked").val();
|
||||
vvvvvzl(add_php_allowedit_vvvvvzl);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_before_cancel listeners for add_php_before_cancel_vvvvvzn function
|
||||
// #jform_add_php_before_cancel listeners for add_php_before_cancel_vvvvvzm function
|
||||
jQuery('#jform_add_php_before_cancel').on('keyup',function()
|
||||
{
|
||||
var add_php_before_cancel_vvvvvzn = jQuery("#jform_add_php_before_cancel input[type='radio']:checked").val();
|
||||
vvvvvzn(add_php_before_cancel_vvvvvzn);
|
||||
var add_php_before_cancel_vvvvvzm = jQuery("#jform_add_php_before_cancel input[type='radio']:checked").val();
|
||||
vvvvvzm(add_php_before_cancel_vvvvvzm);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_before_cancel',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_before_cancel_vvvvvzn = jQuery("#jform_add_php_before_cancel input[type='radio']:checked").val();
|
||||
vvvvvzn(add_php_before_cancel_vvvvvzn);
|
||||
var add_php_before_cancel_vvvvvzm = jQuery("#jform_add_php_before_cancel input[type='radio']:checked").val();
|
||||
vvvvvzm(add_php_before_cancel_vvvvvzm);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_after_cancel listeners for add_php_after_cancel_vvvvvzo function
|
||||
// #jform_add_php_after_cancel listeners for add_php_after_cancel_vvvvvzn function
|
||||
jQuery('#jform_add_php_after_cancel').on('keyup',function()
|
||||
{
|
||||
var add_php_after_cancel_vvvvvzo = jQuery("#jform_add_php_after_cancel input[type='radio']:checked").val();
|
||||
vvvvvzo(add_php_after_cancel_vvvvvzo);
|
||||
var add_php_after_cancel_vvvvvzn = jQuery("#jform_add_php_after_cancel input[type='radio']:checked").val();
|
||||
vvvvvzn(add_php_after_cancel_vvvvvzn);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_after_cancel',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_after_cancel_vvvvvzo = jQuery("#jform_add_php_after_cancel input[type='radio']:checked").val();
|
||||
vvvvvzo(add_php_after_cancel_vvvvvzo);
|
||||
var add_php_after_cancel_vvvvvzn = jQuery("#jform_add_php_after_cancel input[type='radio']:checked").val();
|
||||
vvvvvzn(add_php_after_cancel_vvvvvzn);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_batchcopy listeners for add_php_batchcopy_vvvvvzp function
|
||||
// #jform_add_php_batchcopy listeners for add_php_batchcopy_vvvvvzo function
|
||||
jQuery('#jform_add_php_batchcopy').on('keyup',function()
|
||||
{
|
||||
var add_php_batchcopy_vvvvvzp = jQuery("#jform_add_php_batchcopy input[type='radio']:checked").val();
|
||||
vvvvvzp(add_php_batchcopy_vvvvvzp);
|
||||
var add_php_batchcopy_vvvvvzo = jQuery("#jform_add_php_batchcopy input[type='radio']:checked").val();
|
||||
vvvvvzo(add_php_batchcopy_vvvvvzo);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_batchcopy',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_batchcopy_vvvvvzp = jQuery("#jform_add_php_batchcopy input[type='radio']:checked").val();
|
||||
vvvvvzp(add_php_batchcopy_vvvvvzp);
|
||||
var add_php_batchcopy_vvvvvzo = jQuery("#jform_add_php_batchcopy input[type='radio']:checked").val();
|
||||
vvvvvzo(add_php_batchcopy_vvvvvzo);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_batchmove listeners for add_php_batchmove_vvvvvzq function
|
||||
// #jform_add_php_batchmove listeners for add_php_batchmove_vvvvvzp function
|
||||
jQuery('#jform_add_php_batchmove').on('keyup',function()
|
||||
{
|
||||
var add_php_batchmove_vvvvvzq = jQuery("#jform_add_php_batchmove input[type='radio']:checked").val();
|
||||
vvvvvzq(add_php_batchmove_vvvvvzq);
|
||||
var add_php_batchmove_vvvvvzp = jQuery("#jform_add_php_batchmove input[type='radio']:checked").val();
|
||||
vvvvvzp(add_php_batchmove_vvvvvzp);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_batchmove',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_batchmove_vvvvvzq = jQuery("#jform_add_php_batchmove input[type='radio']:checked").val();
|
||||
vvvvvzq(add_php_batchmove_vvvvvzq);
|
||||
var add_php_batchmove_vvvvvzp = jQuery("#jform_add_php_batchmove input[type='radio']:checked").val();
|
||||
vvvvvzp(add_php_batchmove_vvvvvzp);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_before_publish listeners for add_php_before_publish_vvvvvzr function
|
||||
// #jform_add_php_before_publish listeners for add_php_before_publish_vvvvvzq function
|
||||
jQuery('#jform_add_php_before_publish').on('keyup',function()
|
||||
{
|
||||
var add_php_before_publish_vvvvvzr = jQuery("#jform_add_php_before_publish input[type='radio']:checked").val();
|
||||
vvvvvzr(add_php_before_publish_vvvvvzr);
|
||||
var add_php_before_publish_vvvvvzq = jQuery("#jform_add_php_before_publish input[type='radio']:checked").val();
|
||||
vvvvvzq(add_php_before_publish_vvvvvzq);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_before_publish',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_before_publish_vvvvvzr = jQuery("#jform_add_php_before_publish input[type='radio']:checked").val();
|
||||
vvvvvzr(add_php_before_publish_vvvvvzr);
|
||||
var add_php_before_publish_vvvvvzq = jQuery("#jform_add_php_before_publish input[type='radio']:checked").val();
|
||||
vvvvvzq(add_php_before_publish_vvvvvzq);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_after_publish listeners for add_php_after_publish_vvvvvzs function
|
||||
// #jform_add_php_after_publish listeners for add_php_after_publish_vvvvvzr function
|
||||
jQuery('#jform_add_php_after_publish').on('keyup',function()
|
||||
{
|
||||
var add_php_after_publish_vvvvvzs = jQuery("#jform_add_php_after_publish input[type='radio']:checked").val();
|
||||
vvvvvzs(add_php_after_publish_vvvvvzs);
|
||||
var add_php_after_publish_vvvvvzr = jQuery("#jform_add_php_after_publish input[type='radio']:checked").val();
|
||||
vvvvvzr(add_php_after_publish_vvvvvzr);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_after_publish',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_after_publish_vvvvvzs = jQuery("#jform_add_php_after_publish input[type='radio']:checked").val();
|
||||
vvvvvzs(add_php_after_publish_vvvvvzs);
|
||||
var add_php_after_publish_vvvvvzr = jQuery("#jform_add_php_after_publish input[type='radio']:checked").val();
|
||||
vvvvvzr(add_php_after_publish_vvvvvzr);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_before_delete listeners for add_php_before_delete_vvvvvzt function
|
||||
// #jform_add_php_before_delete listeners for add_php_before_delete_vvvvvzs function
|
||||
jQuery('#jform_add_php_before_delete').on('keyup',function()
|
||||
{
|
||||
var add_php_before_delete_vvvvvzt = jQuery("#jform_add_php_before_delete input[type='radio']:checked").val();
|
||||
vvvvvzt(add_php_before_delete_vvvvvzt);
|
||||
var add_php_before_delete_vvvvvzs = jQuery("#jform_add_php_before_delete input[type='radio']:checked").val();
|
||||
vvvvvzs(add_php_before_delete_vvvvvzs);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_before_delete',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_before_delete_vvvvvzt = jQuery("#jform_add_php_before_delete input[type='radio']:checked").val();
|
||||
vvvvvzt(add_php_before_delete_vvvvvzt);
|
||||
var add_php_before_delete_vvvvvzs = jQuery("#jform_add_php_before_delete input[type='radio']:checked").val();
|
||||
vvvvvzs(add_php_before_delete_vvvvvzs);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_after_delete listeners for add_php_after_delete_vvvvvzu function
|
||||
// #jform_add_php_after_delete listeners for add_php_after_delete_vvvvvzt function
|
||||
jQuery('#jform_add_php_after_delete').on('keyup',function()
|
||||
{
|
||||
var add_php_after_delete_vvvvvzu = jQuery("#jform_add_php_after_delete input[type='radio']:checked").val();
|
||||
vvvvvzu(add_php_after_delete_vvvvvzu);
|
||||
var add_php_after_delete_vvvvvzt = jQuery("#jform_add_php_after_delete input[type='radio']:checked").val();
|
||||
vvvvvzt(add_php_after_delete_vvvvvzt);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_after_delete',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_after_delete_vvvvvzu = jQuery("#jform_add_php_after_delete input[type='radio']:checked").val();
|
||||
vvvvvzu(add_php_after_delete_vvvvvzu);
|
||||
var add_php_after_delete_vvvvvzt = jQuery("#jform_add_php_after_delete input[type='radio']:checked").val();
|
||||
vvvvvzt(add_php_after_delete_vvvvvzt);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_document listeners for add_php_document_vvvvvzv function
|
||||
// #jform_add_php_document listeners for add_php_document_vvvvvzu function
|
||||
jQuery('#jform_add_php_document').on('keyup',function()
|
||||
{
|
||||
var add_php_document_vvvvvzv = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvvzv(add_php_document_vvvvvzv);
|
||||
var add_php_document_vvvvvzu = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvvzu(add_php_document_vvvvvzu);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_document',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_document_vvvvvzv = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvvzv(add_php_document_vvvvvzv);
|
||||
var add_php_document_vvvvvzu = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvvzu(add_php_document_vvvvvzu);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_sql listeners for add_sql_vvvvvzv function
|
||||
jQuery('#jform_add_sql').on('keyup',function()
|
||||
{
|
||||
var add_sql_vvvvvzv = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvzv(add_sql_vvvvvzv);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_sql',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_sql_vvvvvzv = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvzv(add_sql_vvvvvzv);
|
||||
|
||||
});
|
||||
|
||||
// #jform_source listeners for source_vvvvvzw function
|
||||
jQuery('#jform_source').on('keyup',function()
|
||||
{
|
||||
var source_vvvvvzw = jQuery("#jform_source input[type='radio']:checked").val();
|
||||
var add_sql_vvvvvzw = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvzw(source_vvvvvzw,add_sql_vvvvvzw);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_source',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var source_vvvvvzw = jQuery("#jform_source input[type='radio']:checked").val();
|
||||
var add_sql_vvvvvzw = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvzw(source_vvvvvzw,add_sql_vvvvvzw);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_sql listeners for add_sql_vvvvvzw function
|
||||
jQuery('#jform_add_sql').on('keyup',function()
|
||||
{
|
||||
var source_vvvvvzw = jQuery("#jform_source input[type='radio']:checked").val();
|
||||
var add_sql_vvvvvzw = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvzw(add_sql_vvvvvzw);
|
||||
vvvvvzw(source_vvvvvzw,add_sql_vvvvvzw);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_sql',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var source_vvvvvzw = jQuery("#jform_source input[type='radio']:checked").val();
|
||||
var add_sql_vvvvvzw = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvzw(add_sql_vvvvvzw);
|
||||
vvvvvzw(source_vvvvvzw,add_sql_vvvvvzw);
|
||||
|
||||
});
|
||||
|
||||
// #jform_source listeners for source_vvvvvzx function
|
||||
// #jform_source listeners for source_vvvvvzy function
|
||||
jQuery('#jform_source').on('keyup',function()
|
||||
{
|
||||
var source_vvvvvzx = jQuery("#jform_source input[type='radio']:checked").val();
|
||||
var add_sql_vvvvvzx = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvzx(source_vvvvvzx,add_sql_vvvvvzx);
|
||||
var source_vvvvvzy = jQuery("#jform_source input[type='radio']:checked").val();
|
||||
var add_sql_vvvvvzy = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvzy(source_vvvvvzy,add_sql_vvvvvzy);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_source',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var source_vvvvvzx = jQuery("#jform_source input[type='radio']:checked").val();
|
||||
var add_sql_vvvvvzx = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvzx(source_vvvvvzx,add_sql_vvvvvzx);
|
||||
var source_vvvvvzy = jQuery("#jform_source input[type='radio']:checked").val();
|
||||
var add_sql_vvvvvzy = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvzy(source_vvvvvzy,add_sql_vvvvvzy);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_sql listeners for add_sql_vvvvvzx function
|
||||
// #jform_add_sql listeners for add_sql_vvvvvzy function
|
||||
jQuery('#jform_add_sql').on('keyup',function()
|
||||
{
|
||||
var source_vvvvvzx = jQuery("#jform_source input[type='radio']:checked").val();
|
||||
var add_sql_vvvvvzx = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvzx(source_vvvvvzx,add_sql_vvvvvzx);
|
||||
var source_vvvvvzy = jQuery("#jform_source input[type='radio']:checked").val();
|
||||
var add_sql_vvvvvzy = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvzy(source_vvvvvzy,add_sql_vvvvvzy);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_sql',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var source_vvvvvzx = jQuery("#jform_source input[type='radio']:checked").val();
|
||||
var add_sql_vvvvvzx = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvzx(source_vvvvvzx,add_sql_vvvvvzx);
|
||||
var source_vvvvvzy = jQuery("#jform_source input[type='radio']:checked").val();
|
||||
var add_sql_vvvvvzy = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvzy(source_vvvvvzy,add_sql_vvvvvzy);
|
||||
|
||||
});
|
||||
|
||||
// #jform_source listeners for source_vvvvvzz function
|
||||
jQuery('#jform_source').on('keyup',function()
|
||||
// #jform_add_custom_import listeners for add_custom_import_vvvvwaa function
|
||||
jQuery('#jform_add_custom_import').on('keyup',function()
|
||||
{
|
||||
var source_vvvvvzz = jQuery("#jform_source input[type='radio']:checked").val();
|
||||
var add_sql_vvvvvzz = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvzz(source_vvvvvzz,add_sql_vvvvvzz);
|
||||
var add_custom_import_vvvvwaa = jQuery("#jform_add_custom_import input[type='radio']:checked").val();
|
||||
vvvvwaa(add_custom_import_vvvvwaa);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_source',function (e)
|
||||
jQuery('#adminForm').on('change', '#jform_add_custom_import',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var source_vvvvvzz = jQuery("#jform_source input[type='radio']:checked").val();
|
||||
var add_sql_vvvvvzz = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvzz(source_vvvvvzz,add_sql_vvvvvzz);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_sql listeners for add_sql_vvvvvzz function
|
||||
jQuery('#jform_add_sql').on('keyup',function()
|
||||
{
|
||||
var source_vvvvvzz = jQuery("#jform_source input[type='radio']:checked").val();
|
||||
var add_sql_vvvvvzz = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvzz(source_vvvvvzz,add_sql_vvvvvzz);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_sql',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var source_vvvvvzz = jQuery("#jform_source input[type='radio']:checked").val();
|
||||
var add_sql_vvvvvzz = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvzz(source_vvvvvzz,add_sql_vvvvvzz);
|
||||
var add_custom_import_vvvvwaa = jQuery("#jform_add_custom_import input[type='radio']:checked").val();
|
||||
vvvvwaa(add_custom_import_vvvvwaa);
|
||||
|
||||
});
|
||||
|
||||
@ -694,33 +709,18 @@ jQuery('#adminForm').on('change', '#jform_add_custom_import',function (e)
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_custom_import listeners for add_custom_import_vvvvwac function
|
||||
jQuery('#jform_add_custom_import').on('keyup',function()
|
||||
{
|
||||
var add_custom_import_vvvvwac = jQuery("#jform_add_custom_import input[type='radio']:checked").val();
|
||||
vvvvwac(add_custom_import_vvvvwac);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_custom_import',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_custom_import_vvvvwac = jQuery("#jform_add_custom_import input[type='radio']:checked").val();
|
||||
vvvvwac(add_custom_import_vvvvwac);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_custom_button listeners for add_custom_button_vvvvwad function
|
||||
// #jform_add_custom_button listeners for add_custom_button_vvvvwac function
|
||||
jQuery('#jform_add_custom_button').on('keyup',function()
|
||||
{
|
||||
var add_custom_button_vvvvwad = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvwad(add_custom_button_vvvvwad);
|
||||
var add_custom_button_vvvvwac = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvwac(add_custom_button_vvvvwac);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_custom_button',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_custom_button_vvvvwad = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvwad(add_custom_button_vvvvwad);
|
||||
var add_custom_button_vvvvwac = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvwac(add_custom_button_vvvvwac);
|
||||
|
||||
});
|
||||
|
||||
|
@ -110,18 +110,18 @@ $componentParams = $this->params; // will be removed just use $this->params inst
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// #jform_extension_type listeners for extension_type_vvvvwch function
|
||||
// #jform_extension_type listeners for extension_type_vvvvwcg function
|
||||
jQuery('#jform_extension_type').on('keyup',function()
|
||||
{
|
||||
var extension_type_vvvvwch = jQuery("#jform_extension_type").val();
|
||||
vvvvwch(extension_type_vvvvwch);
|
||||
var extension_type_vvvvwcg = jQuery("#jform_extension_type").val();
|
||||
vvvvwcg(extension_type_vvvvwcg);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_extension_type',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var extension_type_vvvvwch = jQuery("#jform_extension_type").val();
|
||||
vvvvwch(extension_type_vvvvwch);
|
||||
var extension_type_vvvvwcg = jQuery("#jform_extension_type").val();
|
||||
vvvvwcg(extension_type_vvvvwcg);
|
||||
|
||||
});
|
||||
|
||||
|
@ -105,18 +105,18 @@ $componentParams = $this->params; // will be removed just use $this->params inst
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// #jform_extension_type listeners for extension_type_vvvvwcg function
|
||||
// #jform_extension_type listeners for extension_type_vvvvwcf function
|
||||
jQuery('#jform_extension_type').on('keyup',function()
|
||||
{
|
||||
var extension_type_vvvvwcg = jQuery("#jform_extension_type").val();
|
||||
vvvvwcg(extension_type_vvvvwcg);
|
||||
var extension_type_vvvvwcf = jQuery("#jform_extension_type").val();
|
||||
vvvvwcf(extension_type_vvvvwcf);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_extension_type',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var extension_type_vvvvwcg = jQuery("#jform_extension_type").val();
|
||||
vvvvwcg(extension_type_vvvvwcg);
|
||||
var extension_type_vvvvwcf = jQuery("#jform_extension_type").val();
|
||||
vvvvwcf(extension_type_vvvvwcf);
|
||||
|
||||
});
|
||||
|
||||
|
@ -162,153 +162,153 @@ $componentParams = $this->params; // will be removed just use $this->params inst
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// #jform_add_php_view listeners for add_php_view_vvvvwae function
|
||||
// #jform_add_php_view listeners for add_php_view_vvvvwad function
|
||||
jQuery('#jform_add_php_view').on('keyup',function()
|
||||
{
|
||||
var add_php_view_vvvvwae = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvwae(add_php_view_vvvvwae);
|
||||
var add_php_view_vvvvwad = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvwad(add_php_view_vvvvwad);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_view',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_view_vvvvwae = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvwae(add_php_view_vvvvwae);
|
||||
var add_php_view_vvvvwad = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvwad(add_php_view_vvvvwad);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_jview_display listeners for add_php_jview_display_vvvvwaf function
|
||||
// #jform_add_php_jview_display listeners for add_php_jview_display_vvvvwae function
|
||||
jQuery('#jform_add_php_jview_display').on('keyup',function()
|
||||
{
|
||||
var add_php_jview_display_vvvvwaf = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
|
||||
vvvvwaf(add_php_jview_display_vvvvwaf);
|
||||
var add_php_jview_display_vvvvwae = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
|
||||
vvvvwae(add_php_jview_display_vvvvwae);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_jview_display',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_jview_display_vvvvwaf = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
|
||||
vvvvwaf(add_php_jview_display_vvvvwaf);
|
||||
var add_php_jview_display_vvvvwae = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
|
||||
vvvvwae(add_php_jview_display_vvvvwae);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_jview listeners for add_php_jview_vvvvwag function
|
||||
// #jform_add_php_jview listeners for add_php_jview_vvvvwaf function
|
||||
jQuery('#jform_add_php_jview').on('keyup',function()
|
||||
{
|
||||
var add_php_jview_vvvvwag = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
|
||||
vvvvwag(add_php_jview_vvvvwag);
|
||||
var add_php_jview_vvvvwaf = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
|
||||
vvvvwaf(add_php_jview_vvvvwaf);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_jview',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_jview_vvvvwag = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
|
||||
vvvvwag(add_php_jview_vvvvwag);
|
||||
var add_php_jview_vvvvwaf = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
|
||||
vvvvwaf(add_php_jview_vvvvwaf);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_document listeners for add_php_document_vvvvwah function
|
||||
// #jform_add_php_document listeners for add_php_document_vvvvwag function
|
||||
jQuery('#jform_add_php_document').on('keyup',function()
|
||||
{
|
||||
var add_php_document_vvvvwah = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvwah(add_php_document_vvvvwah);
|
||||
var add_php_document_vvvvwag = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvwag(add_php_document_vvvvwag);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_document',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_document_vvvvwah = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvwah(add_php_document_vvvvwah);
|
||||
var add_php_document_vvvvwag = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvwag(add_php_document_vvvvwag);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_css_document listeners for add_css_document_vvvvwai function
|
||||
// #jform_add_css_document listeners for add_css_document_vvvvwah function
|
||||
jQuery('#jform_add_css_document').on('keyup',function()
|
||||
{
|
||||
var add_css_document_vvvvwai = jQuery("#jform_add_css_document input[type='radio']:checked").val();
|
||||
vvvvwai(add_css_document_vvvvwai);
|
||||
var add_css_document_vvvvwah = jQuery("#jform_add_css_document input[type='radio']:checked").val();
|
||||
vvvvwah(add_css_document_vvvvwah);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_css_document',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_css_document_vvvvwai = jQuery("#jform_add_css_document input[type='radio']:checked").val();
|
||||
vvvvwai(add_css_document_vvvvwai);
|
||||
var add_css_document_vvvvwah = jQuery("#jform_add_css_document input[type='radio']:checked").val();
|
||||
vvvvwah(add_css_document_vvvvwah);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_javascript_file listeners for add_javascript_file_vvvvwaj function
|
||||
// #jform_add_javascript_file listeners for add_javascript_file_vvvvwai function
|
||||
jQuery('#jform_add_javascript_file').on('keyup',function()
|
||||
{
|
||||
var add_javascript_file_vvvvwaj = jQuery("#jform_add_javascript_file input[type='radio']:checked").val();
|
||||
vvvvwaj(add_javascript_file_vvvvwaj);
|
||||
var add_javascript_file_vvvvwai = jQuery("#jform_add_javascript_file input[type='radio']:checked").val();
|
||||
vvvvwai(add_javascript_file_vvvvwai);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_javascript_file',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_javascript_file_vvvvwaj = jQuery("#jform_add_javascript_file input[type='radio']:checked").val();
|
||||
vvvvwaj(add_javascript_file_vvvvwaj);
|
||||
var add_javascript_file_vvvvwai = jQuery("#jform_add_javascript_file input[type='radio']:checked").val();
|
||||
vvvvwai(add_javascript_file_vvvvwai);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_js_document listeners for add_js_document_vvvvwak function
|
||||
// #jform_add_js_document listeners for add_js_document_vvvvwaj function
|
||||
jQuery('#jform_add_js_document').on('keyup',function()
|
||||
{
|
||||
var add_js_document_vvvvwak = jQuery("#jform_add_js_document input[type='radio']:checked").val();
|
||||
vvvvwak(add_js_document_vvvvwak);
|
||||
var add_js_document_vvvvwaj = jQuery("#jform_add_js_document input[type='radio']:checked").val();
|
||||
vvvvwaj(add_js_document_vvvvwaj);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_js_document',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_js_document_vvvvwak = jQuery("#jform_add_js_document input[type='radio']:checked").val();
|
||||
vvvvwak(add_js_document_vvvvwak);
|
||||
var add_js_document_vvvvwaj = jQuery("#jform_add_js_document input[type='radio']:checked").val();
|
||||
vvvvwaj(add_js_document_vvvvwaj);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_custom_button listeners for add_custom_button_vvvvwal function
|
||||
// #jform_add_custom_button listeners for add_custom_button_vvvvwak function
|
||||
jQuery('#jform_add_custom_button').on('keyup',function()
|
||||
{
|
||||
var add_custom_button_vvvvwal = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvwal(add_custom_button_vvvvwal);
|
||||
var add_custom_button_vvvvwak = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvwak(add_custom_button_vvvvwak);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_custom_button',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_custom_button_vvvvwal = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvwal(add_custom_button_vvvvwal);
|
||||
var add_custom_button_vvvvwak = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvwak(add_custom_button_vvvvwak);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_css listeners for add_css_vvvvwam function
|
||||
// #jform_add_css listeners for add_css_vvvvwal function
|
||||
jQuery('#jform_add_css').on('keyup',function()
|
||||
{
|
||||
var add_css_vvvvwam = jQuery("#jform_add_css input[type='radio']:checked").val();
|
||||
vvvvwam(add_css_vvvvwam);
|
||||
var add_css_vvvvwal = jQuery("#jform_add_css input[type='radio']:checked").val();
|
||||
vvvvwal(add_css_vvvvwal);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_css',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_css_vvvvwam = jQuery("#jform_add_css input[type='radio']:checked").val();
|
||||
vvvvwam(add_css_vvvvwam);
|
||||
var add_css_vvvvwal = jQuery("#jform_add_css input[type='radio']:checked").val();
|
||||
vvvvwal(add_css_vvvvwal);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_ajax listeners for add_php_ajax_vvvvwan function
|
||||
// #jform_add_php_ajax listeners for add_php_ajax_vvvvwam function
|
||||
jQuery('#jform_add_php_ajax').on('keyup',function()
|
||||
{
|
||||
var add_php_ajax_vvvvwan = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
||||
vvvvwan(add_php_ajax_vvvvwan);
|
||||
var add_php_ajax_vvvvwam = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
||||
vvvvwam(add_php_ajax_vvvvwam);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_ajax',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_ajax_vvvvwan = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
||||
vvvvwan(add_php_ajax_vvvvwan);
|
||||
var add_php_ajax_vvvvwam = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
||||
vvvvwam(add_php_ajax_vvvvwam);
|
||||
|
||||
});
|
||||
|
||||
|
@ -114,6 +114,21 @@ $componentParams = $this->params; // will be removed just use $this->params inst
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// #jform_target listeners for target_vvvvwcb function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwcb = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcb(target_vvvvwcb);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwcb = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcb(target_vvvvwcb);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwcc function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
@ -133,82 +148,67 @@ jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwcd = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcd(target_vvvvwcd);
|
||||
var type_vvvvwcd = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
vvvvwcd(target_vvvvwcd,type_vvvvwcd);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwcd = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcd(target_vvvvwcd);
|
||||
var type_vvvvwcd = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
vvvvwcd(target_vvvvwcd,type_vvvvwcd);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwce function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
// #jform_type listeners for type_vvvvwcd function
|
||||
jQuery('#jform_type').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwce = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var type_vvvvwce = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
vvvvwce(target_vvvvwce,type_vvvvwce);
|
||||
var target_vvvvwcd = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var type_vvvvwcd = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
vvvvwcd(target_vvvvwcd,type_vvvvwcd);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
jQuery('#adminForm').on('change', '#jform_type',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwce = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var type_vvvvwce = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
vvvvwce(target_vvvvwce,type_vvvvwce);
|
||||
var target_vvvvwcd = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var type_vvvvwcd = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
vvvvwcd(target_vvvvwcd,type_vvvvwcd);
|
||||
|
||||
});
|
||||
|
||||
// #jform_type listeners for type_vvvvwce function
|
||||
jQuery('#jform_type').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwce = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var type_vvvvwce = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
vvvvwce(target_vvvvwce,type_vvvvwce);
|
||||
var target_vvvvwce = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwce(type_vvvvwce,target_vvvvwce);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_type',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwce = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var type_vvvvwce = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
vvvvwce(target_vvvvwce,type_vvvvwce);
|
||||
var target_vvvvwce = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwce(type_vvvvwce,target_vvvvwce);
|
||||
|
||||
});
|
||||
|
||||
// #jform_type listeners for type_vvvvwcf function
|
||||
jQuery('#jform_type').on('keyup',function()
|
||||
{
|
||||
var type_vvvvwcf = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
var target_vvvvwcf = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcf(type_vvvvwcf,target_vvvvwcf);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_type',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var type_vvvvwcf = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
var target_vvvvwcf = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcf(type_vvvvwcf,target_vvvvwcf);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwcf function
|
||||
// #jform_target listeners for target_vvvvwce function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var type_vvvvwcf = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
var target_vvvvwcf = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcf(type_vvvvwcf,target_vvvvwcf);
|
||||
var type_vvvvwce = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
var target_vvvvwce = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwce(type_vvvvwce,target_vvvvwce);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var type_vvvvwcf = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
var target_vvvvwcf = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcf(type_vvvvwcf,target_vvvvwcf);
|
||||
var type_vvvvwce = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
var target_vvvvwce = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwce(type_vvvvwce,target_vvvvwce);
|
||||
|
||||
});
|
||||
|
||||
|
@ -157,18 +157,33 @@ $componentParams = $this->params; // will be removed just use $this->params inst
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvwbb function
|
||||
// #jform_gettype listeners for gettype_vvvvwba function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var gettype_vvvvwbb = jQuery("#jform_gettype").val();
|
||||
vvvvwbb(gettype_vvvvwbb);
|
||||
var gettype_vvvvwba = jQuery("#jform_gettype").val();
|
||||
vvvvwba(gettype_vvvvwba);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var gettype_vvvvwbb = jQuery("#jform_gettype").val();
|
||||
vvvvwbb(gettype_vvvvwbb);
|
||||
var gettype_vvvvwba = jQuery("#jform_gettype").val();
|
||||
vvvvwba(gettype_vvvvwba);
|
||||
|
||||
});
|
||||
|
||||
// #jform_main_source listeners for main_source_vvvvwbb function
|
||||
jQuery('#jform_main_source').on('keyup',function()
|
||||
{
|
||||
var main_source_vvvvwbb = jQuery("#jform_main_source").val();
|
||||
vvvvwbb(main_source_vvvvwbb);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_main_source',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var main_source_vvvvwbb = jQuery("#jform_main_source").val();
|
||||
vvvvwbb(main_source_vvvvwbb);
|
||||
|
||||
});
|
||||
|
||||
@ -232,18 +247,18 @@ jQuery('#adminForm').on('change', '#jform_main_source',function (e)
|
||||
|
||||
});
|
||||
|
||||
// #jform_main_source listeners for main_source_vvvvwbg function
|
||||
jQuery('#jform_main_source').on('keyup',function()
|
||||
// #jform_addcalculation listeners for addcalculation_vvvvwbg function
|
||||
jQuery('#jform_addcalculation').on('keyup',function()
|
||||
{
|
||||
var main_source_vvvvwbg = jQuery("#jform_main_source").val();
|
||||
vvvvwbg(main_source_vvvvwbg);
|
||||
var addcalculation_vvvvwbg = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
vvvvwbg(addcalculation_vvvvwbg);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_main_source',function (e)
|
||||
jQuery('#adminForm').on('change', '#jform_addcalculation',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var main_source_vvvvwbg = jQuery("#jform_main_source").val();
|
||||
vvvvwbg(main_source_vvvvwbg);
|
||||
var addcalculation_vvvvwbg = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
vvvvwbg(addcalculation_vvvvwbg);
|
||||
|
||||
});
|
||||
|
||||
@ -251,14 +266,33 @@ jQuery('#adminForm').on('change', '#jform_main_source',function (e)
|
||||
jQuery('#jform_addcalculation').on('keyup',function()
|
||||
{
|
||||
var addcalculation_vvvvwbh = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
vvvvwbh(addcalculation_vvvvwbh);
|
||||
var gettype_vvvvwbh = jQuery("#jform_gettype").val();
|
||||
vvvvwbh(addcalculation_vvvvwbh,gettype_vvvvwbh);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_addcalculation',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var addcalculation_vvvvwbh = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
vvvvwbh(addcalculation_vvvvwbh);
|
||||
var gettype_vvvvwbh = jQuery("#jform_gettype").val();
|
||||
vvvvwbh(addcalculation_vvvvwbh,gettype_vvvvwbh);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvwbh function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var addcalculation_vvvvwbh = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbh = jQuery("#jform_gettype").val();
|
||||
vvvvwbh(addcalculation_vvvvwbh,gettype_vvvvwbh);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var addcalculation_vvvvwbh = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbh = jQuery("#jform_gettype").val();
|
||||
vvvvwbh(addcalculation_vvvvwbh,gettype_vvvvwbh);
|
||||
|
||||
});
|
||||
|
||||
@ -296,37 +330,18 @@ jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
|
||||
});
|
||||
|
||||
// #jform_addcalculation listeners for addcalculation_vvvvwbj function
|
||||
jQuery('#jform_addcalculation').on('keyup',function()
|
||||
// #jform_main_source listeners for main_source_vvvvwbl function
|
||||
jQuery('#jform_main_source').on('keyup',function()
|
||||
{
|
||||
var addcalculation_vvvvwbj = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbj = jQuery("#jform_gettype").val();
|
||||
vvvvwbj(addcalculation_vvvvwbj,gettype_vvvvwbj);
|
||||
var main_source_vvvvwbl = jQuery("#jform_main_source").val();
|
||||
vvvvwbl(main_source_vvvvwbl);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_addcalculation',function (e)
|
||||
jQuery('#adminForm').on('change', '#jform_main_source',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var addcalculation_vvvvwbj = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbj = jQuery("#jform_gettype").val();
|
||||
vvvvwbj(addcalculation_vvvvwbj,gettype_vvvvwbj);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvwbj function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var addcalculation_vvvvwbj = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbj = jQuery("#jform_gettype").val();
|
||||
vvvvwbj(addcalculation_vvvvwbj,gettype_vvvvwbj);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var addcalculation_vvvvwbj = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbj = jQuery("#jform_gettype").val();
|
||||
vvvvwbj(addcalculation_vvvvwbj,gettype_vvvvwbj);
|
||||
var main_source_vvvvwbl = jQuery("#jform_main_source").val();
|
||||
vvvvwbl(main_source_vvvvwbl);
|
||||
|
||||
});
|
||||
|
||||
@ -345,203 +360,203 @@ jQuery('#adminForm').on('change', '#jform_main_source',function (e)
|
||||
|
||||
});
|
||||
|
||||
// #jform_main_source listeners for main_source_vvvvwbn function
|
||||
jQuery('#jform_main_source').on('keyup',function()
|
||||
{
|
||||
var main_source_vvvvwbn = jQuery("#jform_main_source").val();
|
||||
vvvvwbn(main_source_vvvvwbn);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_main_source',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var main_source_vvvvwbn = jQuery("#jform_main_source").val();
|
||||
vvvvwbn(main_source_vvvvwbn);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_before_getitem listeners for add_php_before_getitem_vvvvwbo function
|
||||
// #jform_add_php_before_getitem listeners for add_php_before_getitem_vvvvwbn function
|
||||
jQuery('#jform_add_php_before_getitem').on('keyup',function()
|
||||
{
|
||||
var add_php_before_getitem_vvvvwbo = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbo = jQuery("#jform_gettype").val();
|
||||
vvvvwbo(add_php_before_getitem_vvvvwbo,gettype_vvvvwbo);
|
||||
var add_php_before_getitem_vvvvwbn = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbn = jQuery("#jform_gettype").val();
|
||||
vvvvwbn(add_php_before_getitem_vvvvwbn,gettype_vvvvwbn);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_before_getitem',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_before_getitem_vvvvwbo = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
|
||||
var add_php_before_getitem_vvvvwbn = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbn = jQuery("#jform_gettype").val();
|
||||
vvvvwbn(add_php_before_getitem_vvvvwbn,gettype_vvvvwbn);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvwbn function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var add_php_before_getitem_vvvvwbn = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbn = jQuery("#jform_gettype").val();
|
||||
vvvvwbn(add_php_before_getitem_vvvvwbn,gettype_vvvvwbn);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_before_getitem_vvvvwbn = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbn = jQuery("#jform_gettype").val();
|
||||
vvvvwbn(add_php_before_getitem_vvvvwbn,gettype_vvvvwbn);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_after_getitem listeners for add_php_after_getitem_vvvvwbo function
|
||||
jQuery('#jform_add_php_after_getitem').on('keyup',function()
|
||||
{
|
||||
var add_php_after_getitem_vvvvwbo = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbo = jQuery("#jform_gettype").val();
|
||||
vvvvwbo(add_php_before_getitem_vvvvwbo,gettype_vvvvwbo);
|
||||
vvvvwbo(add_php_after_getitem_vvvvwbo,gettype_vvvvwbo);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_after_getitem',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_after_getitem_vvvvwbo = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbo = jQuery("#jform_gettype").val();
|
||||
vvvvwbo(add_php_after_getitem_vvvvwbo,gettype_vvvvwbo);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvwbo function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var add_php_before_getitem_vvvvwbo = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
|
||||
var add_php_after_getitem_vvvvwbo = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbo = jQuery("#jform_gettype").val();
|
||||
vvvvwbo(add_php_before_getitem_vvvvwbo,gettype_vvvvwbo);
|
||||
vvvvwbo(add_php_after_getitem_vvvvwbo,gettype_vvvvwbo);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_before_getitem_vvvvwbo = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
|
||||
var add_php_after_getitem_vvvvwbo = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbo = jQuery("#jform_gettype").val();
|
||||
vvvvwbo(add_php_before_getitem_vvvvwbo,gettype_vvvvwbo);
|
||||
vvvvwbo(add_php_after_getitem_vvvvwbo,gettype_vvvvwbo);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_after_getitem listeners for add_php_after_getitem_vvvvwbp function
|
||||
jQuery('#jform_add_php_after_getitem').on('keyup',function()
|
||||
{
|
||||
var add_php_after_getitem_vvvvwbp = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbp = jQuery("#jform_gettype").val();
|
||||
vvvvwbp(add_php_after_getitem_vvvvwbp,gettype_vvvvwbp);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_after_getitem',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_after_getitem_vvvvwbp = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbp = jQuery("#jform_gettype").val();
|
||||
vvvvwbp(add_php_after_getitem_vvvvwbp,gettype_vvvvwbp);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvwbp function
|
||||
// #jform_gettype listeners for gettype_vvvvwbq function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var add_php_after_getitem_vvvvwbp = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbp = jQuery("#jform_gettype").val();
|
||||
vvvvwbp(add_php_after_getitem_vvvvwbp,gettype_vvvvwbp);
|
||||
var gettype_vvvvwbq = jQuery("#jform_gettype").val();
|
||||
vvvvwbq(gettype_vvvvwbq);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_after_getitem_vvvvwbp = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbp = jQuery("#jform_gettype").val();
|
||||
vvvvwbp(add_php_after_getitem_vvvvwbp,gettype_vvvvwbp);
|
||||
var gettype_vvvvwbq = jQuery("#jform_gettype").val();
|
||||
vvvvwbq(gettype_vvvvwbq);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_getlistquery listeners for add_php_getlistquery_vvvvwbr function
|
||||
jQuery('#jform_add_php_getlistquery').on('keyup',function()
|
||||
{
|
||||
var add_php_getlistquery_vvvvwbr = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbr = jQuery("#jform_gettype").val();
|
||||
vvvvwbr(add_php_getlistquery_vvvvwbr,gettype_vvvvwbr);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_getlistquery',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_getlistquery_vvvvwbr = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbr = jQuery("#jform_gettype").val();
|
||||
vvvvwbr(add_php_getlistquery_vvvvwbr,gettype_vvvvwbr);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvwbr function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var add_php_getlistquery_vvvvwbr = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbr = jQuery("#jform_gettype").val();
|
||||
vvvvwbr(gettype_vvvvwbr);
|
||||
vvvvwbr(add_php_getlistquery_vvvvwbr,gettype_vvvvwbr);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_getlistquery_vvvvwbr = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbr = jQuery("#jform_gettype").val();
|
||||
vvvvwbr(gettype_vvvvwbr);
|
||||
vvvvwbr(add_php_getlistquery_vvvvwbr,gettype_vvvvwbr);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_getlistquery listeners for add_php_getlistquery_vvvvwbs function
|
||||
jQuery('#jform_add_php_getlistquery').on('keyup',function()
|
||||
// #jform_add_php_before_getitems listeners for add_php_before_getitems_vvvvwbs function
|
||||
jQuery('#jform_add_php_before_getitems').on('keyup',function()
|
||||
{
|
||||
var add_php_getlistquery_vvvvwbs = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
||||
var add_php_before_getitems_vvvvwbs = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbs = jQuery("#jform_gettype").val();
|
||||
vvvvwbs(add_php_getlistquery_vvvvwbs,gettype_vvvvwbs);
|
||||
vvvvwbs(add_php_before_getitems_vvvvwbs,gettype_vvvvwbs);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_getlistquery',function (e)
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_before_getitems',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_getlistquery_vvvvwbs = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
||||
var add_php_before_getitems_vvvvwbs = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbs = jQuery("#jform_gettype").val();
|
||||
vvvvwbs(add_php_getlistquery_vvvvwbs,gettype_vvvvwbs);
|
||||
vvvvwbs(add_php_before_getitems_vvvvwbs,gettype_vvvvwbs);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvwbs function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var add_php_getlistquery_vvvvwbs = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
||||
var add_php_before_getitems_vvvvwbs = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbs = jQuery("#jform_gettype").val();
|
||||
vvvvwbs(add_php_getlistquery_vvvvwbs,gettype_vvvvwbs);
|
||||
vvvvwbs(add_php_before_getitems_vvvvwbs,gettype_vvvvwbs);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_getlistquery_vvvvwbs = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
||||
var add_php_before_getitems_vvvvwbs = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbs = jQuery("#jform_gettype").val();
|
||||
vvvvwbs(add_php_getlistquery_vvvvwbs,gettype_vvvvwbs);
|
||||
vvvvwbs(add_php_before_getitems_vvvvwbs,gettype_vvvvwbs);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_before_getitems listeners for add_php_before_getitems_vvvvwbt function
|
||||
jQuery('#jform_add_php_before_getitems').on('keyup',function()
|
||||
// #jform_add_php_after_getitems listeners for add_php_after_getitems_vvvvwbt function
|
||||
jQuery('#jform_add_php_after_getitems').on('keyup',function()
|
||||
{
|
||||
var add_php_before_getitems_vvvvwbt = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
|
||||
var add_php_after_getitems_vvvvwbt = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbt = jQuery("#jform_gettype").val();
|
||||
vvvvwbt(add_php_before_getitems_vvvvwbt,gettype_vvvvwbt);
|
||||
vvvvwbt(add_php_after_getitems_vvvvwbt,gettype_vvvvwbt);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_before_getitems',function (e)
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_after_getitems',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_before_getitems_vvvvwbt = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
|
||||
var add_php_after_getitems_vvvvwbt = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbt = jQuery("#jform_gettype").val();
|
||||
vvvvwbt(add_php_before_getitems_vvvvwbt,gettype_vvvvwbt);
|
||||
vvvvwbt(add_php_after_getitems_vvvvwbt,gettype_vvvvwbt);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvwbt function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var add_php_before_getitems_vvvvwbt = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
|
||||
var add_php_after_getitems_vvvvwbt = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbt = jQuery("#jform_gettype").val();
|
||||
vvvvwbt(add_php_before_getitems_vvvvwbt,gettype_vvvvwbt);
|
||||
vvvvwbt(add_php_after_getitems_vvvvwbt,gettype_vvvvwbt);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_before_getitems_vvvvwbt = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
|
||||
var add_php_after_getitems_vvvvwbt = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbt = jQuery("#jform_gettype").val();
|
||||
vvvvwbt(add_php_before_getitems_vvvvwbt,gettype_vvvvwbt);
|
||||
vvvvwbt(add_php_after_getitems_vvvvwbt,gettype_vvvvwbt);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_after_getitems listeners for add_php_after_getitems_vvvvwbu function
|
||||
jQuery('#jform_add_php_after_getitems').on('keyup',function()
|
||||
{
|
||||
var add_php_after_getitems_vvvvwbu = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbu = jQuery("#jform_gettype").val();
|
||||
vvvvwbu(add_php_after_getitems_vvvvwbu,gettype_vvvvwbu);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_after_getitems',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_after_getitems_vvvvwbu = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbu = jQuery("#jform_gettype").val();
|
||||
vvvvwbu(add_php_after_getitems_vvvvwbu,gettype_vvvvwbu);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvwbu function
|
||||
// #jform_gettype listeners for gettype_vvvvwbv function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var add_php_after_getitems_vvvvwbu = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbu = jQuery("#jform_gettype").val();
|
||||
vvvvwbu(add_php_after_getitems_vvvvwbu,gettype_vvvvwbu);
|
||||
var gettype_vvvvwbv = jQuery("#jform_gettype").val();
|
||||
vvvvwbv(gettype_vvvvwbv);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_after_getitems_vvvvwbu = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvwbu = jQuery("#jform_gettype").val();
|
||||
vvvvwbu(add_php_after_getitems_vvvvwbu,gettype_vvvvwbu);
|
||||
var gettype_vvvvwbv = jQuery("#jform_gettype").val();
|
||||
vvvvwbv(gettype_vvvvwbv);
|
||||
|
||||
});
|
||||
|
||||
@ -579,63 +594,48 @@ jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var gettype_vvvvwby = jQuery("#jform_gettype").val();
|
||||
vvvvwby(gettype_vvvvwby);
|
||||
var add_php_router_parse_vvvvwby = jQuery("#jform_add_php_router_parse input[type='radio']:checked").val();
|
||||
vvvvwby(gettype_vvvvwby,add_php_router_parse_vvvvwby);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var gettype_vvvvwby = jQuery("#jform_gettype").val();
|
||||
vvvvwby(gettype_vvvvwby);
|
||||
var add_php_router_parse_vvvvwby = jQuery("#jform_add_php_router_parse input[type='radio']:checked").val();
|
||||
vvvvwby(gettype_vvvvwby,add_php_router_parse_vvvvwby);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvwbz function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var gettype_vvvvwbz = jQuery("#jform_gettype").val();
|
||||
var add_php_router_parse_vvvvwbz = jQuery("#jform_add_php_router_parse input[type='radio']:checked").val();
|
||||
vvvvwbz(gettype_vvvvwbz,add_php_router_parse_vvvvwbz);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var gettype_vvvvwbz = jQuery("#jform_gettype").val();
|
||||
var add_php_router_parse_vvvvwbz = jQuery("#jform_add_php_router_parse input[type='radio']:checked").val();
|
||||
vvvvwbz(gettype_vvvvwbz,add_php_router_parse_vvvvwbz);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_router_parse listeners for add_php_router_parse_vvvvwbz function
|
||||
// #jform_add_php_router_parse listeners for add_php_router_parse_vvvvwby function
|
||||
jQuery('#jform_add_php_router_parse').on('keyup',function()
|
||||
{
|
||||
var gettype_vvvvwbz = jQuery("#jform_gettype").val();
|
||||
var add_php_router_parse_vvvvwbz = jQuery("#jform_add_php_router_parse input[type='radio']:checked").val();
|
||||
vvvvwbz(gettype_vvvvwbz,add_php_router_parse_vvvvwbz);
|
||||
var gettype_vvvvwby = jQuery("#jform_gettype").val();
|
||||
var add_php_router_parse_vvvvwby = jQuery("#jform_add_php_router_parse input[type='radio']:checked").val();
|
||||
vvvvwby(gettype_vvvvwby,add_php_router_parse_vvvvwby);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_router_parse',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var gettype_vvvvwbz = jQuery("#jform_gettype").val();
|
||||
var add_php_router_parse_vvvvwbz = jQuery("#jform_add_php_router_parse input[type='radio']:checked").val();
|
||||
vvvvwbz(gettype_vvvvwbz,add_php_router_parse_vvvvwbz);
|
||||
var gettype_vvvvwby = jQuery("#jform_gettype").val();
|
||||
var add_php_router_parse_vvvvwby = jQuery("#jform_add_php_router_parse input[type='radio']:checked").val();
|
||||
vvvvwby(gettype_vvvvwby,add_php_router_parse_vvvvwby);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvwcb function
|
||||
// #jform_gettype listeners for gettype_vvvvwca function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var gettype_vvvvwcb = jQuery("#jform_gettype").val();
|
||||
vvvvwcb(gettype_vvvvwcb);
|
||||
var gettype_vvvvwca = jQuery("#jform_gettype").val();
|
||||
vvvvwca(gettype_vvvvwca);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var gettype_vvvvwcb = jQuery("#jform_gettype").val();
|
||||
vvvvwcb(gettype_vvvvwcb);
|
||||
var gettype_vvvvwca = jQuery("#jform_gettype").val();
|
||||
vvvvwca(gettype_vvvvwca);
|
||||
|
||||
});
|
||||
|
||||
|
@ -145,33 +145,48 @@ $componentParams = $this->params; // will be removed just use $this->params inst
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// #jform_datalenght listeners for datalenght_vvvvwda function
|
||||
// #jform_datalenght listeners for datalenght_vvvvwcz function
|
||||
jQuery('#jform_datalenght').on('keyup',function()
|
||||
{
|
||||
var datalenght_vvvvwda = jQuery("#jform_datalenght").val();
|
||||
vvvvwda(datalenght_vvvvwda);
|
||||
var datalenght_vvvvwcz = jQuery("#jform_datalenght").val();
|
||||
vvvvwcz(datalenght_vvvvwcz);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_datalenght',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var datalenght_vvvvwda = jQuery("#jform_datalenght").val();
|
||||
vvvvwda(datalenght_vvvvwda);
|
||||
var datalenght_vvvvwcz = jQuery("#jform_datalenght").val();
|
||||
vvvvwcz(datalenght_vvvvwcz);
|
||||
|
||||
});
|
||||
|
||||
// #jform_datadefault listeners for datadefault_vvvvwdb function
|
||||
// #jform_datadefault listeners for datadefault_vvvvwda function
|
||||
jQuery('#jform_datadefault').on('keyup',function()
|
||||
{
|
||||
var datadefault_vvvvwdb = jQuery("#jform_datadefault").val();
|
||||
vvvvwdb(datadefault_vvvvwdb);
|
||||
var datadefault_vvvvwda = jQuery("#jform_datadefault").val();
|
||||
vvvvwda(datadefault_vvvvwda);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_datadefault',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var datadefault_vvvvwdb = jQuery("#jform_datadefault").val();
|
||||
vvvvwdb(datadefault_vvvvwdb);
|
||||
var datadefault_vvvvwda = jQuery("#jform_datadefault").val();
|
||||
vvvvwda(datadefault_vvvvwda);
|
||||
|
||||
});
|
||||
|
||||
// #jform_datatype listeners for datatype_vvvvwdb function
|
||||
jQuery('#jform_datatype').on('keyup',function()
|
||||
{
|
||||
var datatype_vvvvwdb = jQuery("#jform_datatype").val();
|
||||
vvvvwdb(datatype_vvvvwdb);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_datatype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var datatype_vvvvwdb = jQuery("#jform_datatype").val();
|
||||
vvvvwdb(datatype_vvvvwdb);
|
||||
|
||||
});
|
||||
|
||||
@ -190,127 +205,112 @@ jQuery('#adminForm').on('change', '#jform_datatype',function (e)
|
||||
|
||||
});
|
||||
|
||||
// #jform_store listeners for store_vvvvwdd function
|
||||
jQuery('#jform_store').on('keyup',function()
|
||||
{
|
||||
var store_vvvvwdd = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdd = jQuery("#jform_datatype").val();
|
||||
vvvvwdd(store_vvvvwdd,datatype_vvvvwdd);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_store',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var store_vvvvwdd = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdd = jQuery("#jform_datatype").val();
|
||||
vvvvwdd(store_vvvvwdd,datatype_vvvvwdd);
|
||||
|
||||
});
|
||||
|
||||
// #jform_datatype listeners for datatype_vvvvwdd function
|
||||
jQuery('#jform_datatype').on('keyup',function()
|
||||
{
|
||||
var store_vvvvwdd = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdd = jQuery("#jform_datatype").val();
|
||||
vvvvwdd(datatype_vvvvwdd);
|
||||
vvvvwdd(store_vvvvwdd,datatype_vvvvwdd);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_datatype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var store_vvvvwdd = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdd = jQuery("#jform_datatype").val();
|
||||
vvvvwdd(datatype_vvvvwdd);
|
||||
vvvvwdd(store_vvvvwdd,datatype_vvvvwdd);
|
||||
|
||||
});
|
||||
|
||||
// #jform_store listeners for store_vvvvwde function
|
||||
// #jform_store listeners for store_vvvvwdf function
|
||||
jQuery('#jform_store').on('keyup',function()
|
||||
{
|
||||
var store_vvvvwde = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwde = jQuery("#jform_datatype").val();
|
||||
vvvvwde(store_vvvvwde,datatype_vvvvwde);
|
||||
var store_vvvvwdf = jQuery("#jform_store").val();
|
||||
vvvvwdf(store_vvvvwdf);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_store',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var store_vvvvwde = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwde = jQuery("#jform_datatype").val();
|
||||
vvvvwde(store_vvvvwde,datatype_vvvvwde);
|
||||
var store_vvvvwdf = jQuery("#jform_store").val();
|
||||
vvvvwdf(store_vvvvwdf);
|
||||
|
||||
});
|
||||
|
||||
// #jform_datatype listeners for datatype_vvvvwde function
|
||||
jQuery('#jform_datatype').on('keyup',function()
|
||||
{
|
||||
var store_vvvvwde = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwde = jQuery("#jform_datatype").val();
|
||||
vvvvwde(store_vvvvwde,datatype_vvvvwde);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_datatype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var store_vvvvwde = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwde = jQuery("#jform_datatype").val();
|
||||
vvvvwde(store_vvvvwde,datatype_vvvvwde);
|
||||
|
||||
});
|
||||
|
||||
// #jform_store listeners for store_vvvvwdg function
|
||||
jQuery('#jform_store').on('keyup',function()
|
||||
{
|
||||
var store_vvvvwdg = jQuery("#jform_store").val();
|
||||
vvvvwdg(store_vvvvwdg);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_store',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var store_vvvvwdg = jQuery("#jform_store").val();
|
||||
vvvvwdg(store_vvvvwdg);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_css_view listeners for add_css_view_vvvvwdh function
|
||||
// #jform_add_css_view listeners for add_css_view_vvvvwdg function
|
||||
jQuery('#jform_add_css_view').on('keyup',function()
|
||||
{
|
||||
var add_css_view_vvvvwdh = jQuery("#jform_add_css_view input[type='radio']:checked").val();
|
||||
vvvvwdh(add_css_view_vvvvwdh);
|
||||
var add_css_view_vvvvwdg = jQuery("#jform_add_css_view input[type='radio']:checked").val();
|
||||
vvvvwdg(add_css_view_vvvvwdg);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_css_view',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_css_view_vvvvwdh = jQuery("#jform_add_css_view input[type='radio']:checked").val();
|
||||
vvvvwdh(add_css_view_vvvvwdh);
|
||||
var add_css_view_vvvvwdg = jQuery("#jform_add_css_view input[type='radio']:checked").val();
|
||||
vvvvwdg(add_css_view_vvvvwdg);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_css_views listeners for add_css_views_vvvvwdi function
|
||||
// #jform_add_css_views listeners for add_css_views_vvvvwdh function
|
||||
jQuery('#jform_add_css_views').on('keyup',function()
|
||||
{
|
||||
var add_css_views_vvvvwdi = jQuery("#jform_add_css_views input[type='radio']:checked").val();
|
||||
vvvvwdi(add_css_views_vvvvwdi);
|
||||
var add_css_views_vvvvwdh = jQuery("#jform_add_css_views input[type='radio']:checked").val();
|
||||
vvvvwdh(add_css_views_vvvvwdh);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_css_views',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_css_views_vvvvwdi = jQuery("#jform_add_css_views input[type='radio']:checked").val();
|
||||
vvvvwdi(add_css_views_vvvvwdi);
|
||||
var add_css_views_vvvvwdh = jQuery("#jform_add_css_views input[type='radio']:checked").val();
|
||||
vvvvwdh(add_css_views_vvvvwdh);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_javascript_view_footer listeners for add_javascript_view_footer_vvvvwdj function
|
||||
// #jform_add_javascript_view_footer listeners for add_javascript_view_footer_vvvvwdi function
|
||||
jQuery('#jform_add_javascript_view_footer').on('keyup',function()
|
||||
{
|
||||
var add_javascript_view_footer_vvvvwdj = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val();
|
||||
vvvvwdj(add_javascript_view_footer_vvvvwdj);
|
||||
var add_javascript_view_footer_vvvvwdi = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val();
|
||||
vvvvwdi(add_javascript_view_footer_vvvvwdi);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_javascript_view_footer',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_javascript_view_footer_vvvvwdj = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val();
|
||||
vvvvwdj(add_javascript_view_footer_vvvvwdj);
|
||||
var add_javascript_view_footer_vvvvwdi = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val();
|
||||
vvvvwdi(add_javascript_view_footer_vvvvwdi);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_javascript_views_footer listeners for add_javascript_views_footer_vvvvwdk function
|
||||
// #jform_add_javascript_views_footer listeners for add_javascript_views_footer_vvvvwdj function
|
||||
jQuery('#jform_add_javascript_views_footer').on('keyup',function()
|
||||
{
|
||||
var add_javascript_views_footer_vvvvwdk = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val();
|
||||
vvvvwdk(add_javascript_views_footer_vvvvwdk);
|
||||
var add_javascript_views_footer_vvvvwdj = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val();
|
||||
vvvvwdj(add_javascript_views_footer_vvvvwdj);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_javascript_views_footer',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_javascript_views_footer_vvvvwdk = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val();
|
||||
vvvvwdk(add_javascript_views_footer_vvvvwdk);
|
||||
var add_javascript_views_footer_vvvvwdj = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val();
|
||||
vvvvwdj(add_javascript_views_footer_vvvvwdj);
|
||||
|
||||
});
|
||||
|
||||
|
@ -134,321 +134,378 @@ $componentParams = $this->params; // will be removed just use $this->params inst
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// #jform_datalenght listeners for datalenght_vvvvwdl function
|
||||
// #jform_datalenght listeners for datalenght_vvvvwdk function
|
||||
jQuery('#jform_datalenght').on('keyup',function()
|
||||
{
|
||||
var datalenght_vvvvwdl = jQuery("#jform_datalenght").val();
|
||||
var has_defaults_vvvvwdl = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdl(datalenght_vvvvwdl,has_defaults_vvvvwdl);
|
||||
var datalenght_vvvvwdk = jQuery("#jform_datalenght").val();
|
||||
var has_defaults_vvvvwdk = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdk(datalenght_vvvvwdk,has_defaults_vvvvwdk);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_datalenght',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var datalenght_vvvvwdl = jQuery("#jform_datalenght").val();
|
||||
var has_defaults_vvvvwdl = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdl(datalenght_vvvvwdl,has_defaults_vvvvwdl);
|
||||
var datalenght_vvvvwdk = jQuery("#jform_datalenght").val();
|
||||
var has_defaults_vvvvwdk = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdk(datalenght_vvvvwdk,has_defaults_vvvvwdk);
|
||||
|
||||
});
|
||||
|
||||
// #jform_has_defaults listeners for has_defaults_vvvvwdl function
|
||||
// #jform_has_defaults listeners for has_defaults_vvvvwdk function
|
||||
jQuery('#jform_has_defaults').on('keyup',function()
|
||||
{
|
||||
var datalenght_vvvvwdl = jQuery("#jform_datalenght").val();
|
||||
var has_defaults_vvvvwdl = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdl(datalenght_vvvvwdl,has_defaults_vvvvwdl);
|
||||
var datalenght_vvvvwdk = jQuery("#jform_datalenght").val();
|
||||
var has_defaults_vvvvwdk = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdk(datalenght_vvvvwdk,has_defaults_vvvvwdk);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_has_defaults',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var datalenght_vvvvwdl = jQuery("#jform_datalenght").val();
|
||||
var has_defaults_vvvvwdl = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdl(datalenght_vvvvwdl,has_defaults_vvvvwdl);
|
||||
var datalenght_vvvvwdk = jQuery("#jform_datalenght").val();
|
||||
var has_defaults_vvvvwdk = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdk(datalenght_vvvvwdk,has_defaults_vvvvwdk);
|
||||
|
||||
});
|
||||
|
||||
// #jform_datadefault listeners for datadefault_vvvvwdn function
|
||||
// #jform_datadefault listeners for datadefault_vvvvwdm function
|
||||
jQuery('#jform_datadefault').on('keyup',function()
|
||||
{
|
||||
var datadefault_vvvvwdn = jQuery("#jform_datadefault").val();
|
||||
var has_defaults_vvvvwdn = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdn(datadefault_vvvvwdn,has_defaults_vvvvwdn);
|
||||
var datadefault_vvvvwdm = jQuery("#jform_datadefault").val();
|
||||
var has_defaults_vvvvwdm = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdm(datadefault_vvvvwdm,has_defaults_vvvvwdm);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_datadefault',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var datadefault_vvvvwdn = jQuery("#jform_datadefault").val();
|
||||
var has_defaults_vvvvwdn = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdn(datadefault_vvvvwdn,has_defaults_vvvvwdn);
|
||||
var datadefault_vvvvwdm = jQuery("#jform_datadefault").val();
|
||||
var has_defaults_vvvvwdm = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdm(datadefault_vvvvwdm,has_defaults_vvvvwdm);
|
||||
|
||||
});
|
||||
|
||||
// #jform_has_defaults listeners for has_defaults_vvvvwdn function
|
||||
// #jform_has_defaults listeners for has_defaults_vvvvwdm function
|
||||
jQuery('#jform_has_defaults').on('keyup',function()
|
||||
{
|
||||
var datadefault_vvvvwdn = jQuery("#jform_datadefault").val();
|
||||
var has_defaults_vvvvwdn = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdn(datadefault_vvvvwdn,has_defaults_vvvvwdn);
|
||||
var datadefault_vvvvwdm = jQuery("#jform_datadefault").val();
|
||||
var has_defaults_vvvvwdm = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdm(datadefault_vvvvwdm,has_defaults_vvvvwdm);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_has_defaults',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var datadefault_vvvvwdn = jQuery("#jform_datadefault").val();
|
||||
var has_defaults_vvvvwdn = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdn(datadefault_vvvvwdn,has_defaults_vvvvwdn);
|
||||
var datadefault_vvvvwdm = jQuery("#jform_datadefault").val();
|
||||
var has_defaults_vvvvwdm = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdm(datadefault_vvvvwdm,has_defaults_vvvvwdm);
|
||||
|
||||
});
|
||||
|
||||
// #jform_datatype listeners for datatype_vvvvwdp function
|
||||
// #jform_datatype listeners for datatype_vvvvwdo function
|
||||
jQuery('#jform_datatype').on('keyup',function()
|
||||
{
|
||||
var datatype_vvvvwdp = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdp = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdp(datatype_vvvvwdp,has_defaults_vvvvwdp);
|
||||
var datatype_vvvvwdo = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdo = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdo(datatype_vvvvwdo,has_defaults_vvvvwdo);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_datatype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var datatype_vvvvwdp = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdp = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdp(datatype_vvvvwdp,has_defaults_vvvvwdp);
|
||||
var datatype_vvvvwdo = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdo = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdo(datatype_vvvvwdo,has_defaults_vvvvwdo);
|
||||
|
||||
});
|
||||
|
||||
// #jform_has_defaults listeners for has_defaults_vvvvwdp function
|
||||
// #jform_has_defaults listeners for has_defaults_vvvvwdo function
|
||||
jQuery('#jform_has_defaults').on('keyup',function()
|
||||
{
|
||||
var datatype_vvvvwdp = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdp = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdp(datatype_vvvvwdp,has_defaults_vvvvwdp);
|
||||
var datatype_vvvvwdo = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdo = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdo(datatype_vvvvwdo,has_defaults_vvvvwdo);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_has_defaults',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var datatype_vvvvwdp = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdp = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdp(datatype_vvvvwdp,has_defaults_vvvvwdp);
|
||||
var datatype_vvvvwdo = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdo = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdo(datatype_vvvvwdo,has_defaults_vvvvwdo);
|
||||
|
||||
});
|
||||
|
||||
// #jform_datatype listeners for datatype_vvvvwdr function
|
||||
// #jform_datatype listeners for datatype_vvvvwdq function
|
||||
jQuery('#jform_datatype').on('keyup',function()
|
||||
{
|
||||
var datatype_vvvvwdr = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdr = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdr(datatype_vvvvwdr,has_defaults_vvvvwdr);
|
||||
var datatype_vvvvwdq = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdq = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdq(datatype_vvvvwdq,has_defaults_vvvvwdq);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_datatype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var datatype_vvvvwdr = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdr = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdr(datatype_vvvvwdr,has_defaults_vvvvwdr);
|
||||
var datatype_vvvvwdq = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdq = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdq(datatype_vvvvwdq,has_defaults_vvvvwdq);
|
||||
|
||||
});
|
||||
|
||||
// #jform_has_defaults listeners for has_defaults_vvvvwdq function
|
||||
jQuery('#jform_has_defaults').on('keyup',function()
|
||||
{
|
||||
var datatype_vvvvwdq = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdq = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdq(datatype_vvvvwdq,has_defaults_vvvvwdq);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_has_defaults',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var datatype_vvvvwdq = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdq = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdq(datatype_vvvvwdq,has_defaults_vvvvwdq);
|
||||
|
||||
});
|
||||
|
||||
// #jform_has_defaults listeners for has_defaults_vvvvwdr function
|
||||
jQuery('#jform_has_defaults').on('keyup',function()
|
||||
{
|
||||
var datatype_vvvvwdr = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdr = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdr(datatype_vvvvwdr,has_defaults_vvvvwdr);
|
||||
var datatype_vvvvwdr = jQuery("#jform_datatype").val();
|
||||
vvvvwdr(has_defaults_vvvvwdr,datatype_vvvvwdr);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_has_defaults',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var datatype_vvvvwdr = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdr = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdr(datatype_vvvvwdr,has_defaults_vvvvwdr);
|
||||
var datatype_vvvvwdr = jQuery("#jform_datatype").val();
|
||||
vvvvwdr(has_defaults_vvvvwdr,datatype_vvvvwdr);
|
||||
|
||||
});
|
||||
|
||||
// #jform_has_defaults listeners for has_defaults_vvvvwds function
|
||||
jQuery('#jform_has_defaults').on('keyup',function()
|
||||
// #jform_datatype listeners for datatype_vvvvwdr function
|
||||
jQuery('#jform_datatype').on('keyup',function()
|
||||
{
|
||||
var has_defaults_vvvvwds = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
var datatype_vvvvwds = jQuery("#jform_datatype").val();
|
||||
vvvvwds(has_defaults_vvvvwds,datatype_vvvvwds);
|
||||
var has_defaults_vvvvwdr = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
var datatype_vvvvwdr = jQuery("#jform_datatype").val();
|
||||
vvvvwdr(has_defaults_vvvvwdr,datatype_vvvvwdr);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_has_defaults',function (e)
|
||||
jQuery('#adminForm').on('change', '#jform_datatype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var has_defaults_vvvvwds = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
var datatype_vvvvwds = jQuery("#jform_datatype").val();
|
||||
vvvvwds(has_defaults_vvvvwds,datatype_vvvvwds);
|
||||
var has_defaults_vvvvwdr = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
var datatype_vvvvwdr = jQuery("#jform_datatype").val();
|
||||
vvvvwdr(has_defaults_vvvvwdr,datatype_vvvvwdr);
|
||||
|
||||
});
|
||||
|
||||
// #jform_datatype listeners for datatype_vvvvwds function
|
||||
jQuery('#jform_datatype').on('keyup',function()
|
||||
{
|
||||
var has_defaults_vvvvwds = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
var datatype_vvvvwds = jQuery("#jform_datatype").val();
|
||||
vvvvwds(has_defaults_vvvvwds,datatype_vvvvwds);
|
||||
var has_defaults_vvvvwds = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwds(datatype_vvvvwds,has_defaults_vvvvwds);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_datatype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var has_defaults_vvvvwds = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
var datatype_vvvvwds = jQuery("#jform_datatype").val();
|
||||
vvvvwds(has_defaults_vvvvwds,datatype_vvvvwds);
|
||||
var has_defaults_vvvvwds = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwds(datatype_vvvvwds,has_defaults_vvvvwds);
|
||||
|
||||
});
|
||||
|
||||
// #jform_datatype listeners for datatype_vvvvwdt function
|
||||
jQuery('#jform_datatype').on('keyup',function()
|
||||
{
|
||||
var datatype_vvvvwdt = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdt = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdt(datatype_vvvvwdt,has_defaults_vvvvwdt);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_datatype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var datatype_vvvvwdt = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdt = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdt(datatype_vvvvwdt,has_defaults_vvvvwdt);
|
||||
|
||||
});
|
||||
|
||||
// #jform_has_defaults listeners for has_defaults_vvvvwdt function
|
||||
// #jform_has_defaults listeners for has_defaults_vvvvwds function
|
||||
jQuery('#jform_has_defaults').on('keyup',function()
|
||||
{
|
||||
var datatype_vvvvwdt = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdt = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdt(datatype_vvvvwdt,has_defaults_vvvvwdt);
|
||||
var datatype_vvvvwds = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwds = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwds(datatype_vvvvwds,has_defaults_vvvvwds);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_has_defaults',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var datatype_vvvvwdt = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdt = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdt(datatype_vvvvwdt,has_defaults_vvvvwdt);
|
||||
var datatype_vvvvwds = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwds = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwds(datatype_vvvvwds,has_defaults_vvvvwds);
|
||||
|
||||
});
|
||||
|
||||
// #jform_store listeners for store_vvvvwdv function
|
||||
// #jform_store listeners for store_vvvvwdu function
|
||||
jQuery('#jform_store').on('keyup',function()
|
||||
{
|
||||
var store_vvvvwdv = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdv = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdv = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdv(store_vvvvwdv,datatype_vvvvwdv,has_defaults_vvvvwdv);
|
||||
var store_vvvvwdu = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdu = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdu = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdu(store_vvvvwdu,datatype_vvvvwdu,has_defaults_vvvvwdu);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_store',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var store_vvvvwdv = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdv = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdv = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdv(store_vvvvwdv,datatype_vvvvwdv,has_defaults_vvvvwdv);
|
||||
var store_vvvvwdu = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdu = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdu = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdu(store_vvvvwdu,datatype_vvvvwdu,has_defaults_vvvvwdu);
|
||||
|
||||
});
|
||||
|
||||
// #jform_datatype listeners for datatype_vvvvwdu function
|
||||
jQuery('#jform_datatype').on('keyup',function()
|
||||
{
|
||||
var store_vvvvwdu = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdu = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdu = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdu(store_vvvvwdu,datatype_vvvvwdu,has_defaults_vvvvwdu);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_datatype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var store_vvvvwdu = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdu = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdu = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdu(store_vvvvwdu,datatype_vvvvwdu,has_defaults_vvvvwdu);
|
||||
|
||||
});
|
||||
|
||||
// #jform_has_defaults listeners for has_defaults_vvvvwdu function
|
||||
jQuery('#jform_has_defaults').on('keyup',function()
|
||||
{
|
||||
var store_vvvvwdu = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdu = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdu = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdu(store_vvvvwdu,datatype_vvvvwdu,has_defaults_vvvvwdu);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_has_defaults',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var store_vvvvwdu = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdu = jQuery("#jform_datatype").val();
|
||||
var has_defaults_vvvvwdu = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdu(store_vvvvwdu,datatype_vvvvwdu,has_defaults_vvvvwdu);
|
||||
|
||||
});
|
||||
|
||||
// #jform_datatype listeners for datatype_vvvvwdv function
|
||||
jQuery('#jform_datatype').on('keyup',function()
|
||||
{
|
||||
var store_vvvvwdv = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdv = jQuery("#jform_datatype").val();
|
||||
var store_vvvvwdv = jQuery("#jform_store").val();
|
||||
var has_defaults_vvvvwdv = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdv(store_vvvvwdv,datatype_vvvvwdv,has_defaults_vvvvwdv);
|
||||
vvvvwdv(datatype_vvvvwdv,store_vvvvwdv,has_defaults_vvvvwdv);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_datatype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var store_vvvvwdv = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdv = jQuery("#jform_datatype").val();
|
||||
var store_vvvvwdv = jQuery("#jform_store").val();
|
||||
var has_defaults_vvvvwdv = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdv(store_vvvvwdv,datatype_vvvvwdv,has_defaults_vvvvwdv);
|
||||
vvvvwdv(datatype_vvvvwdv,store_vvvvwdv,has_defaults_vvvvwdv);
|
||||
|
||||
});
|
||||
|
||||
// #jform_store listeners for store_vvvvwdv function
|
||||
jQuery('#jform_store').on('keyup',function()
|
||||
{
|
||||
var datatype_vvvvwdv = jQuery("#jform_datatype").val();
|
||||
var store_vvvvwdv = jQuery("#jform_store").val();
|
||||
var has_defaults_vvvvwdv = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdv(datatype_vvvvwdv,store_vvvvwdv,has_defaults_vvvvwdv);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_store',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var datatype_vvvvwdv = jQuery("#jform_datatype").val();
|
||||
var store_vvvvwdv = jQuery("#jform_store").val();
|
||||
var has_defaults_vvvvwdv = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdv(datatype_vvvvwdv,store_vvvvwdv,has_defaults_vvvvwdv);
|
||||
|
||||
});
|
||||
|
||||
// #jform_has_defaults listeners for has_defaults_vvvvwdv function
|
||||
jQuery('#jform_has_defaults').on('keyup',function()
|
||||
{
|
||||
var store_vvvvwdv = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdv = jQuery("#jform_datatype").val();
|
||||
var store_vvvvwdv = jQuery("#jform_store").val();
|
||||
var has_defaults_vvvvwdv = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdv(store_vvvvwdv,datatype_vvvvwdv,has_defaults_vvvvwdv);
|
||||
vvvvwdv(datatype_vvvvwdv,store_vvvvwdv,has_defaults_vvvvwdv);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_has_defaults',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var store_vvvvwdv = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdv = jQuery("#jform_datatype").val();
|
||||
var store_vvvvwdv = jQuery("#jform_store").val();
|
||||
var has_defaults_vvvvwdv = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdv(store_vvvvwdv,datatype_vvvvwdv,has_defaults_vvvvwdv);
|
||||
|
||||
});
|
||||
|
||||
// #jform_datatype listeners for datatype_vvvvwdw function
|
||||
jQuery('#jform_datatype').on('keyup',function()
|
||||
{
|
||||
var datatype_vvvvwdw = jQuery("#jform_datatype").val();
|
||||
var store_vvvvwdw = jQuery("#jform_store").val();
|
||||
var has_defaults_vvvvwdw = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdw(datatype_vvvvwdw,store_vvvvwdw,has_defaults_vvvvwdw);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_datatype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var datatype_vvvvwdw = jQuery("#jform_datatype").val();
|
||||
var store_vvvvwdw = jQuery("#jform_store").val();
|
||||
var has_defaults_vvvvwdw = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdw(datatype_vvvvwdw,store_vvvvwdw,has_defaults_vvvvwdw);
|
||||
|
||||
});
|
||||
|
||||
// #jform_store listeners for store_vvvvwdw function
|
||||
jQuery('#jform_store').on('keyup',function()
|
||||
{
|
||||
var datatype_vvvvwdw = jQuery("#jform_datatype").val();
|
||||
var store_vvvvwdw = jQuery("#jform_store").val();
|
||||
var has_defaults_vvvvwdw = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdw(datatype_vvvvwdw,store_vvvvwdw,has_defaults_vvvvwdw);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_store',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var datatype_vvvvwdw = jQuery("#jform_datatype").val();
|
||||
var store_vvvvwdw = jQuery("#jform_store").val();
|
||||
var has_defaults_vvvvwdw = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdw(datatype_vvvvwdw,store_vvvvwdw,has_defaults_vvvvwdw);
|
||||
vvvvwdv(datatype_vvvvwdv,store_vvvvwdv,has_defaults_vvvvwdv);
|
||||
|
||||
});
|
||||
|
||||
// #jform_has_defaults listeners for has_defaults_vvvvwdw function
|
||||
jQuery('#jform_has_defaults').on('keyup',function()
|
||||
{
|
||||
var datatype_vvvvwdw = jQuery("#jform_datatype").val();
|
||||
var store_vvvvwdw = jQuery("#jform_store").val();
|
||||
var has_defaults_vvvvwdw = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdw(datatype_vvvvwdw,store_vvvvwdw,has_defaults_vvvvwdw);
|
||||
var store_vvvvwdw = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdw = jQuery("#jform_datatype").val();
|
||||
vvvvwdw(has_defaults_vvvvwdw,store_vvvvwdw,datatype_vvvvwdw);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_has_defaults',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var datatype_vvvvwdw = jQuery("#jform_datatype").val();
|
||||
var store_vvvvwdw = jQuery("#jform_store").val();
|
||||
var has_defaults_vvvvwdw = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdw(datatype_vvvvwdw,store_vvvvwdw,has_defaults_vvvvwdw);
|
||||
var store_vvvvwdw = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdw = jQuery("#jform_datatype").val();
|
||||
vvvvwdw(has_defaults_vvvvwdw,store_vvvvwdw,datatype_vvvvwdw);
|
||||
|
||||
});
|
||||
|
||||
// #jform_store listeners for store_vvvvwdw function
|
||||
jQuery('#jform_store').on('keyup',function()
|
||||
{
|
||||
var has_defaults_vvvvwdw = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
var store_vvvvwdw = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdw = jQuery("#jform_datatype").val();
|
||||
vvvvwdw(has_defaults_vvvvwdw,store_vvvvwdw,datatype_vvvvwdw);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_store',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var has_defaults_vvvvwdw = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
var store_vvvvwdw = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdw = jQuery("#jform_datatype").val();
|
||||
vvvvwdw(has_defaults_vvvvwdw,store_vvvvwdw,datatype_vvvvwdw);
|
||||
|
||||
});
|
||||
|
||||
// #jform_datatype listeners for datatype_vvvvwdw function
|
||||
jQuery('#jform_datatype').on('keyup',function()
|
||||
{
|
||||
var has_defaults_vvvvwdw = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
var store_vvvvwdw = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdw = jQuery("#jform_datatype").val();
|
||||
vvvvwdw(has_defaults_vvvvwdw,store_vvvvwdw,datatype_vvvvwdw);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_datatype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var has_defaults_vvvvwdw = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
var store_vvvvwdw = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdw = jQuery("#jform_datatype").val();
|
||||
vvvvwdw(has_defaults_vvvvwdw,store_vvvvwdw,datatype_vvvvwdw);
|
||||
|
||||
});
|
||||
|
||||
@ -456,71 +513,14 @@ jQuery('#adminForm').on('change', '#jform_has_defaults',function (e)
|
||||
jQuery('#jform_has_defaults').on('keyup',function()
|
||||
{
|
||||
var has_defaults_vvvvwdx = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
var store_vvvvwdx = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdx = jQuery("#jform_datatype").val();
|
||||
vvvvwdx(has_defaults_vvvvwdx,store_vvvvwdx,datatype_vvvvwdx);
|
||||
vvvvwdx(has_defaults_vvvvwdx);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_has_defaults',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var has_defaults_vvvvwdx = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
var store_vvvvwdx = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdx = jQuery("#jform_datatype").val();
|
||||
vvvvwdx(has_defaults_vvvvwdx,store_vvvvwdx,datatype_vvvvwdx);
|
||||
|
||||
});
|
||||
|
||||
// #jform_store listeners for store_vvvvwdx function
|
||||
jQuery('#jform_store').on('keyup',function()
|
||||
{
|
||||
var has_defaults_vvvvwdx = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
var store_vvvvwdx = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdx = jQuery("#jform_datatype").val();
|
||||
vvvvwdx(has_defaults_vvvvwdx,store_vvvvwdx,datatype_vvvvwdx);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_store',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var has_defaults_vvvvwdx = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
var store_vvvvwdx = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdx = jQuery("#jform_datatype").val();
|
||||
vvvvwdx(has_defaults_vvvvwdx,store_vvvvwdx,datatype_vvvvwdx);
|
||||
|
||||
});
|
||||
|
||||
// #jform_datatype listeners for datatype_vvvvwdx function
|
||||
jQuery('#jform_datatype').on('keyup',function()
|
||||
{
|
||||
var has_defaults_vvvvwdx = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
var store_vvvvwdx = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdx = jQuery("#jform_datatype").val();
|
||||
vvvvwdx(has_defaults_vvvvwdx,store_vvvvwdx,datatype_vvvvwdx);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_datatype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var has_defaults_vvvvwdx = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
var store_vvvvwdx = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdx = jQuery("#jform_datatype").val();
|
||||
vvvvwdx(has_defaults_vvvvwdx,store_vvvvwdx,datatype_vvvvwdx);
|
||||
|
||||
});
|
||||
|
||||
// #jform_has_defaults listeners for has_defaults_vvvvwdy function
|
||||
jQuery('#jform_has_defaults').on('keyup',function()
|
||||
{
|
||||
var has_defaults_vvvvwdy = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdy(has_defaults_vvvvwdy);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_has_defaults',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var has_defaults_vvvvwdy = jQuery("#jform_has_defaults input[type='radio']:checked").val();
|
||||
vvvvwdy(has_defaults_vvvvwdy);
|
||||
vvvvwdx(has_defaults_vvvvwdx);
|
||||
|
||||
});
|
||||
|
||||
|
@ -95,6 +95,21 @@ $componentParams = $this->params; // will be removed just use $this->params inst
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// #jform_location listeners for location_vvvvwei function
|
||||
jQuery('#jform_location').on('keyup',function()
|
||||
{
|
||||
var location_vvvvwei = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvwei(location_vvvvwei);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_location',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var location_vvvvwei = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvwei(location_vvvvwei);
|
||||
|
||||
});
|
||||
|
||||
// #jform_location listeners for location_vvvvwej function
|
||||
jQuery('#jform_location').on('keyup',function()
|
||||
{
|
||||
@ -110,18 +125,18 @@ jQuery('#adminForm').on('change', '#jform_location',function (e)
|
||||
|
||||
});
|
||||
|
||||
// #jform_location listeners for location_vvvvwek function
|
||||
jQuery('#jform_location').on('keyup',function()
|
||||
// #jform_type listeners for type_vvvvwek function
|
||||
jQuery('#jform_type').on('keyup',function()
|
||||
{
|
||||
var location_vvvvwek = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvwek(location_vvvvwek);
|
||||
var type_vvvvwek = jQuery("#jform_type").val();
|
||||
vvvvwek(type_vvvvwek);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_location',function (e)
|
||||
jQuery('#adminForm').on('change', '#jform_type',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var location_vvvvwek = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvwek(location_vvvvwek);
|
||||
var type_vvvvwek = jQuery("#jform_type").val();
|
||||
vvvvwek(type_vvvvwek);
|
||||
|
||||
});
|
||||
|
||||
@ -155,33 +170,18 @@ jQuery('#adminForm').on('change', '#jform_type',function (e)
|
||||
|
||||
});
|
||||
|
||||
// #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
|
||||
// #jform_target listeners for target_vvvvwen function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var target_vvvvweo = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvweo(target_vvvvweo);
|
||||
var target_vvvvwen = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwen(target_vvvvwen);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvweo = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvweo(target_vvvvweo);
|
||||
var target_vvvvwen = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwen(target_vvvvwen);
|
||||
|
||||
});
|
||||
|
||||
|
@ -240,368 +240,334 @@ jQuery('#adminForm').on('change', '#jform_class_extends',function (e)
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_head listeners for add_head_vvvvvya function
|
||||
jQuery('#jform_add_head').on('keyup',function()
|
||||
{
|
||||
var add_head_vvvvvya = jQuery("#jform_add_head input[type='radio']:checked").val();
|
||||
var class_extends_vvvvvya = jQuery("#jform_class_extends").val();
|
||||
vvvvvya(add_head_vvvvvya,class_extends_vvvvvya);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_head',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_head_vvvvvya = jQuery("#jform_add_head input[type='radio']:checked").val();
|
||||
var class_extends_vvvvvya = jQuery("#jform_class_extends").val();
|
||||
vvvvvya(add_head_vvvvvya,class_extends_vvvvvya);
|
||||
|
||||
});
|
||||
|
||||
// #jform_class_extends listeners for class_extends_vvvvvya function
|
||||
jQuery('#jform_class_extends').on('keyup',function()
|
||||
{
|
||||
var add_head_vvvvvya = jQuery("#jform_add_head input[type='radio']:checked").val();
|
||||
var class_extends_vvvvvya = jQuery("#jform_class_extends").val();
|
||||
vvvvvya(add_head_vvvvvya,class_extends_vvvvvya);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_class_extends',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_head_vvvvvya = jQuery("#jform_add_head input[type='radio']:checked").val();
|
||||
var class_extends_vvvvvya = jQuery("#jform_class_extends").val();
|
||||
vvvvvya(add_head_vvvvvya,class_extends_vvvvvya);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_script_construct listeners for add_php_script_construct_vvvvvyc function
|
||||
// #jform_add_php_script_construct listeners for add_php_script_construct_vvvvvyb function
|
||||
jQuery('#jform_add_php_script_construct').on('keyup',function()
|
||||
{
|
||||
var add_php_script_construct_vvvvvyc = jQuery("#jform_add_php_script_construct input[type='radio']:checked").val();
|
||||
vvvvvyc(add_php_script_construct_vvvvvyc);
|
||||
var add_php_script_construct_vvvvvyb = jQuery("#jform_add_php_script_construct input[type='radio']:checked").val();
|
||||
vvvvvyb(add_php_script_construct_vvvvvyb);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_script_construct',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_script_construct_vvvvvyc = jQuery("#jform_add_php_script_construct input[type='radio']:checked").val();
|
||||
vvvvvyc(add_php_script_construct_vvvvvyc);
|
||||
var add_php_script_construct_vvvvvyb = jQuery("#jform_add_php_script_construct input[type='radio']:checked").val();
|
||||
vvvvvyb(add_php_script_construct_vvvvvyb);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_preflight_install listeners for add_php_preflight_install_vvvvvyd function
|
||||
// #jform_add_php_preflight_install listeners for add_php_preflight_install_vvvvvyc function
|
||||
jQuery('#jform_add_php_preflight_install').on('keyup',function()
|
||||
{
|
||||
var add_php_preflight_install_vvvvvyd = jQuery("#jform_add_php_preflight_install input[type='radio']:checked").val();
|
||||
vvvvvyd(add_php_preflight_install_vvvvvyd);
|
||||
var add_php_preflight_install_vvvvvyc = jQuery("#jform_add_php_preflight_install input[type='radio']:checked").val();
|
||||
vvvvvyc(add_php_preflight_install_vvvvvyc);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_preflight_install',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_preflight_install_vvvvvyd = jQuery("#jform_add_php_preflight_install input[type='radio']:checked").val();
|
||||
vvvvvyd(add_php_preflight_install_vvvvvyd);
|
||||
var add_php_preflight_install_vvvvvyc = jQuery("#jform_add_php_preflight_install input[type='radio']:checked").val();
|
||||
vvvvvyc(add_php_preflight_install_vvvvvyc);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_preflight_update listeners for add_php_preflight_update_vvvvvye function
|
||||
// #jform_add_php_preflight_update listeners for add_php_preflight_update_vvvvvyd function
|
||||
jQuery('#jform_add_php_preflight_update').on('keyup',function()
|
||||
{
|
||||
var add_php_preflight_update_vvvvvye = jQuery("#jform_add_php_preflight_update input[type='radio']:checked").val();
|
||||
vvvvvye(add_php_preflight_update_vvvvvye);
|
||||
var add_php_preflight_update_vvvvvyd = jQuery("#jform_add_php_preflight_update input[type='radio']:checked").val();
|
||||
vvvvvyd(add_php_preflight_update_vvvvvyd);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_preflight_update',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_preflight_update_vvvvvye = jQuery("#jform_add_php_preflight_update input[type='radio']:checked").val();
|
||||
vvvvvye(add_php_preflight_update_vvvvvye);
|
||||
var add_php_preflight_update_vvvvvyd = jQuery("#jform_add_php_preflight_update input[type='radio']:checked").val();
|
||||
vvvvvyd(add_php_preflight_update_vvvvvyd);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_preflight_uninstall listeners for add_php_preflight_uninstall_vvvvvyf function
|
||||
// #jform_add_php_preflight_uninstall listeners for add_php_preflight_uninstall_vvvvvye function
|
||||
jQuery('#jform_add_php_preflight_uninstall').on('keyup',function()
|
||||
{
|
||||
var add_php_preflight_uninstall_vvvvvyf = jQuery("#jform_add_php_preflight_uninstall input[type='radio']:checked").val();
|
||||
vvvvvyf(add_php_preflight_uninstall_vvvvvyf);
|
||||
var add_php_preflight_uninstall_vvvvvye = jQuery("#jform_add_php_preflight_uninstall input[type='radio']:checked").val();
|
||||
vvvvvye(add_php_preflight_uninstall_vvvvvye);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_preflight_uninstall',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_preflight_uninstall_vvvvvyf = jQuery("#jform_add_php_preflight_uninstall input[type='radio']:checked").val();
|
||||
vvvvvyf(add_php_preflight_uninstall_vvvvvyf);
|
||||
var add_php_preflight_uninstall_vvvvvye = jQuery("#jform_add_php_preflight_uninstall input[type='radio']:checked").val();
|
||||
vvvvvye(add_php_preflight_uninstall_vvvvvye);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_postflight_install listeners for add_php_postflight_install_vvvvvyg function
|
||||
// #jform_add_php_postflight_install listeners for add_php_postflight_install_vvvvvyf function
|
||||
jQuery('#jform_add_php_postflight_install').on('keyup',function()
|
||||
{
|
||||
var add_php_postflight_install_vvvvvyg = jQuery("#jform_add_php_postflight_install input[type='radio']:checked").val();
|
||||
vvvvvyg(add_php_postflight_install_vvvvvyg);
|
||||
var add_php_postflight_install_vvvvvyf = jQuery("#jform_add_php_postflight_install input[type='radio']:checked").val();
|
||||
vvvvvyf(add_php_postflight_install_vvvvvyf);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_postflight_install',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_postflight_install_vvvvvyg = jQuery("#jform_add_php_postflight_install input[type='radio']:checked").val();
|
||||
vvvvvyg(add_php_postflight_install_vvvvvyg);
|
||||
var add_php_postflight_install_vvvvvyf = jQuery("#jform_add_php_postflight_install input[type='radio']:checked").val();
|
||||
vvvvvyf(add_php_postflight_install_vvvvvyf);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_postflight_update listeners for add_php_postflight_update_vvvvvyh function
|
||||
// #jform_add_php_postflight_update listeners for add_php_postflight_update_vvvvvyg function
|
||||
jQuery('#jform_add_php_postflight_update').on('keyup',function()
|
||||
{
|
||||
var add_php_postflight_update_vvvvvyh = jQuery("#jform_add_php_postflight_update input[type='radio']:checked").val();
|
||||
vvvvvyh(add_php_postflight_update_vvvvvyh);
|
||||
var add_php_postflight_update_vvvvvyg = jQuery("#jform_add_php_postflight_update input[type='radio']:checked").val();
|
||||
vvvvvyg(add_php_postflight_update_vvvvvyg);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_postflight_update',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_postflight_update_vvvvvyh = jQuery("#jform_add_php_postflight_update input[type='radio']:checked").val();
|
||||
vvvvvyh(add_php_postflight_update_vvvvvyh);
|
||||
var add_php_postflight_update_vvvvvyg = jQuery("#jform_add_php_postflight_update input[type='radio']:checked").val();
|
||||
vvvvvyg(add_php_postflight_update_vvvvvyg);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_method_uninstall listeners for add_php_method_uninstall_vvvvvyi function
|
||||
// #jform_add_php_method_uninstall listeners for add_php_method_uninstall_vvvvvyh function
|
||||
jQuery('#jform_add_php_method_uninstall').on('keyup',function()
|
||||
{
|
||||
var add_php_method_uninstall_vvvvvyi = jQuery("#jform_add_php_method_uninstall input[type='radio']:checked").val();
|
||||
vvvvvyi(add_php_method_uninstall_vvvvvyi);
|
||||
var add_php_method_uninstall_vvvvvyh = jQuery("#jform_add_php_method_uninstall input[type='radio']:checked").val();
|
||||
vvvvvyh(add_php_method_uninstall_vvvvvyh);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_method_uninstall',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_method_uninstall_vvvvvyi = jQuery("#jform_add_php_method_uninstall input[type='radio']:checked").val();
|
||||
vvvvvyi(add_php_method_uninstall_vvvvvyi);
|
||||
var add_php_method_uninstall_vvvvvyh = jQuery("#jform_add_php_method_uninstall input[type='radio']:checked").val();
|
||||
vvvvvyh(add_php_method_uninstall_vvvvvyh);
|
||||
|
||||
});
|
||||
|
||||
// #jform_update_server_target listeners for update_server_target_vvvvvyj function
|
||||
// #jform_update_server_target listeners for update_server_target_vvvvvyi function
|
||||
jQuery('#jform_update_server_target').on('keyup',function()
|
||||
{
|
||||
var update_server_target_vvvvvyj = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvyj = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyj(update_server_target_vvvvvyj,add_update_server_vvvvvyj);
|
||||
var update_server_target_vvvvvyi = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvyi = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyi(update_server_target_vvvvvyi,add_update_server_vvvvvyi);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_update_server_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var update_server_target_vvvvvyj = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvyj = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyj(update_server_target_vvvvvyj,add_update_server_vvvvvyj);
|
||||
var update_server_target_vvvvvyi = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvyi = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyi(update_server_target_vvvvvyi,add_update_server_vvvvvyi);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_update_server listeners for add_update_server_vvvvvyi function
|
||||
jQuery('#jform_add_update_server').on('keyup',function()
|
||||
{
|
||||
var update_server_target_vvvvvyi = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvyi = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyi(update_server_target_vvvvvyi,add_update_server_vvvvvyi);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var update_server_target_vvvvvyi = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvyi = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyi(update_server_target_vvvvvyi,add_update_server_vvvvvyi);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_update_server listeners for add_update_server_vvvvvyj function
|
||||
jQuery('#jform_add_update_server').on('keyup',function()
|
||||
{
|
||||
var update_server_target_vvvvvyj = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvyj = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyj(update_server_target_vvvvvyj,add_update_server_vvvvvyj);
|
||||
var update_server_target_vvvvvyj = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
vvvvvyj(add_update_server_vvvvvyj,update_server_target_vvvvvyj);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var update_server_target_vvvvvyj = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvyj = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyj(update_server_target_vvvvvyj,add_update_server_vvvvvyj);
|
||||
var update_server_target_vvvvvyj = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
vvvvvyj(add_update_server_vvvvvyj,update_server_target_vvvvvyj);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_update_server listeners for add_update_server_vvvvvyk function
|
||||
jQuery('#jform_add_update_server').on('keyup',function()
|
||||
// #jform_update_server_target listeners for update_server_target_vvvvvyj function
|
||||
jQuery('#jform_update_server_target').on('keyup',function()
|
||||
{
|
||||
var add_update_server_vvvvvyk = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
var update_server_target_vvvvvyk = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
vvvvvyk(add_update_server_vvvvvyk,update_server_target_vvvvvyk);
|
||||
var add_update_server_vvvvvyj = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
var update_server_target_vvvvvyj = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
vvvvvyj(add_update_server_vvvvvyj,update_server_target_vvvvvyj);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
|
||||
jQuery('#adminForm').on('change', '#jform_update_server_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_update_server_vvvvvyk = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
var update_server_target_vvvvvyk = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
vvvvvyk(add_update_server_vvvvvyk,update_server_target_vvvvvyk);
|
||||
var add_update_server_vvvvvyj = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
var update_server_target_vvvvvyj = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
vvvvvyj(add_update_server_vvvvvyj,update_server_target_vvvvvyj);
|
||||
|
||||
});
|
||||
|
||||
// #jform_update_server_target listeners for update_server_target_vvvvvyk function
|
||||
jQuery('#jform_update_server_target').on('keyup',function()
|
||||
{
|
||||
var add_update_server_vvvvvyk = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
var update_server_target_vvvvvyk = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
vvvvvyk(add_update_server_vvvvvyk,update_server_target_vvvvvyk);
|
||||
var add_update_server_vvvvvyk = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyk(update_server_target_vvvvvyk,add_update_server_vvvvvyk);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_update_server_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_update_server_vvvvvyk = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
var update_server_target_vvvvvyk = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
vvvvvyk(add_update_server_vvvvvyk,update_server_target_vvvvvyk);
|
||||
var add_update_server_vvvvvyk = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyk(update_server_target_vvvvvyk,add_update_server_vvvvvyk);
|
||||
|
||||
});
|
||||
|
||||
// #jform_update_server_target listeners for update_server_target_vvvvvyl function
|
||||
// #jform_add_update_server listeners for add_update_server_vvvvvyk function
|
||||
jQuery('#jform_add_update_server').on('keyup',function()
|
||||
{
|
||||
var update_server_target_vvvvvyk = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvyk = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyk(update_server_target_vvvvvyk,add_update_server_vvvvvyk);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var update_server_target_vvvvvyk = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvyk = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyk(update_server_target_vvvvvyk,add_update_server_vvvvvyk);
|
||||
|
||||
});
|
||||
|
||||
// #jform_update_server_target listeners for update_server_target_vvvvvym function
|
||||
jQuery('#jform_update_server_target').on('keyup',function()
|
||||
{
|
||||
var update_server_target_vvvvvyl = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvyl = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyl(update_server_target_vvvvvyl,add_update_server_vvvvvyl);
|
||||
var update_server_target_vvvvvym = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvym = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvym(update_server_target_vvvvvym,add_update_server_vvvvvym);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_update_server_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var update_server_target_vvvvvyl = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvyl = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyl(update_server_target_vvvvvyl,add_update_server_vvvvvyl);
|
||||
var update_server_target_vvvvvym = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvym = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvym(update_server_target_vvvvvym,add_update_server_vvvvvym);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_update_server listeners for add_update_server_vvvvvyl function
|
||||
// #jform_add_update_server listeners for add_update_server_vvvvvym function
|
||||
jQuery('#jform_add_update_server').on('keyup',function()
|
||||
{
|
||||
var update_server_target_vvvvvyl = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvyl = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyl(update_server_target_vvvvvyl,add_update_server_vvvvvyl);
|
||||
var update_server_target_vvvvvym = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvym = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvym(update_server_target_vvvvvym,add_update_server_vvvvvym);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var update_server_target_vvvvvyl = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvyl = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyl(update_server_target_vvvvvyl,add_update_server_vvvvvyl);
|
||||
var update_server_target_vvvvvym = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvym = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvym(update_server_target_vvvvvym,add_update_server_vvvvvym);
|
||||
|
||||
});
|
||||
|
||||
// #jform_update_server_target listeners for update_server_target_vvvvvyn function
|
||||
jQuery('#jform_update_server_target').on('keyup',function()
|
||||
{
|
||||
var update_server_target_vvvvvyn = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvyn = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyn(update_server_target_vvvvvyn,add_update_server_vvvvvyn);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_update_server_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var update_server_target_vvvvvyn = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvyn = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyn(update_server_target_vvvvvyn,add_update_server_vvvvvyn);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_update_server listeners for add_update_server_vvvvvyn function
|
||||
// #jform_add_update_server listeners for add_update_server_vvvvvyo function
|
||||
jQuery('#jform_add_update_server').on('keyup',function()
|
||||
{
|
||||
var update_server_target_vvvvvyn = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvyn = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyn(update_server_target_vvvvvyn,add_update_server_vvvvvyn);
|
||||
var add_update_server_vvvvvyo = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyo(add_update_server_vvvvvyo);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var update_server_target_vvvvvyn = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvyn = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyn(update_server_target_vvvvvyn,add_update_server_vvvvvyn);
|
||||
var add_update_server_vvvvvyo = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyo(add_update_server_vvvvvyo);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_update_server listeners for add_update_server_vvvvvyp function
|
||||
jQuery('#jform_add_update_server').on('keyup',function()
|
||||
{
|
||||
var add_update_server_vvvvvyp = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyp(add_update_server_vvvvvyp);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_update_server_vvvvvyp = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyp(add_update_server_vvvvvyp);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_sql listeners for add_sql_vvvvvyq function
|
||||
// #jform_add_sql listeners for add_sql_vvvvvyp function
|
||||
jQuery('#jform_add_sql').on('keyup',function()
|
||||
{
|
||||
var add_sql_vvvvvyq = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvyq(add_sql_vvvvvyq);
|
||||
var add_sql_vvvvvyp = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvyp(add_sql_vvvvvyp);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_sql',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_sql_vvvvvyq = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvyq(add_sql_vvvvvyq);
|
||||
var add_sql_vvvvvyp = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvyp(add_sql_vvvvvyp);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_sql_uninstall listeners for add_sql_uninstall_vvvvvyr function
|
||||
// #jform_add_sql_uninstall listeners for add_sql_uninstall_vvvvvyq function
|
||||
jQuery('#jform_add_sql_uninstall').on('keyup',function()
|
||||
{
|
||||
var add_sql_uninstall_vvvvvyr = jQuery("#jform_add_sql_uninstall input[type='radio']:checked").val();
|
||||
vvvvvyr(add_sql_uninstall_vvvvvyr);
|
||||
var add_sql_uninstall_vvvvvyq = jQuery("#jform_add_sql_uninstall input[type='radio']:checked").val();
|
||||
vvvvvyq(add_sql_uninstall_vvvvvyq);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_sql_uninstall',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_sql_uninstall_vvvvvyr = jQuery("#jform_add_sql_uninstall input[type='radio']:checked").val();
|
||||
vvvvvyr(add_sql_uninstall_vvvvvyr);
|
||||
var add_sql_uninstall_vvvvvyq = jQuery("#jform_add_sql_uninstall input[type='radio']:checked").val();
|
||||
vvvvvyq(add_sql_uninstall_vvvvvyq);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_update_server listeners for add_update_server_vvvvvys function
|
||||
// #jform_add_update_server listeners for add_update_server_vvvvvyr function
|
||||
jQuery('#jform_add_update_server').on('keyup',function()
|
||||
{
|
||||
var add_update_server_vvvvvys = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvys(add_update_server_vvvvvys);
|
||||
var add_update_server_vvvvvyr = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyr(add_update_server_vvvvvyr);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_update_server_vvvvvys = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvys(add_update_server_vvvvvys);
|
||||
var add_update_server_vvvvvyr = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyr(add_update_server_vvvvvyr);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_sales_server listeners for add_sales_server_vvvvvyt function
|
||||
// #jform_add_sales_server listeners for add_sales_server_vvvvvys function
|
||||
jQuery('#jform_add_sales_server').on('keyup',function()
|
||||
{
|
||||
var add_sales_server_vvvvvyt = jQuery("#jform_add_sales_server input[type='radio']:checked").val();
|
||||
vvvvvyt(add_sales_server_vvvvvyt);
|
||||
var add_sales_server_vvvvvys = jQuery("#jform_add_sales_server input[type='radio']:checked").val();
|
||||
vvvvvys(add_sales_server_vvvvvys);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_sales_server',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_sales_server_vvvvvyt = jQuery("#jform_add_sales_server input[type='radio']:checked").val();
|
||||
vvvvvyt(add_sales_server_vvvvvyt);
|
||||
var add_sales_server_vvvvvys = jQuery("#jform_add_sales_server input[type='radio']:checked").val();
|
||||
vvvvvys(add_sales_server_vvvvvys);
|
||||
|
||||
});
|
||||
|
||||
// #jform_addreadme listeners for addreadme_vvvvvyu function
|
||||
// #jform_addreadme listeners for addreadme_vvvvvyt function
|
||||
jQuery('#jform_addreadme').on('keyup',function()
|
||||
{
|
||||
var addreadme_vvvvvyu = jQuery("#jform_addreadme input[type='radio']:checked").val();
|
||||
vvvvvyu(addreadme_vvvvvyu);
|
||||
var addreadme_vvvvvyt = jQuery("#jform_addreadme input[type='radio']:checked").val();
|
||||
vvvvvyt(addreadme_vvvvvyt);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_addreadme',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var addreadme_vvvvvyu = jQuery("#jform_addreadme input[type='radio']:checked").val();
|
||||
vvvvvyu(addreadme_vvvvvyu);
|
||||
var addreadme_vvvvvyt = jQuery("#jform_addreadme input[type='radio']:checked").val();
|
||||
vvvvvyt(addreadme_vvvvvyt);
|
||||
|
||||
});
|
||||
|
||||
|
@ -128,18 +128,18 @@ $componentParams = $this->params; // will be removed just use $this->params inst
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// #jform_add_php_view listeners for add_php_view_vvvvwba function
|
||||
// #jform_add_php_view listeners for add_php_view_vvvvwaz function
|
||||
jQuery('#jform_add_php_view').on('keyup',function()
|
||||
{
|
||||
var add_php_view_vvvvwba = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvwba(add_php_view_vvvvwba);
|
||||
var add_php_view_vvvvwaz = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvwaz(add_php_view_vvvvwaz);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_view',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_view_vvvvwba = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvwba(add_php_view_vvvvwba);
|
||||
var add_php_view_vvvvwaz = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvwaz(add_php_view_vvvvwaz);
|
||||
|
||||
});
|
||||
|
||||
|
@ -144,309 +144,343 @@ $componentParams = $this->params; // will be removed just use $this->params inst
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// #jform_how listeners for how_vvvvwci function
|
||||
// #jform_how listeners for how_vvvvwch function
|
||||
jQuery('#jform_how').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwci = jQuery("#jform_how").val();
|
||||
var target_vvvvwci = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwci(how_vvvvwci,target_vvvvwci);
|
||||
var how_vvvvwch = jQuery("#jform_how").val();
|
||||
var target_vvvvwch = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwch(how_vvvvwch,target_vvvvwch);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwci = jQuery("#jform_how").val();
|
||||
var target_vvvvwci = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwci(how_vvvvwci,target_vvvvwci);
|
||||
var how_vvvvwch = jQuery("#jform_how").val();
|
||||
var target_vvvvwch = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwch(how_vvvvwch,target_vvvvwch);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwci function
|
||||
// #jform_target listeners for target_vvvvwch function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwci = jQuery("#jform_how").val();
|
||||
var target_vvvvwci = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwci(how_vvvvwci,target_vvvvwci);
|
||||
var how_vvvvwch = jQuery("#jform_how").val();
|
||||
var target_vvvvwch = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwch(how_vvvvwch,target_vvvvwch);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwci = jQuery("#jform_how").val();
|
||||
var target_vvvvwci = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwci(how_vvvvwci,target_vvvvwci);
|
||||
var how_vvvvwch = jQuery("#jform_how").val();
|
||||
var target_vvvvwch = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwch(how_vvvvwch,target_vvvvwch);
|
||||
|
||||
});
|
||||
|
||||
// #jform_how listeners for how_vvvvwck function
|
||||
// #jform_how listeners for how_vvvvwcj function
|
||||
jQuery('#jform_how').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwck = jQuery("#jform_how").val();
|
||||
var target_vvvvwck = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwck(how_vvvvwck,target_vvvvwck);
|
||||
var how_vvvvwcj = jQuery("#jform_how").val();
|
||||
var target_vvvvwcj = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcj(how_vvvvwcj,target_vvvvwcj);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwck = jQuery("#jform_how").val();
|
||||
var target_vvvvwck = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwck(how_vvvvwck,target_vvvvwck);
|
||||
var how_vvvvwcj = jQuery("#jform_how").val();
|
||||
var target_vvvvwcj = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcj(how_vvvvwcj,target_vvvvwcj);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwck function
|
||||
// #jform_target listeners for target_vvvvwcj function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwck = jQuery("#jform_how").val();
|
||||
var target_vvvvwck = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwck(how_vvvvwck,target_vvvvwck);
|
||||
var how_vvvvwcj = jQuery("#jform_how").val();
|
||||
var target_vvvvwcj = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcj(how_vvvvwcj,target_vvvvwcj);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwck = jQuery("#jform_how").val();
|
||||
var target_vvvvwck = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwck(how_vvvvwck,target_vvvvwck);
|
||||
var how_vvvvwcj = jQuery("#jform_how").val();
|
||||
var target_vvvvwcj = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcj(how_vvvvwcj,target_vvvvwcj);
|
||||
|
||||
});
|
||||
|
||||
// #jform_how listeners for how_vvvvwcm function
|
||||
// #jform_how listeners for how_vvvvwcl function
|
||||
jQuery('#jform_how').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwcm = jQuery("#jform_how").val();
|
||||
var target_vvvvwcm = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcm(how_vvvvwcm,target_vvvvwcm);
|
||||
var how_vvvvwcl = jQuery("#jform_how").val();
|
||||
var target_vvvvwcl = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcl(how_vvvvwcl,target_vvvvwcl);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwcm = jQuery("#jform_how").val();
|
||||
var target_vvvvwcm = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcm(how_vvvvwcm,target_vvvvwcm);
|
||||
var how_vvvvwcl = jQuery("#jform_how").val();
|
||||
var target_vvvvwcl = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcl(how_vvvvwcl,target_vvvvwcl);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwcm function
|
||||
// #jform_target listeners for target_vvvvwcl function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwcm = jQuery("#jform_how").val();
|
||||
var target_vvvvwcm = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcm(how_vvvvwcm,target_vvvvwcm);
|
||||
var how_vvvvwcl = jQuery("#jform_how").val();
|
||||
var target_vvvvwcl = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcl(how_vvvvwcl,target_vvvvwcl);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwcm = jQuery("#jform_how").val();
|
||||
var target_vvvvwcm = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcm(how_vvvvwcm,target_vvvvwcm);
|
||||
var how_vvvvwcl = jQuery("#jform_how").val();
|
||||
var target_vvvvwcl = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcl(how_vvvvwcl,target_vvvvwcl);
|
||||
|
||||
});
|
||||
|
||||
// #jform_how listeners for how_vvvvwco function
|
||||
// #jform_how listeners for how_vvvvwcn function
|
||||
jQuery('#jform_how').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwco = jQuery("#jform_how").val();
|
||||
var target_vvvvwco = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwco(how_vvvvwco,target_vvvvwco);
|
||||
var how_vvvvwcn = jQuery("#jform_how").val();
|
||||
var target_vvvvwcn = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcn(how_vvvvwcn,target_vvvvwcn);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwco = jQuery("#jform_how").val();
|
||||
var target_vvvvwco = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwco(how_vvvvwco,target_vvvvwco);
|
||||
var how_vvvvwcn = jQuery("#jform_how").val();
|
||||
var target_vvvvwcn = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcn(how_vvvvwcn,target_vvvvwcn);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwco function
|
||||
// #jform_target listeners for target_vvvvwcn function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwco = jQuery("#jform_how").val();
|
||||
var target_vvvvwco = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwco(how_vvvvwco,target_vvvvwco);
|
||||
var how_vvvvwcn = jQuery("#jform_how").val();
|
||||
var target_vvvvwcn = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcn(how_vvvvwcn,target_vvvvwcn);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwco = jQuery("#jform_how").val();
|
||||
var target_vvvvwco = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwco(how_vvvvwco,target_vvvvwco);
|
||||
var how_vvvvwcn = jQuery("#jform_how").val();
|
||||
var target_vvvvwcn = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcn(how_vvvvwcn,target_vvvvwcn);
|
||||
|
||||
});
|
||||
|
||||
// #jform_how listeners for how_vvvvwcq function
|
||||
// #jform_how listeners for how_vvvvwcp function
|
||||
jQuery('#jform_how').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwcq = jQuery("#jform_how").val();
|
||||
var target_vvvvwcq = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcq(how_vvvvwcq,target_vvvvwcq);
|
||||
var how_vvvvwcp = jQuery("#jform_how").val();
|
||||
var target_vvvvwcp = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcp(how_vvvvwcp,target_vvvvwcp);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwcq = jQuery("#jform_how").val();
|
||||
var target_vvvvwcq = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcq(how_vvvvwcq,target_vvvvwcq);
|
||||
var how_vvvvwcp = jQuery("#jform_how").val();
|
||||
var target_vvvvwcp = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcp(how_vvvvwcp,target_vvvvwcp);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwcp function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwcp = jQuery("#jform_how").val();
|
||||
var target_vvvvwcp = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcp(how_vvvvwcp,target_vvvvwcp);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwcp = jQuery("#jform_how").val();
|
||||
var target_vvvvwcp = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcp(how_vvvvwcp,target_vvvvwcp);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwcq function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwcq = jQuery("#jform_how").val();
|
||||
var target_vvvvwcq = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcq(how_vvvvwcq,target_vvvvwcq);
|
||||
var how_vvvvwcq = jQuery("#jform_how").val();
|
||||
vvvvwcq(target_vvvvwcq,how_vvvvwcq);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwcq = jQuery("#jform_how").val();
|
||||
var target_vvvvwcq = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcq(how_vvvvwcq,target_vvvvwcq);
|
||||
var how_vvvvwcq = jQuery("#jform_how").val();
|
||||
vvvvwcq(target_vvvvwcq,how_vvvvwcq);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwcr function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
// #jform_how listeners for how_vvvvwcq function
|
||||
jQuery('#jform_how').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcr = jQuery("#jform_how").val();
|
||||
vvvvwcr(target_vvvvwcr,how_vvvvwcr);
|
||||
var target_vvvvwcq = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcq = jQuery("#jform_how").val();
|
||||
vvvvwcq(target_vvvvwcq,how_vvvvwcq);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcr = jQuery("#jform_how").val();
|
||||
vvvvwcr(target_vvvvwcr,how_vvvvwcr);
|
||||
var target_vvvvwcq = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcq = jQuery("#jform_how").val();
|
||||
vvvvwcq(target_vvvvwcq,how_vvvvwcq);
|
||||
|
||||
});
|
||||
|
||||
// #jform_how listeners for how_vvvvwcr function
|
||||
jQuery('#jform_how').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcr = jQuery("#jform_how").val();
|
||||
vvvvwcr(target_vvvvwcr,how_vvvvwcr);
|
||||
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcr(how_vvvvwcr,target_vvvvwcr);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcr = jQuery("#jform_how").val();
|
||||
vvvvwcr(target_vvvvwcr,how_vvvvwcr);
|
||||
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcr(how_vvvvwcr,target_vvvvwcr);
|
||||
|
||||
});
|
||||
|
||||
// #jform_how listeners for how_vvvvwcs function
|
||||
jQuery('#jform_how').on('keyup',function()
|
||||
// #jform_target listeners for target_vvvvwcr function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwcs = jQuery("#jform_how").val();
|
||||
var target_vvvvwcs = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcs(how_vvvvwcs,target_vvvvwcs);
|
||||
var how_vvvvwcr = jQuery("#jform_how").val();
|
||||
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcr(how_vvvvwcr,target_vvvvwcr);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwcs = jQuery("#jform_how").val();
|
||||
var target_vvvvwcs = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcs(how_vvvvwcs,target_vvvvwcs);
|
||||
var how_vvvvwcr = jQuery("#jform_how").val();
|
||||
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcr(how_vvvvwcr,target_vvvvwcr);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwcs function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwcs = jQuery("#jform_how").val();
|
||||
var target_vvvvwcs = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcs(how_vvvvwcs,target_vvvvwcs);
|
||||
var how_vvvvwcs = jQuery("#jform_how").val();
|
||||
vvvvwcs(target_vvvvwcs,how_vvvvwcs);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwcs = jQuery("#jform_how").val();
|
||||
var target_vvvvwcs = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcs(how_vvvvwcs,target_vvvvwcs);
|
||||
var how_vvvvwcs = jQuery("#jform_how").val();
|
||||
vvvvwcs(target_vvvvwcs,how_vvvvwcs);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwct function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
// #jform_how listeners for how_vvvvwcs function
|
||||
jQuery('#jform_how').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwct = jQuery("#jform_how").val();
|
||||
vvvvwct(target_vvvvwct,how_vvvvwct);
|
||||
var target_vvvvwcs = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcs = jQuery("#jform_how").val();
|
||||
vvvvwcs(target_vvvvwcs,how_vvvvwcs);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwct = jQuery("#jform_how").val();
|
||||
vvvvwct(target_vvvvwct,how_vvvvwct);
|
||||
var target_vvvvwcs = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcs = jQuery("#jform_how").val();
|
||||
vvvvwcs(target_vvvvwcs,how_vvvvwcs);
|
||||
|
||||
});
|
||||
|
||||
// #jform_how listeners for how_vvvvwct function
|
||||
jQuery('#jform_how').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwct = jQuery("#jform_how").val();
|
||||
vvvvwct(target_vvvvwct,how_vvvvwct);
|
||||
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwct(how_vvvvwct,target_vvvvwct);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwct = jQuery("#jform_how").val();
|
||||
vvvvwct(target_vvvvwct,how_vvvvwct);
|
||||
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwct(how_vvvvwct,target_vvvvwct);
|
||||
|
||||
});
|
||||
|
||||
// #jform_how listeners for how_vvvvwcu function
|
||||
jQuery('#jform_how').on('keyup',function()
|
||||
// #jform_target listeners for target_vvvvwct function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwcu = jQuery("#jform_how").val();
|
||||
var target_vvvvwcu = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcu(how_vvvvwcu,target_vvvvwcu);
|
||||
var how_vvvvwct = jQuery("#jform_how").val();
|
||||
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwct(how_vvvvwct,target_vvvvwct);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwcu = jQuery("#jform_how").val();
|
||||
var target_vvvvwcu = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcu(how_vvvvwcu,target_vvvvwcu);
|
||||
var how_vvvvwct = jQuery("#jform_how").val();
|
||||
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwct(how_vvvvwct,target_vvvvwct);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwcu function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwcu = jQuery("#jform_how").val();
|
||||
var target_vvvvwcu = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcu(how_vvvvwcu,target_vvvvwcu);
|
||||
var how_vvvvwcu = jQuery("#jform_how").val();
|
||||
vvvvwcu(target_vvvvwcu,how_vvvvwcu);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwcu = jQuery("#jform_how").val();
|
||||
var target_vvvvwcu = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcu(how_vvvvwcu,target_vvvvwcu);
|
||||
var how_vvvvwcu = jQuery("#jform_how").val();
|
||||
vvvvwcu(target_vvvvwcu,how_vvvvwcu);
|
||||
|
||||
});
|
||||
|
||||
// #jform_how listeners for how_vvvvwcu function
|
||||
jQuery('#jform_how').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwcu = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcu = jQuery("#jform_how").val();
|
||||
vvvvwcu(target_vvvvwcu,how_vvvvwcu);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwcu = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcu = jQuery("#jform_how").val();
|
||||
vvvvwcu(target_vvvvwcu,how_vvvvwcu);
|
||||
|
||||
});
|
||||
|
||||
@ -454,67 +488,48 @@ jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwcv = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcv = jQuery("#jform_how").val();
|
||||
vvvvwcv(target_vvvvwcv,how_vvvvwcv);
|
||||
var type_vvvvwcv = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
vvvvwcv(target_vvvvwcv,type_vvvvwcv);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwcv = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcv = jQuery("#jform_how").val();
|
||||
vvvvwcv(target_vvvvwcv,how_vvvvwcv);
|
||||
var type_vvvvwcv = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
vvvvwcv(target_vvvvwcv,type_vvvvwcv);
|
||||
|
||||
});
|
||||
|
||||
// #jform_how listeners for how_vvvvwcv function
|
||||
jQuery('#jform_how').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwcv = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcv = jQuery("#jform_how").val();
|
||||
vvvvwcv(target_vvvvwcv,how_vvvvwcv);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwcv = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcv = jQuery("#jform_how").val();
|
||||
vvvvwcv(target_vvvvwcv,how_vvvvwcv);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwcw function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwcw = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var type_vvvvwcw = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
vvvvwcw(target_vvvvwcw,type_vvvvwcw);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwcw = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var type_vvvvwcw = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
vvvvwcw(target_vvvvwcw,type_vvvvwcw);
|
||||
|
||||
});
|
||||
|
||||
// #jform_type listeners for type_vvvvwcw function
|
||||
// #jform_type listeners for type_vvvvwcv function
|
||||
jQuery('#jform_type').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwcw = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var type_vvvvwcw = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
vvvvwcw(target_vvvvwcw,type_vvvvwcw);
|
||||
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);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_type',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwcw = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var type_vvvvwcw = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
vvvvwcw(target_vvvvwcw,type_vvvvwcw);
|
||||
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);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwcx function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwcx = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcx(target_vvvvwcx);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwcx = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcx(target_vvvvwcx);
|
||||
|
||||
});
|
||||
|
||||
@ -533,21 +548,6 @@ jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwcz function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwcz = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcz(target_vvvvwcz);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwcz = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcz(target_vvvvwcz);
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
||||
<?php $numberAddconditions = range(0, count( (array) $this->item->addconditions) + 3, 1);?>
|
||||
|
@ -142,18 +142,18 @@ $componentParams = $this->params; // will be removed just use $this->params inst
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// #jform_add_head listeners for add_head_vvvvvyv function
|
||||
// #jform_add_head listeners for add_head_vvvvvyu function
|
||||
jQuery('#jform_add_head').on('keyup',function()
|
||||
{
|
||||
var add_head_vvvvvyv = jQuery("#jform_add_head input[type='radio']:checked").val();
|
||||
vvvvvyv(add_head_vvvvvyv);
|
||||
var add_head_vvvvvyu = jQuery("#jform_add_head input[type='radio']:checked").val();
|
||||
vvvvvyu(add_head_vvvvvyu);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_head',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_head_vvvvvyv = jQuery("#jform_add_head input[type='radio']:checked").val();
|
||||
vvvvvyv(add_head_vvvvvyv);
|
||||
var add_head_vvvvvyu = jQuery("#jform_add_head input[type='radio']:checked").val();
|
||||
vvvvvyu(add_head_vvvvvyu);
|
||||
|
||||
});
|
||||
|
||||
|
@ -123,6 +123,21 @@ $componentParams = $this->params; // will be removed just use $this->params inst
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// #jform_protocol listeners for protocol_vvvvwdy function
|
||||
jQuery('#jform_protocol').on('keyup',function()
|
||||
{
|
||||
var protocol_vvvvwdy = jQuery("#jform_protocol").val();
|
||||
vvvvwdy(protocol_vvvvwdy);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_protocol',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var protocol_vvvvwdy = jQuery("#jform_protocol").val();
|
||||
vvvvwdy(protocol_vvvvwdy);
|
||||
|
||||
});
|
||||
|
||||
// #jform_protocol listeners for protocol_vvvvwdz function
|
||||
jQuery('#jform_protocol').on('keyup',function()
|
||||
{
|
||||
@ -142,150 +157,135 @@ jQuery('#adminForm').on('change', '#jform_protocol',function (e)
|
||||
jQuery('#jform_protocol').on('keyup',function()
|
||||
{
|
||||
var protocol_vvvvwea = jQuery("#jform_protocol").val();
|
||||
vvvvwea(protocol_vvvvwea);
|
||||
var authentication_vvvvwea = jQuery("#jform_authentication").val();
|
||||
vvvvwea(protocol_vvvvwea,authentication_vvvvwea);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_protocol',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var protocol_vvvvwea = jQuery("#jform_protocol").val();
|
||||
vvvvwea(protocol_vvvvwea);
|
||||
var authentication_vvvvwea = jQuery("#jform_authentication").val();
|
||||
vvvvwea(protocol_vvvvwea,authentication_vvvvwea);
|
||||
|
||||
});
|
||||
|
||||
// #jform_protocol listeners for protocol_vvvvweb function
|
||||
jQuery('#jform_protocol').on('keyup',function()
|
||||
{
|
||||
var protocol_vvvvweb = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvweb = jQuery("#jform_authentication").val();
|
||||
vvvvweb(protocol_vvvvweb,authentication_vvvvweb);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_protocol',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var protocol_vvvvweb = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvweb = jQuery("#jform_authentication").val();
|
||||
vvvvweb(protocol_vvvvweb,authentication_vvvvweb);
|
||||
|
||||
});
|
||||
|
||||
// #jform_authentication listeners for authentication_vvvvweb function
|
||||
// #jform_authentication listeners for authentication_vvvvwea function
|
||||
jQuery('#jform_authentication').on('keyup',function()
|
||||
{
|
||||
var protocol_vvvvweb = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvweb = jQuery("#jform_authentication").val();
|
||||
vvvvweb(protocol_vvvvweb,authentication_vvvvweb);
|
||||
var protocol_vvvvwea = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwea = jQuery("#jform_authentication").val();
|
||||
vvvvwea(protocol_vvvvwea,authentication_vvvvwea);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_authentication',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var protocol_vvvvweb = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvweb = jQuery("#jform_authentication").val();
|
||||
vvvvweb(protocol_vvvvweb,authentication_vvvvweb);
|
||||
var protocol_vvvvwea = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwea = jQuery("#jform_authentication").val();
|
||||
vvvvwea(protocol_vvvvwea,authentication_vvvvwea);
|
||||
|
||||
});
|
||||
|
||||
// #jform_protocol listeners for protocol_vvvvwed function
|
||||
// #jform_protocol listeners for protocol_vvvvwec function
|
||||
jQuery('#jform_protocol').on('keyup',function()
|
||||
{
|
||||
var protocol_vvvvwed = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwed = jQuery("#jform_authentication").val();
|
||||
vvvvwed(protocol_vvvvwed,authentication_vvvvwed);
|
||||
var protocol_vvvvwec = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwec = jQuery("#jform_authentication").val();
|
||||
vvvvwec(protocol_vvvvwec,authentication_vvvvwec);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_protocol',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var protocol_vvvvwed = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwed = jQuery("#jform_authentication").val();
|
||||
vvvvwed(protocol_vvvvwed,authentication_vvvvwed);
|
||||
var protocol_vvvvwec = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwec = jQuery("#jform_authentication").val();
|
||||
vvvvwec(protocol_vvvvwec,authentication_vvvvwec);
|
||||
|
||||
});
|
||||
|
||||
// #jform_authentication listeners for authentication_vvvvwed function
|
||||
// #jform_authentication listeners for authentication_vvvvwec function
|
||||
jQuery('#jform_authentication').on('keyup',function()
|
||||
{
|
||||
var protocol_vvvvwed = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwed = jQuery("#jform_authentication").val();
|
||||
vvvvwed(protocol_vvvvwed,authentication_vvvvwed);
|
||||
var protocol_vvvvwec = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwec = jQuery("#jform_authentication").val();
|
||||
vvvvwec(protocol_vvvvwec,authentication_vvvvwec);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_authentication',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var protocol_vvvvwed = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwed = jQuery("#jform_authentication").val();
|
||||
vvvvwed(protocol_vvvvwed,authentication_vvvvwed);
|
||||
var protocol_vvvvwec = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwec = jQuery("#jform_authentication").val();
|
||||
vvvvwec(protocol_vvvvwec,authentication_vvvvwec);
|
||||
|
||||
});
|
||||
|
||||
// #jform_protocol listeners for protocol_vvvvwef function
|
||||
// #jform_protocol listeners for protocol_vvvvwee function
|
||||
jQuery('#jform_protocol').on('keyup',function()
|
||||
{
|
||||
var protocol_vvvvwef = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwef = jQuery("#jform_authentication").val();
|
||||
vvvvwef(protocol_vvvvwef,authentication_vvvvwef);
|
||||
var protocol_vvvvwee = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwee = jQuery("#jform_authentication").val();
|
||||
vvvvwee(protocol_vvvvwee,authentication_vvvvwee);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_protocol',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var protocol_vvvvwef = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwef = jQuery("#jform_authentication").val();
|
||||
vvvvwef(protocol_vvvvwef,authentication_vvvvwef);
|
||||
var protocol_vvvvwee = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwee = jQuery("#jform_authentication").val();
|
||||
vvvvwee(protocol_vvvvwee,authentication_vvvvwee);
|
||||
|
||||
});
|
||||
|
||||
// #jform_authentication listeners for authentication_vvvvwef function
|
||||
// #jform_authentication listeners for authentication_vvvvwee function
|
||||
jQuery('#jform_authentication').on('keyup',function()
|
||||
{
|
||||
var protocol_vvvvwef = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwef = jQuery("#jform_authentication").val();
|
||||
vvvvwef(protocol_vvvvwef,authentication_vvvvwef);
|
||||
var protocol_vvvvwee = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwee = jQuery("#jform_authentication").val();
|
||||
vvvvwee(protocol_vvvvwee,authentication_vvvvwee);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_authentication',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var protocol_vvvvwef = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwef = jQuery("#jform_authentication").val();
|
||||
vvvvwef(protocol_vvvvwef,authentication_vvvvwef);
|
||||
var protocol_vvvvwee = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwee = jQuery("#jform_authentication").val();
|
||||
vvvvwee(protocol_vvvvwee,authentication_vvvvwee);
|
||||
|
||||
});
|
||||
|
||||
// #jform_protocol listeners for protocol_vvvvweh function
|
||||
// #jform_protocol listeners for protocol_vvvvweg function
|
||||
jQuery('#jform_protocol').on('keyup',function()
|
||||
{
|
||||
var protocol_vvvvweh = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvweh = jQuery("#jform_authentication").val();
|
||||
vvvvweh(protocol_vvvvweh,authentication_vvvvweh);
|
||||
var protocol_vvvvweg = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvweg = jQuery("#jform_authentication").val();
|
||||
vvvvweg(protocol_vvvvweg,authentication_vvvvweg);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_protocol',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var protocol_vvvvweh = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvweh = jQuery("#jform_authentication").val();
|
||||
vvvvweh(protocol_vvvvweh,authentication_vvvvweh);
|
||||
var protocol_vvvvweg = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvweg = jQuery("#jform_authentication").val();
|
||||
vvvvweg(protocol_vvvvweg,authentication_vvvvweg);
|
||||
|
||||
});
|
||||
|
||||
// #jform_authentication listeners for authentication_vvvvweh function
|
||||
// #jform_authentication listeners for authentication_vvvvweg function
|
||||
jQuery('#jform_authentication').on('keyup',function()
|
||||
{
|
||||
var protocol_vvvvweh = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvweh = jQuery("#jform_authentication").val();
|
||||
vvvvweh(protocol_vvvvweh,authentication_vvvvweh);
|
||||
var protocol_vvvvweg = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvweg = jQuery("#jform_authentication").val();
|
||||
vvvvweg(protocol_vvvvweg,authentication_vvvvweg);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_authentication',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var protocol_vvvvweh = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvweh = jQuery("#jform_authentication").val();
|
||||
vvvvweh(protocol_vvvvweh,authentication_vvvvweh);
|
||||
var protocol_vvvvweg = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvweg = jQuery("#jform_authentication").val();
|
||||
vvvvweg(protocol_vvvvweg,authentication_vvvvweg);
|
||||
|
||||
});
|
||||
|
||||
|
@ -165,168 +165,168 @@ $componentParams = $this->params; // will be removed just use $this->params inst
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// #jform_add_php_view listeners for add_php_view_vvvvwao function
|
||||
// #jform_add_php_view listeners for add_php_view_vvvvwan function
|
||||
jQuery('#jform_add_php_view').on('keyup',function()
|
||||
{
|
||||
var add_php_view_vvvvwao = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvwao(add_php_view_vvvvwao);
|
||||
var add_php_view_vvvvwan = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvwan(add_php_view_vvvvwan);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_view',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_view_vvvvwao = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvwao(add_php_view_vvvvwao);
|
||||
var add_php_view_vvvvwan = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvwan(add_php_view_vvvvwan);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_jview_display listeners for add_php_jview_display_vvvvwap function
|
||||
// #jform_add_php_jview_display listeners for add_php_jview_display_vvvvwao function
|
||||
jQuery('#jform_add_php_jview_display').on('keyup',function()
|
||||
{
|
||||
var add_php_jview_display_vvvvwap = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
|
||||
vvvvwap(add_php_jview_display_vvvvwap);
|
||||
var add_php_jview_display_vvvvwao = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
|
||||
vvvvwao(add_php_jview_display_vvvvwao);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_jview_display',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_jview_display_vvvvwap = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
|
||||
vvvvwap(add_php_jview_display_vvvvwap);
|
||||
var add_php_jview_display_vvvvwao = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
|
||||
vvvvwao(add_php_jview_display_vvvvwao);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_jview listeners for add_php_jview_vvvvwaq function
|
||||
// #jform_add_php_jview listeners for add_php_jview_vvvvwap function
|
||||
jQuery('#jform_add_php_jview').on('keyup',function()
|
||||
{
|
||||
var add_php_jview_vvvvwaq = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
|
||||
vvvvwaq(add_php_jview_vvvvwaq);
|
||||
var add_php_jview_vvvvwap = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
|
||||
vvvvwap(add_php_jview_vvvvwap);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_jview',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_jview_vvvvwaq = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
|
||||
vvvvwaq(add_php_jview_vvvvwaq);
|
||||
var add_php_jview_vvvvwap = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
|
||||
vvvvwap(add_php_jview_vvvvwap);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_document listeners for add_php_document_vvvvwar function
|
||||
// #jform_add_php_document listeners for add_php_document_vvvvwaq function
|
||||
jQuery('#jform_add_php_document').on('keyup',function()
|
||||
{
|
||||
var add_php_document_vvvvwar = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvwar(add_php_document_vvvvwar);
|
||||
var add_php_document_vvvvwaq = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvwaq(add_php_document_vvvvwaq);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_document',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_document_vvvvwar = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvwar(add_php_document_vvvvwar);
|
||||
var add_php_document_vvvvwaq = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvwaq(add_php_document_vvvvwaq);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_css_document listeners for add_css_document_vvvvwas function
|
||||
// #jform_add_css_document listeners for add_css_document_vvvvwar function
|
||||
jQuery('#jform_add_css_document').on('keyup',function()
|
||||
{
|
||||
var add_css_document_vvvvwas = jQuery("#jform_add_css_document input[type='radio']:checked").val();
|
||||
vvvvwas(add_css_document_vvvvwas);
|
||||
var add_css_document_vvvvwar = jQuery("#jform_add_css_document input[type='radio']:checked").val();
|
||||
vvvvwar(add_css_document_vvvvwar);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_css_document',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_css_document_vvvvwas = jQuery("#jform_add_css_document input[type='radio']:checked").val();
|
||||
vvvvwas(add_css_document_vvvvwas);
|
||||
var add_css_document_vvvvwar = jQuery("#jform_add_css_document input[type='radio']:checked").val();
|
||||
vvvvwar(add_css_document_vvvvwar);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_javascript_file listeners for add_javascript_file_vvvvwat function
|
||||
// #jform_add_javascript_file listeners for add_javascript_file_vvvvwas function
|
||||
jQuery('#jform_add_javascript_file').on('keyup',function()
|
||||
{
|
||||
var add_javascript_file_vvvvwat = jQuery("#jform_add_javascript_file input[type='radio']:checked").val();
|
||||
vvvvwat(add_javascript_file_vvvvwat);
|
||||
var add_javascript_file_vvvvwas = jQuery("#jform_add_javascript_file input[type='radio']:checked").val();
|
||||
vvvvwas(add_javascript_file_vvvvwas);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_javascript_file',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_javascript_file_vvvvwat = jQuery("#jform_add_javascript_file input[type='radio']:checked").val();
|
||||
vvvvwat(add_javascript_file_vvvvwat);
|
||||
var add_javascript_file_vvvvwas = jQuery("#jform_add_javascript_file input[type='radio']:checked").val();
|
||||
vvvvwas(add_javascript_file_vvvvwas);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_js_document listeners for add_js_document_vvvvwau function
|
||||
// #jform_add_js_document listeners for add_js_document_vvvvwat function
|
||||
jQuery('#jform_add_js_document').on('keyup',function()
|
||||
{
|
||||
var add_js_document_vvvvwau = jQuery("#jform_add_js_document input[type='radio']:checked").val();
|
||||
vvvvwau(add_js_document_vvvvwau);
|
||||
var add_js_document_vvvvwat = jQuery("#jform_add_js_document input[type='radio']:checked").val();
|
||||
vvvvwat(add_js_document_vvvvwat);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_js_document',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_js_document_vvvvwau = jQuery("#jform_add_js_document input[type='radio']:checked").val();
|
||||
vvvvwau(add_js_document_vvvvwau);
|
||||
var add_js_document_vvvvwat = jQuery("#jform_add_js_document input[type='radio']:checked").val();
|
||||
vvvvwat(add_js_document_vvvvwat);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_css listeners for add_css_vvvvwav function
|
||||
// #jform_add_css listeners for add_css_vvvvwau function
|
||||
jQuery('#jform_add_css').on('keyup',function()
|
||||
{
|
||||
var add_css_vvvvwav = jQuery("#jform_add_css input[type='radio']:checked").val();
|
||||
vvvvwav(add_css_vvvvwav);
|
||||
var add_css_vvvvwau = jQuery("#jform_add_css input[type='radio']:checked").val();
|
||||
vvvvwau(add_css_vvvvwau);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_css',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_css_vvvvwav = jQuery("#jform_add_css input[type='radio']:checked").val();
|
||||
vvvvwav(add_css_vvvvwav);
|
||||
var add_css_vvvvwau = jQuery("#jform_add_css input[type='radio']:checked").val();
|
||||
vvvvwau(add_css_vvvvwau);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_ajax listeners for add_php_ajax_vvvvwaw function
|
||||
// #jform_add_php_ajax listeners for add_php_ajax_vvvvwav function
|
||||
jQuery('#jform_add_php_ajax').on('keyup',function()
|
||||
{
|
||||
var add_php_ajax_vvvvwaw = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
||||
vvvvwaw(add_php_ajax_vvvvwaw);
|
||||
var add_php_ajax_vvvvwav = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
||||
vvvvwav(add_php_ajax_vvvvwav);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_ajax',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_ajax_vvvvwaw = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
||||
vvvvwaw(add_php_ajax_vvvvwaw);
|
||||
var add_php_ajax_vvvvwav = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
||||
vvvvwav(add_php_ajax_vvvvwav);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_custom_button listeners for add_custom_button_vvvvwax function
|
||||
// #jform_add_custom_button listeners for add_custom_button_vvvvwaw function
|
||||
jQuery('#jform_add_custom_button').on('keyup',function()
|
||||
{
|
||||
var add_custom_button_vvvvwax = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvwax(add_custom_button_vvvvwax);
|
||||
var add_custom_button_vvvvwaw = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvwaw(add_custom_button_vvvvwaw);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_custom_button',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_custom_button_vvvvwax = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvwax(add_custom_button_vvvvwax);
|
||||
var add_custom_button_vvvvwaw = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvwaw(add_custom_button_vvvvwaw);
|
||||
|
||||
});
|
||||
|
||||
// #jform_button_position listeners for button_position_vvvvway function
|
||||
// #jform_button_position listeners for button_position_vvvvwax function
|
||||
jQuery('#jform_button_position').on('keyup',function()
|
||||
{
|
||||
var button_position_vvvvway = jQuery("#jform_button_position").val();
|
||||
vvvvway(button_position_vvvvway);
|
||||
var button_position_vvvvwax = jQuery("#jform_button_position").val();
|
||||
vvvvwax(button_position_vvvvwax);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_button_position',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var button_position_vvvvway = jQuery("#jform_button_position").val();
|
||||
vvvvway(button_position_vvvvway);
|
||||
var button_position_vvvvwax = jQuery("#jform_button_position").val();
|
||||
vvvvwax(button_position_vvvvwax);
|
||||
|
||||
});
|
||||
|
||||
|
@ -128,18 +128,18 @@ $componentParams = $this->params; // will be removed just use $this->params inst
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// #jform_add_php_view listeners for add_php_view_vvvvwaz function
|
||||
// #jform_add_php_view listeners for add_php_view_vvvvway function
|
||||
jQuery('#jform_add_php_view').on('keyup',function()
|
||||
{
|
||||
var add_php_view_vvvvwaz = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvwaz(add_php_view_vvvvwaz);
|
||||
var add_php_view_vvvvway = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvway(add_php_view_vvvvway);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_view',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_view_vvvvwaz = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvwaz(add_php_view_vvvvwaz);
|
||||
var add_php_view_vvvvway = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvway(add_php_view_vvvvway);
|
||||
|
||||
});
|
||||
|
||||
|
@ -7,9 +7,9 @@
|
||||
<authorUrl>https://dev.vdm.io</authorUrl>
|
||||
<copyright>Copyright (C) 2015 Vast Development Method. All rights reserved.</copyright>
|
||||
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
|
||||
<version>3.2.1-alpha2</version>
|
||||
<version>3.2.1-alpha3</version>
|
||||
<description><![CDATA[
|
||||
<h1>Component Builder (v.3.2.1-alpha2)</h1>
|
||||
<h1>Component Builder (v.3.2.1-alpha3)</h1>
|
||||
<div style="clear: both;"></div>
|
||||
<p>The Component Builder for [Joomla](https://extensions.joomla.org/extension/component-builder/) is highly advanced tool that is truly able to build extremely complex components in a fraction of the time.
|
||||
|
||||
|
@ -1595,4 +1595,22 @@
|
||||
<maintainerurl>https://dev.vdm.io</maintainerurl>
|
||||
<targetplatform name="joomla" version="3.*"/>
|
||||
</update>
|
||||
<update>
|
||||
<name>Component Builder</name>
|
||||
<description>Builds Complex Joomla Components</description>
|
||||
<element>pkg_component_builder</element>
|
||||
<type>package</type>
|
||||
<client>site</client>
|
||||
<version>3.2.1-alpha3</version>
|
||||
<infourl title="Component Builder!">https://dev.vdm.io</infourl>
|
||||
<downloads>
|
||||
<downloadurl type="full" format="zip">https://git.vdm.dev/api/v1/repos/joomla/pkg-component-builder/archive/v3.2.1-alpha3.zip</downloadurl>
|
||||
</downloads>
|
||||
<tags>
|
||||
<tag>alpha</tag>
|
||||
</tags>
|
||||
<maintainer>Llewellyn van der Merwe</maintainer>
|
||||
<maintainerurl>https://dev.vdm.io</maintainerurl>
|
||||
<targetplatform name="joomla" version="3.*"/>
|
||||
</update>
|
||||
</updates>
|
@ -9,123 +9,123 @@
|
||||
*/
|
||||
|
||||
// Some Global Values
|
||||
jform_vvvvvzwvwj_required = false;
|
||||
jform_vvvvvzxvwk_required = false;
|
||||
jform_vvvvwabvwl_required = false;
|
||||
jform_vvvvwabvwm_required = false;
|
||||
jform_vvvvwabvwn_required = false;
|
||||
jform_vvvvwabvwo_required = false;
|
||||
jform_vvvvwabvwp_required = false;
|
||||
jform_vvvvwabvwq_required = false;
|
||||
jform_vvvvwabvwr_required = false;
|
||||
jform_vvvvvzvvwj_required = false;
|
||||
jform_vvvvvzwvwk_required = false;
|
||||
jform_vvvvwaavwl_required = false;
|
||||
jform_vvvvwaavwm_required = false;
|
||||
jform_vvvvwaavwn_required = false;
|
||||
jform_vvvvwaavwo_required = false;
|
||||
jform_vvvvwaavwp_required = false;
|
||||
jform_vvvvwaavwq_required = false;
|
||||
jform_vvvvwaavwr_required = false;
|
||||
|
||||
// Initial Script
|
||||
document.addEventListener('DOMContentLoaded', function()
|
||||
{
|
||||
var add_css_view_vvvvvyw = jQuery("#jform_add_css_view input[type='radio']:checked").val();
|
||||
vvvvvyw(add_css_view_vvvvvyw);
|
||||
var add_css_view_vvvvvyv = jQuery("#jform_add_css_view input[type='radio']:checked").val();
|
||||
vvvvvyv(add_css_view_vvvvvyv);
|
||||
|
||||
var add_css_views_vvvvvyx = jQuery("#jform_add_css_views input[type='radio']:checked").val();
|
||||
vvvvvyx(add_css_views_vvvvvyx);
|
||||
var add_css_views_vvvvvyw = jQuery("#jform_add_css_views input[type='radio']:checked").val();
|
||||
vvvvvyw(add_css_views_vvvvvyw);
|
||||
|
||||
var add_javascript_view_file_vvvvvyy = jQuery("#jform_add_javascript_view_file input[type='radio']:checked").val();
|
||||
vvvvvyy(add_javascript_view_file_vvvvvyy);
|
||||
var add_javascript_view_file_vvvvvyx = jQuery("#jform_add_javascript_view_file input[type='radio']:checked").val();
|
||||
vvvvvyx(add_javascript_view_file_vvvvvyx);
|
||||
|
||||
var add_javascript_views_file_vvvvvyz = jQuery("#jform_add_javascript_views_file input[type='radio']:checked").val();
|
||||
vvvvvyz(add_javascript_views_file_vvvvvyz);
|
||||
var add_javascript_views_file_vvvvvyy = jQuery("#jform_add_javascript_views_file input[type='radio']:checked").val();
|
||||
vvvvvyy(add_javascript_views_file_vvvvvyy);
|
||||
|
||||
var add_javascript_view_footer_vvvvvza = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val();
|
||||
vvvvvza(add_javascript_view_footer_vvvvvza);
|
||||
var add_javascript_view_footer_vvvvvyz = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val();
|
||||
vvvvvyz(add_javascript_view_footer_vvvvvyz);
|
||||
|
||||
var add_javascript_views_footer_vvvvvzb = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val();
|
||||
vvvvvzb(add_javascript_views_footer_vvvvvzb);
|
||||
var add_javascript_views_footer_vvvvvza = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val();
|
||||
vvvvvza(add_javascript_views_footer_vvvvvza);
|
||||
|
||||
var add_php_ajax_vvvvvzc = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
||||
vvvvvzc(add_php_ajax_vvvvvzc);
|
||||
var add_php_ajax_vvvvvzb = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
||||
vvvvvzb(add_php_ajax_vvvvvzb);
|
||||
|
||||
var add_php_getitem_vvvvvzd = jQuery("#jform_add_php_getitem input[type='radio']:checked").val();
|
||||
vvvvvzd(add_php_getitem_vvvvvzd);
|
||||
var add_php_getitem_vvvvvzc = jQuery("#jform_add_php_getitem input[type='radio']:checked").val();
|
||||
vvvvvzc(add_php_getitem_vvvvvzc);
|
||||
|
||||
var add_php_getitems_vvvvvze = jQuery("#jform_add_php_getitems input[type='radio']:checked").val();
|
||||
vvvvvze(add_php_getitems_vvvvvze);
|
||||
var add_php_getitems_vvvvvzd = jQuery("#jform_add_php_getitems input[type='radio']:checked").val();
|
||||
vvvvvzd(add_php_getitems_vvvvvzd);
|
||||
|
||||
var add_php_getitems_after_all_vvvvvzf = jQuery("#jform_add_php_getitems_after_all input[type='radio']:checked").val();
|
||||
vvvvvzf(add_php_getitems_after_all_vvvvvzf);
|
||||
var add_php_getitems_after_all_vvvvvze = jQuery("#jform_add_php_getitems_after_all input[type='radio']:checked").val();
|
||||
vvvvvze(add_php_getitems_after_all_vvvvvze);
|
||||
|
||||
var add_php_getlistquery_vvvvvzg = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
||||
vvvvvzg(add_php_getlistquery_vvvvvzg);
|
||||
var add_php_getlistquery_vvvvvzf = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
||||
vvvvvzf(add_php_getlistquery_vvvvvzf);
|
||||
|
||||
var add_php_getform_vvvvvzh = jQuery("#jform_add_php_getform input[type='radio']:checked").val();
|
||||
vvvvvzh(add_php_getform_vvvvvzh);
|
||||
var add_php_getform_vvvvvzg = jQuery("#jform_add_php_getform input[type='radio']:checked").val();
|
||||
vvvvvzg(add_php_getform_vvvvvzg);
|
||||
|
||||
var add_php_before_save_vvvvvzi = jQuery("#jform_add_php_before_save input[type='radio']:checked").val();
|
||||
vvvvvzi(add_php_before_save_vvvvvzi);
|
||||
var add_php_before_save_vvvvvzh = jQuery("#jform_add_php_before_save input[type='radio']:checked").val();
|
||||
vvvvvzh(add_php_before_save_vvvvvzh);
|
||||
|
||||
var add_php_save_vvvvvzj = jQuery("#jform_add_php_save input[type='radio']:checked").val();
|
||||
vvvvvzj(add_php_save_vvvvvzj);
|
||||
var add_php_save_vvvvvzi = jQuery("#jform_add_php_save input[type='radio']:checked").val();
|
||||
vvvvvzi(add_php_save_vvvvvzi);
|
||||
|
||||
var add_php_postsavehook_vvvvvzk = jQuery("#jform_add_php_postsavehook input[type='radio']:checked").val();
|
||||
vvvvvzk(add_php_postsavehook_vvvvvzk);
|
||||
var add_php_postsavehook_vvvvvzj = jQuery("#jform_add_php_postsavehook input[type='radio']:checked").val();
|
||||
vvvvvzj(add_php_postsavehook_vvvvvzj);
|
||||
|
||||
var add_php_allowadd_vvvvvzl = jQuery("#jform_add_php_allowadd input[type='radio']:checked").val();
|
||||
vvvvvzl(add_php_allowadd_vvvvvzl);
|
||||
var add_php_allowadd_vvvvvzk = jQuery("#jform_add_php_allowadd input[type='radio']:checked").val();
|
||||
vvvvvzk(add_php_allowadd_vvvvvzk);
|
||||
|
||||
var add_php_allowedit_vvvvvzm = jQuery("#jform_add_php_allowedit input[type='radio']:checked").val();
|
||||
vvvvvzm(add_php_allowedit_vvvvvzm);
|
||||
var add_php_allowedit_vvvvvzl = jQuery("#jform_add_php_allowedit input[type='radio']:checked").val();
|
||||
vvvvvzl(add_php_allowedit_vvvvvzl);
|
||||
|
||||
var add_php_before_cancel_vvvvvzn = jQuery("#jform_add_php_before_cancel input[type='radio']:checked").val();
|
||||
vvvvvzn(add_php_before_cancel_vvvvvzn);
|
||||
var add_php_before_cancel_vvvvvzm = jQuery("#jform_add_php_before_cancel input[type='radio']:checked").val();
|
||||
vvvvvzm(add_php_before_cancel_vvvvvzm);
|
||||
|
||||
var add_php_after_cancel_vvvvvzo = jQuery("#jform_add_php_after_cancel input[type='radio']:checked").val();
|
||||
vvvvvzo(add_php_after_cancel_vvvvvzo);
|
||||
var add_php_after_cancel_vvvvvzn = jQuery("#jform_add_php_after_cancel input[type='radio']:checked").val();
|
||||
vvvvvzn(add_php_after_cancel_vvvvvzn);
|
||||
|
||||
var add_php_batchcopy_vvvvvzp = jQuery("#jform_add_php_batchcopy input[type='radio']:checked").val();
|
||||
vvvvvzp(add_php_batchcopy_vvvvvzp);
|
||||
var add_php_batchcopy_vvvvvzo = jQuery("#jform_add_php_batchcopy input[type='radio']:checked").val();
|
||||
vvvvvzo(add_php_batchcopy_vvvvvzo);
|
||||
|
||||
var add_php_batchmove_vvvvvzq = jQuery("#jform_add_php_batchmove input[type='radio']:checked").val();
|
||||
vvvvvzq(add_php_batchmove_vvvvvzq);
|
||||
var add_php_batchmove_vvvvvzp = jQuery("#jform_add_php_batchmove input[type='radio']:checked").val();
|
||||
vvvvvzp(add_php_batchmove_vvvvvzp);
|
||||
|
||||
var add_php_before_publish_vvvvvzr = jQuery("#jform_add_php_before_publish input[type='radio']:checked").val();
|
||||
vvvvvzr(add_php_before_publish_vvvvvzr);
|
||||
var add_php_before_publish_vvvvvzq = jQuery("#jform_add_php_before_publish input[type='radio']:checked").val();
|
||||
vvvvvzq(add_php_before_publish_vvvvvzq);
|
||||
|
||||
var add_php_after_publish_vvvvvzs = jQuery("#jform_add_php_after_publish input[type='radio']:checked").val();
|
||||
vvvvvzs(add_php_after_publish_vvvvvzs);
|
||||
var add_php_after_publish_vvvvvzr = jQuery("#jform_add_php_after_publish input[type='radio']:checked").val();
|
||||
vvvvvzr(add_php_after_publish_vvvvvzr);
|
||||
|
||||
var add_php_before_delete_vvvvvzt = jQuery("#jform_add_php_before_delete input[type='radio']:checked").val();
|
||||
vvvvvzt(add_php_before_delete_vvvvvzt);
|
||||
var add_php_before_delete_vvvvvzs = jQuery("#jform_add_php_before_delete input[type='radio']:checked").val();
|
||||
vvvvvzs(add_php_before_delete_vvvvvzs);
|
||||
|
||||
var add_php_after_delete_vvvvvzu = jQuery("#jform_add_php_after_delete input[type='radio']:checked").val();
|
||||
vvvvvzu(add_php_after_delete_vvvvvzu);
|
||||
var add_php_after_delete_vvvvvzt = jQuery("#jform_add_php_after_delete input[type='radio']:checked").val();
|
||||
vvvvvzt(add_php_after_delete_vvvvvzt);
|
||||
|
||||
var add_php_document_vvvvvzv = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvvzv(add_php_document_vvvvvzv);
|
||||
var add_php_document_vvvvvzu = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvvzu(add_php_document_vvvvvzu);
|
||||
|
||||
var add_sql_vvvvvzv = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvzv(add_sql_vvvvvzv);
|
||||
|
||||
var source_vvvvvzw = jQuery("#jform_source input[type='radio']:checked").val();
|
||||
var add_sql_vvvvvzw = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvzw(add_sql_vvvvvzw);
|
||||
vvvvvzw(source_vvvvvzw,add_sql_vvvvvzw);
|
||||
|
||||
var source_vvvvvzx = jQuery("#jform_source input[type='radio']:checked").val();
|
||||
var add_sql_vvvvvzx = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvzx(source_vvvvvzx,add_sql_vvvvvzx);
|
||||
var source_vvvvvzy = jQuery("#jform_source input[type='radio']:checked").val();
|
||||
var add_sql_vvvvvzy = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvzy(source_vvvvvzy,add_sql_vvvvvzy);
|
||||
|
||||
var source_vvvvvzz = jQuery("#jform_source input[type='radio']:checked").val();
|
||||
var add_sql_vvvvvzz = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvzz(source_vvvvvzz,add_sql_vvvvvzz);
|
||||
var add_custom_import_vvvvwaa = jQuery("#jform_add_custom_import input[type='radio']:checked").val();
|
||||
vvvvwaa(add_custom_import_vvvvwaa);
|
||||
|
||||
var add_custom_import_vvvvwab = jQuery("#jform_add_custom_import input[type='radio']:checked").val();
|
||||
vvvvwab(add_custom_import_vvvvwab);
|
||||
|
||||
var add_custom_import_vvvvwac = jQuery("#jform_add_custom_import input[type='radio']:checked").val();
|
||||
vvvvwac(add_custom_import_vvvvwac);
|
||||
|
||||
var add_custom_button_vvvvwad = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvwad(add_custom_button_vvvvwad);
|
||||
var add_custom_button_vvvvwac = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvwac(add_custom_button_vvvvwac);
|
||||
});
|
||||
|
||||
// the vvvvvyw function
|
||||
function vvvvvyw(add_css_view_vvvvvyw)
|
||||
// the vvvvvyv function
|
||||
function vvvvvyv(add_css_view_vvvvvyv)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_css_view_vvvvvyw == 1)
|
||||
if (add_css_view_vvvvvyv == 1)
|
||||
{
|
||||
jQuery('#jform_css_view-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -135,11 +135,11 @@ function vvvvvyw(add_css_view_vvvvvyw)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvyx function
|
||||
function vvvvvyx(add_css_views_vvvvvyx)
|
||||
// the vvvvvyw function
|
||||
function vvvvvyw(add_css_views_vvvvvyw)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_css_views_vvvvvyx == 1)
|
||||
if (add_css_views_vvvvvyw == 1)
|
||||
{
|
||||
jQuery('#jform_css_views-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -149,11 +149,11 @@ function vvvvvyx(add_css_views_vvvvvyx)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvyy function
|
||||
function vvvvvyy(add_javascript_view_file_vvvvvyy)
|
||||
// the vvvvvyx function
|
||||
function vvvvvyx(add_javascript_view_file_vvvvvyx)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_javascript_view_file_vvvvvyy == 1)
|
||||
if (add_javascript_view_file_vvvvvyx == 1)
|
||||
{
|
||||
jQuery('#jform_javascript_view_file-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -163,11 +163,11 @@ function vvvvvyy(add_javascript_view_file_vvvvvyy)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvyz function
|
||||
function vvvvvyz(add_javascript_views_file_vvvvvyz)
|
||||
// the vvvvvyy function
|
||||
function vvvvvyy(add_javascript_views_file_vvvvvyy)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_javascript_views_file_vvvvvyz == 1)
|
||||
if (add_javascript_views_file_vvvvvyy == 1)
|
||||
{
|
||||
jQuery('#jform_javascript_views_file-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -177,11 +177,11 @@ function vvvvvyz(add_javascript_views_file_vvvvvyz)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvza function
|
||||
function vvvvvza(add_javascript_view_footer_vvvvvza)
|
||||
// the vvvvvyz function
|
||||
function vvvvvyz(add_javascript_view_footer_vvvvvyz)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_javascript_view_footer_vvvvvza == 1)
|
||||
if (add_javascript_view_footer_vvvvvyz == 1)
|
||||
{
|
||||
jQuery('#jform_javascript_view_footer-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -191,11 +191,11 @@ function vvvvvza(add_javascript_view_footer_vvvvvza)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvzb function
|
||||
function vvvvvzb(add_javascript_views_footer_vvvvvzb)
|
||||
// the vvvvvza function
|
||||
function vvvvvza(add_javascript_views_footer_vvvvvza)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_javascript_views_footer_vvvvvzb == 1)
|
||||
if (add_javascript_views_footer_vvvvvza == 1)
|
||||
{
|
||||
jQuery('#jform_javascript_views_footer-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -205,11 +205,11 @@ function vvvvvzb(add_javascript_views_footer_vvvvvzb)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvzc function
|
||||
function vvvvvzc(add_php_ajax_vvvvvzc)
|
||||
// the vvvvvzb function
|
||||
function vvvvvzb(add_php_ajax_vvvvvzb)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_ajax_vvvvvzc == 1)
|
||||
if (add_php_ajax_vvvvvzb == 1)
|
||||
{
|
||||
jQuery('#jform_ajax_input-lbl').closest('.control-group').show();
|
||||
jQuery('#jform_php_ajaxmethod-lbl').closest('.control-group').show();
|
||||
@ -221,11 +221,11 @@ function vvvvvzc(add_php_ajax_vvvvvzc)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvzd function
|
||||
function vvvvvzd(add_php_getitem_vvvvvzd)
|
||||
// the vvvvvzc function
|
||||
function vvvvvzc(add_php_getitem_vvvvvzc)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_getitem_vvvvvzd == 1)
|
||||
if (add_php_getitem_vvvvvzc == 1)
|
||||
{
|
||||
jQuery('#jform_php_getitem-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -235,11 +235,11 @@ function vvvvvzd(add_php_getitem_vvvvvzd)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvze function
|
||||
function vvvvvze(add_php_getitems_vvvvvze)
|
||||
// the vvvvvzd function
|
||||
function vvvvvzd(add_php_getitems_vvvvvzd)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_getitems_vvvvvze == 1)
|
||||
if (add_php_getitems_vvvvvzd == 1)
|
||||
{
|
||||
jQuery('#jform_php_getitems-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -249,11 +249,11 @@ function vvvvvze(add_php_getitems_vvvvvze)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvzf function
|
||||
function vvvvvzf(add_php_getitems_after_all_vvvvvzf)
|
||||
// the vvvvvze function
|
||||
function vvvvvze(add_php_getitems_after_all_vvvvvze)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_getitems_after_all_vvvvvzf == 1)
|
||||
if (add_php_getitems_after_all_vvvvvze == 1)
|
||||
{
|
||||
jQuery('#jform_php_getitems_after_all-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -263,11 +263,11 @@ function vvvvvzf(add_php_getitems_after_all_vvvvvzf)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvzg function
|
||||
function vvvvvzg(add_php_getlistquery_vvvvvzg)
|
||||
// the vvvvvzf function
|
||||
function vvvvvzf(add_php_getlistquery_vvvvvzf)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_getlistquery_vvvvvzg == 1)
|
||||
if (add_php_getlistquery_vvvvvzf == 1)
|
||||
{
|
||||
jQuery('#jform_php_getlistquery-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -277,11 +277,11 @@ function vvvvvzg(add_php_getlistquery_vvvvvzg)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvzh function
|
||||
function vvvvvzh(add_php_getform_vvvvvzh)
|
||||
// the vvvvvzg function
|
||||
function vvvvvzg(add_php_getform_vvvvvzg)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_getform_vvvvvzh == 1)
|
||||
if (add_php_getform_vvvvvzg == 1)
|
||||
{
|
||||
jQuery('#jform_php_getform-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -291,11 +291,11 @@ function vvvvvzh(add_php_getform_vvvvvzh)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvzi function
|
||||
function vvvvvzi(add_php_before_save_vvvvvzi)
|
||||
// the vvvvvzh function
|
||||
function vvvvvzh(add_php_before_save_vvvvvzh)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_before_save_vvvvvzi == 1)
|
||||
if (add_php_before_save_vvvvvzh == 1)
|
||||
{
|
||||
jQuery('#jform_php_before_save-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -305,11 +305,11 @@ function vvvvvzi(add_php_before_save_vvvvvzi)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvzj function
|
||||
function vvvvvzj(add_php_save_vvvvvzj)
|
||||
// the vvvvvzi function
|
||||
function vvvvvzi(add_php_save_vvvvvzi)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_save_vvvvvzj == 1)
|
||||
if (add_php_save_vvvvvzi == 1)
|
||||
{
|
||||
jQuery('#jform_php_save-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -319,11 +319,11 @@ function vvvvvzj(add_php_save_vvvvvzj)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvzk function
|
||||
function vvvvvzk(add_php_postsavehook_vvvvvzk)
|
||||
// the vvvvvzj function
|
||||
function vvvvvzj(add_php_postsavehook_vvvvvzj)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_postsavehook_vvvvvzk == 1)
|
||||
if (add_php_postsavehook_vvvvvzj == 1)
|
||||
{
|
||||
jQuery('#jform_php_postsavehook-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -333,11 +333,11 @@ function vvvvvzk(add_php_postsavehook_vvvvvzk)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvzl function
|
||||
function vvvvvzl(add_php_allowadd_vvvvvzl)
|
||||
// the vvvvvzk function
|
||||
function vvvvvzk(add_php_allowadd_vvvvvzk)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_allowadd_vvvvvzl == 1)
|
||||
if (add_php_allowadd_vvvvvzk == 1)
|
||||
{
|
||||
jQuery('#jform_php_allowadd-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -347,11 +347,11 @@ function vvvvvzl(add_php_allowadd_vvvvvzl)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvzm function
|
||||
function vvvvvzm(add_php_allowedit_vvvvvzm)
|
||||
// the vvvvvzl function
|
||||
function vvvvvzl(add_php_allowedit_vvvvvzl)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_allowedit_vvvvvzm == 1)
|
||||
if (add_php_allowedit_vvvvvzl == 1)
|
||||
{
|
||||
jQuery('#jform_php_allowedit-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -361,11 +361,11 @@ function vvvvvzm(add_php_allowedit_vvvvvzm)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvzn function
|
||||
function vvvvvzn(add_php_before_cancel_vvvvvzn)
|
||||
// the vvvvvzm function
|
||||
function vvvvvzm(add_php_before_cancel_vvvvvzm)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_before_cancel_vvvvvzn == 1)
|
||||
if (add_php_before_cancel_vvvvvzm == 1)
|
||||
{
|
||||
jQuery('#jform_php_before_cancel-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -375,11 +375,11 @@ function vvvvvzn(add_php_before_cancel_vvvvvzn)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvzo function
|
||||
function vvvvvzo(add_php_after_cancel_vvvvvzo)
|
||||
// the vvvvvzn function
|
||||
function vvvvvzn(add_php_after_cancel_vvvvvzn)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_after_cancel_vvvvvzo == 1)
|
||||
if (add_php_after_cancel_vvvvvzn == 1)
|
||||
{
|
||||
jQuery('#jform_php_after_cancel-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -389,11 +389,11 @@ function vvvvvzo(add_php_after_cancel_vvvvvzo)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvzp function
|
||||
function vvvvvzp(add_php_batchcopy_vvvvvzp)
|
||||
// the vvvvvzo function
|
||||
function vvvvvzo(add_php_batchcopy_vvvvvzo)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_batchcopy_vvvvvzp == 1)
|
||||
if (add_php_batchcopy_vvvvvzo == 1)
|
||||
{
|
||||
jQuery('#jform_php_batchcopy-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -403,11 +403,11 @@ function vvvvvzp(add_php_batchcopy_vvvvvzp)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvzq function
|
||||
function vvvvvzq(add_php_batchmove_vvvvvzq)
|
||||
// the vvvvvzp function
|
||||
function vvvvvzp(add_php_batchmove_vvvvvzp)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_batchmove_vvvvvzq == 1)
|
||||
if (add_php_batchmove_vvvvvzp == 1)
|
||||
{
|
||||
jQuery('#jform_php_batchmove-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -417,11 +417,11 @@ function vvvvvzq(add_php_batchmove_vvvvvzq)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvzr function
|
||||
function vvvvvzr(add_php_before_publish_vvvvvzr)
|
||||
// the vvvvvzq function
|
||||
function vvvvvzq(add_php_before_publish_vvvvvzq)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_before_publish_vvvvvzr == 1)
|
||||
if (add_php_before_publish_vvvvvzq == 1)
|
||||
{
|
||||
jQuery('#jform_php_before_publish-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -431,11 +431,11 @@ function vvvvvzr(add_php_before_publish_vvvvvzr)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvzs function
|
||||
function vvvvvzs(add_php_after_publish_vvvvvzs)
|
||||
// the vvvvvzr function
|
||||
function vvvvvzr(add_php_after_publish_vvvvvzr)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_after_publish_vvvvvzs == 1)
|
||||
if (add_php_after_publish_vvvvvzr == 1)
|
||||
{
|
||||
jQuery('#jform_php_after_publish-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -445,11 +445,11 @@ function vvvvvzs(add_php_after_publish_vvvvvzs)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvzt function
|
||||
function vvvvvzt(add_php_before_delete_vvvvvzt)
|
||||
// the vvvvvzs function
|
||||
function vvvvvzs(add_php_before_delete_vvvvvzs)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_before_delete_vvvvvzt == 1)
|
||||
if (add_php_before_delete_vvvvvzs == 1)
|
||||
{
|
||||
jQuery('#jform_php_before_delete-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -459,11 +459,11 @@ function vvvvvzt(add_php_before_delete_vvvvvzt)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvzu function
|
||||
function vvvvvzu(add_php_after_delete_vvvvvzu)
|
||||
// the vvvvvzt function
|
||||
function vvvvvzt(add_php_after_delete_vvvvvzt)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_after_delete_vvvvvzu == 1)
|
||||
if (add_php_after_delete_vvvvvzt == 1)
|
||||
{
|
||||
jQuery('#jform_php_after_delete-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -473,11 +473,11 @@ function vvvvvzu(add_php_after_delete_vvvvvzu)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvzv function
|
||||
function vvvvvzv(add_php_document_vvvvvzv)
|
||||
// the vvvvvzu function
|
||||
function vvvvvzu(add_php_document_vvvvvzu)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_document_vvvvvzv == 1)
|
||||
if (add_php_document_vvvvvzu == 1)
|
||||
{
|
||||
jQuery('#jform_php_document-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -487,75 +487,75 @@ function vvvvvzv(add_php_document_vvvvvzv)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvzw function
|
||||
function vvvvvzw(add_sql_vvvvvzw)
|
||||
// the vvvvvzv function
|
||||
function vvvvvzv(add_sql_vvvvvzv)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_sql_vvvvvzw == 1)
|
||||
if (add_sql_vvvvvzv == 1)
|
||||
{
|
||||
jQuery('#jform_source').closest('.control-group').show();
|
||||
// add required attribute to source field
|
||||
if (jform_vvvvvzwvwj_required)
|
||||
if (jform_vvvvvzvvwj_required)
|
||||
{
|
||||
updateFieldRequired('source',0);
|
||||
jQuery('#jform_source').prop('required','required');
|
||||
jQuery('#jform_source').attr('aria-required',true);
|
||||
jQuery('#jform_source').addClass('required');
|
||||
jform_vvvvvzwvwj_required = false;
|
||||
jform_vvvvvzvvwj_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_source').closest('.control-group').hide();
|
||||
// remove required attribute from source field
|
||||
if (!jform_vvvvvzwvwj_required)
|
||||
if (!jform_vvvvvzvvwj_required)
|
||||
{
|
||||
updateFieldRequired('source',1);
|
||||
jQuery('#jform_source').removeAttr('required');
|
||||
jQuery('#jform_source').removeAttr('aria-required');
|
||||
jQuery('#jform_source').removeClass('required');
|
||||
jform_vvvvvzwvwj_required = true;
|
||||
jform_vvvvvzvvwj_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvzx function
|
||||
function vvvvvzx(source_vvvvvzx,add_sql_vvvvvzx)
|
||||
// the vvvvvzw function
|
||||
function vvvvvzw(source_vvvvvzw,add_sql_vvvvvzw)
|
||||
{
|
||||
// set the function logic
|
||||
if (source_vvvvvzx == 2 && add_sql_vvvvvzx == 1)
|
||||
if (source_vvvvvzw == 2 && add_sql_vvvvvzw == 1)
|
||||
{
|
||||
jQuery('#jform_sql').closest('.control-group').show();
|
||||
// add required attribute to sql field
|
||||
if (jform_vvvvvzxvwk_required)
|
||||
if (jform_vvvvvzwvwk_required)
|
||||
{
|
||||
updateFieldRequired('sql',0);
|
||||
jQuery('#jform_sql').prop('required','required');
|
||||
jQuery('#jform_sql').attr('aria-required',true);
|
||||
jQuery('#jform_sql').addClass('required');
|
||||
jform_vvvvvzxvwk_required = false;
|
||||
jform_vvvvvzwvwk_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_sql').closest('.control-group').hide();
|
||||
// remove required attribute from sql field
|
||||
if (!jform_vvvvvzxvwk_required)
|
||||
if (!jform_vvvvvzwvwk_required)
|
||||
{
|
||||
updateFieldRequired('sql',1);
|
||||
jQuery('#jform_sql').removeAttr('required');
|
||||
jQuery('#jform_sql').removeAttr('aria-required');
|
||||
jQuery('#jform_sql').removeClass('required');
|
||||
jform_vvvvvzxvwk_required = true;
|
||||
jform_vvvvvzwvwk_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvzz function
|
||||
function vvvvvzz(source_vvvvvzz,add_sql_vvvvvzz)
|
||||
// the vvvvvzy function
|
||||
function vvvvvzy(source_vvvvvzy,add_sql_vvvvvzy)
|
||||
{
|
||||
// set the function logic
|
||||
if (source_vvvvvzz == 1 && add_sql_vvvvvzz == 1)
|
||||
if (source_vvvvvzy == 1 && add_sql_vvvvvzy == 1)
|
||||
{
|
||||
jQuery('#jform_addtables-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -565,165 +565,165 @@ function vvvvvzz(source_vvvvvzz,add_sql_vvvvvzz)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwab function
|
||||
function vvvvwab(add_custom_import_vvvvwab)
|
||||
// the vvvvwaa function
|
||||
function vvvvwaa(add_custom_import_vvvvwaa)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_custom_import_vvvvwab == 1)
|
||||
if (add_custom_import_vvvvwaa == 1)
|
||||
{
|
||||
jQuery('#jform_html_import_view').closest('.control-group').show();
|
||||
// add required attribute to html_import_view field
|
||||
if (jform_vvvvwabvwl_required)
|
||||
if (jform_vvvvwaavwl_required)
|
||||
{
|
||||
updateFieldRequired('html_import_view',0);
|
||||
jQuery('#jform_html_import_view').prop('required','required');
|
||||
jQuery('#jform_html_import_view').attr('aria-required',true);
|
||||
jQuery('#jform_html_import_view').addClass('required');
|
||||
jform_vvvvwabvwl_required = false;
|
||||
jform_vvvvwaavwl_required = false;
|
||||
}
|
||||
jQuery('.note_advanced_import').closest('.control-group').show();
|
||||
jQuery('#jform_php_import_display').closest('.control-group').show();
|
||||
// add required attribute to php_import_display field
|
||||
if (jform_vvvvwabvwm_required)
|
||||
if (jform_vvvvwaavwm_required)
|
||||
{
|
||||
updateFieldRequired('php_import_display',0);
|
||||
jQuery('#jform_php_import_display').prop('required','required');
|
||||
jQuery('#jform_php_import_display').attr('aria-required',true);
|
||||
jQuery('#jform_php_import_display').addClass('required');
|
||||
jform_vvvvwabvwm_required = false;
|
||||
jform_vvvvwaavwm_required = false;
|
||||
}
|
||||
jQuery('#jform_php_import_ext').closest('.control-group').show();
|
||||
// add required attribute to php_import_ext field
|
||||
if (jform_vvvvwabvwn_required)
|
||||
if (jform_vvvvwaavwn_required)
|
||||
{
|
||||
updateFieldRequired('php_import_ext',0);
|
||||
jQuery('#jform_php_import_ext').prop('required','required');
|
||||
jQuery('#jform_php_import_ext').attr('aria-required',true);
|
||||
jQuery('#jform_php_import_ext').addClass('required');
|
||||
jform_vvvvwabvwn_required = false;
|
||||
jform_vvvvwaavwn_required = false;
|
||||
}
|
||||
jQuery('#jform_php_import_headers').closest('.control-group').show();
|
||||
// add required attribute to php_import_headers field
|
||||
if (jform_vvvvwabvwo_required)
|
||||
if (jform_vvvvwaavwo_required)
|
||||
{
|
||||
updateFieldRequired('php_import_headers',0);
|
||||
jQuery('#jform_php_import_headers').prop('required','required');
|
||||
jQuery('#jform_php_import_headers').attr('aria-required',true);
|
||||
jQuery('#jform_php_import_headers').addClass('required');
|
||||
jform_vvvvwabvwo_required = false;
|
||||
jform_vvvvwaavwo_required = false;
|
||||
}
|
||||
jQuery('#jform_php_import').closest('.control-group').show();
|
||||
// add required attribute to php_import field
|
||||
if (jform_vvvvwabvwp_required)
|
||||
if (jform_vvvvwaavwp_required)
|
||||
{
|
||||
updateFieldRequired('php_import',0);
|
||||
jQuery('#jform_php_import').prop('required','required');
|
||||
jQuery('#jform_php_import').attr('aria-required',true);
|
||||
jQuery('#jform_php_import').addClass('required');
|
||||
jform_vvvvwabvwp_required = false;
|
||||
jform_vvvvwaavwp_required = false;
|
||||
}
|
||||
jQuery('#jform_php_import_save').closest('.control-group').show();
|
||||
// add required attribute to php_import_save field
|
||||
if (jform_vvvvwabvwq_required)
|
||||
if (jform_vvvvwaavwq_required)
|
||||
{
|
||||
updateFieldRequired('php_import_save',0);
|
||||
jQuery('#jform_php_import_save').prop('required','required');
|
||||
jQuery('#jform_php_import_save').attr('aria-required',true);
|
||||
jQuery('#jform_php_import_save').addClass('required');
|
||||
jform_vvvvwabvwq_required = false;
|
||||
jform_vvvvwaavwq_required = false;
|
||||
}
|
||||
jQuery('#jform_php_import_setdata').closest('.control-group').show();
|
||||
// add required attribute to php_import_setdata field
|
||||
if (jform_vvvvwabvwr_required)
|
||||
if (jform_vvvvwaavwr_required)
|
||||
{
|
||||
updateFieldRequired('php_import_setdata',0);
|
||||
jQuery('#jform_php_import_setdata').prop('required','required');
|
||||
jQuery('#jform_php_import_setdata').attr('aria-required',true);
|
||||
jQuery('#jform_php_import_setdata').addClass('required');
|
||||
jform_vvvvwabvwr_required = false;
|
||||
jform_vvvvwaavwr_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_html_import_view').closest('.control-group').hide();
|
||||
// remove required attribute from html_import_view field
|
||||
if (!jform_vvvvwabvwl_required)
|
||||
if (!jform_vvvvwaavwl_required)
|
||||
{
|
||||
updateFieldRequired('html_import_view',1);
|
||||
jQuery('#jform_html_import_view').removeAttr('required');
|
||||
jQuery('#jform_html_import_view').removeAttr('aria-required');
|
||||
jQuery('#jform_html_import_view').removeClass('required');
|
||||
jform_vvvvwabvwl_required = true;
|
||||
jform_vvvvwaavwl_required = true;
|
||||
}
|
||||
jQuery('.note_advanced_import').closest('.control-group').hide();
|
||||
jQuery('#jform_php_import_display').closest('.control-group').hide();
|
||||
// remove required attribute from php_import_display field
|
||||
if (!jform_vvvvwabvwm_required)
|
||||
if (!jform_vvvvwaavwm_required)
|
||||
{
|
||||
updateFieldRequired('php_import_display',1);
|
||||
jQuery('#jform_php_import_display').removeAttr('required');
|
||||
jQuery('#jform_php_import_display').removeAttr('aria-required');
|
||||
jQuery('#jform_php_import_display').removeClass('required');
|
||||
jform_vvvvwabvwm_required = true;
|
||||
jform_vvvvwaavwm_required = true;
|
||||
}
|
||||
jQuery('#jform_php_import_ext').closest('.control-group').hide();
|
||||
// remove required attribute from php_import_ext field
|
||||
if (!jform_vvvvwabvwn_required)
|
||||
if (!jform_vvvvwaavwn_required)
|
||||
{
|
||||
updateFieldRequired('php_import_ext',1);
|
||||
jQuery('#jform_php_import_ext').removeAttr('required');
|
||||
jQuery('#jform_php_import_ext').removeAttr('aria-required');
|
||||
jQuery('#jform_php_import_ext').removeClass('required');
|
||||
jform_vvvvwabvwn_required = true;
|
||||
jform_vvvvwaavwn_required = true;
|
||||
}
|
||||
jQuery('#jform_php_import_headers').closest('.control-group').hide();
|
||||
// remove required attribute from php_import_headers field
|
||||
if (!jform_vvvvwabvwo_required)
|
||||
if (!jform_vvvvwaavwo_required)
|
||||
{
|
||||
updateFieldRequired('php_import_headers',1);
|
||||
jQuery('#jform_php_import_headers').removeAttr('required');
|
||||
jQuery('#jform_php_import_headers').removeAttr('aria-required');
|
||||
jQuery('#jform_php_import_headers').removeClass('required');
|
||||
jform_vvvvwabvwo_required = true;
|
||||
jform_vvvvwaavwo_required = true;
|
||||
}
|
||||
jQuery('#jform_php_import').closest('.control-group').hide();
|
||||
// remove required attribute from php_import field
|
||||
if (!jform_vvvvwabvwp_required)
|
||||
if (!jform_vvvvwaavwp_required)
|
||||
{
|
||||
updateFieldRequired('php_import',1);
|
||||
jQuery('#jform_php_import').removeAttr('required');
|
||||
jQuery('#jform_php_import').removeAttr('aria-required');
|
||||
jQuery('#jform_php_import').removeClass('required');
|
||||
jform_vvvvwabvwp_required = true;
|
||||
jform_vvvvwaavwp_required = true;
|
||||
}
|
||||
jQuery('#jform_php_import_save').closest('.control-group').hide();
|
||||
// remove required attribute from php_import_save field
|
||||
if (!jform_vvvvwabvwq_required)
|
||||
if (!jform_vvvvwaavwq_required)
|
||||
{
|
||||
updateFieldRequired('php_import_save',1);
|
||||
jQuery('#jform_php_import_save').removeAttr('required');
|
||||
jQuery('#jform_php_import_save').removeAttr('aria-required');
|
||||
jQuery('#jform_php_import_save').removeClass('required');
|
||||
jform_vvvvwabvwq_required = true;
|
||||
jform_vvvvwaavwq_required = true;
|
||||
}
|
||||
jQuery('#jform_php_import_setdata').closest('.control-group').hide();
|
||||
// remove required attribute from php_import_setdata field
|
||||
if (!jform_vvvvwabvwr_required)
|
||||
if (!jform_vvvvwaavwr_required)
|
||||
{
|
||||
updateFieldRequired('php_import_setdata',1);
|
||||
jQuery('#jform_php_import_setdata').removeAttr('required');
|
||||
jQuery('#jform_php_import_setdata').removeAttr('aria-required');
|
||||
jQuery('#jform_php_import_setdata').removeClass('required');
|
||||
jform_vvvvwabvwr_required = true;
|
||||
jform_vvvvwaavwr_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwac function
|
||||
function vvvvwac(add_custom_import_vvvvwac)
|
||||
// the vvvvwab function
|
||||
function vvvvwab(add_custom_import_vvvvwab)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_custom_import_vvvvwac == 0)
|
||||
if (add_custom_import_vvvvwab == 0)
|
||||
{
|
||||
jQuery('.note_beginner_import').closest('.control-group').show();
|
||||
}
|
||||
@ -733,11 +733,11 @@ function vvvvwac(add_custom_import_vvvvwac)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwad function
|
||||
function vvvvwad(add_custom_button_vvvvwad)
|
||||
// the vvvvwac function
|
||||
function vvvvwac(add_custom_button_vvvvwac)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_custom_button_vvvvwad == 1)
|
||||
if (add_custom_button_vvvvwac == 1)
|
||||
{
|
||||
jQuery('#jform_custom_button-lbl').closest('.control-group').show();
|
||||
jQuery('#jform_php_controller-lbl').closest('.control-group').show();
|
||||
|
@ -9,29 +9,29 @@
|
||||
*/
|
||||
|
||||
// Some Global Values
|
||||
jform_vvvvwchvxk_required = false;
|
||||
jform_vvvvwcgvxk_required = false;
|
||||
|
||||
// Initial Script
|
||||
document.addEventListener('DOMContentLoaded', function()
|
||||
{
|
||||
var extension_type_vvvvwch = jQuery("#jform_extension_type").val();
|
||||
vvvvwch(extension_type_vvvvwch);
|
||||
var extension_type_vvvvwcg = jQuery("#jform_extension_type").val();
|
||||
vvvvwcg(extension_type_vvvvwcg);
|
||||
});
|
||||
|
||||
// the vvvvwch function
|
||||
function vvvvwch(extension_type_vvvvwch)
|
||||
// the vvvvwcg function
|
||||
function vvvvwcg(extension_type_vvvvwcg)
|
||||
{
|
||||
if (isSet(extension_type_vvvvwch) && extension_type_vvvvwch.constructor !== Array)
|
||||
if (isSet(extension_type_vvvvwcg) && extension_type_vvvvwcg.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwch = extension_type_vvvvwch;
|
||||
var extension_type_vvvvwch = [];
|
||||
extension_type_vvvvwch.push(temp_vvvvwch);
|
||||
var temp_vvvvwcg = extension_type_vvvvwcg;
|
||||
var extension_type_vvvvwcg = [];
|
||||
extension_type_vvvvwcg.push(temp_vvvvwcg);
|
||||
}
|
||||
else if (!isSet(extension_type_vvvvwch))
|
||||
else if (!isSet(extension_type_vvvvwcg))
|
||||
{
|
||||
var extension_type_vvvvwch = [];
|
||||
var extension_type_vvvvwcg = [];
|
||||
}
|
||||
var extension_type = extension_type_vvvvwch.some(extension_type_vvvvwch_SomeFunc);
|
||||
var extension_type = extension_type_vvvvwcg.some(extension_type_vvvvwcg_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
@ -39,35 +39,35 @@ function vvvvwch(extension_type_vvvvwch)
|
||||
{
|
||||
jQuery('#jform_joomla_plugin_group').closest('.control-group').show();
|
||||
// add required attribute to joomla_plugin_group field
|
||||
if (jform_vvvvwchvxk_required)
|
||||
if (jform_vvvvwcgvxk_required)
|
||||
{
|
||||
updateFieldRequired('joomla_plugin_group',0);
|
||||
jQuery('#jform_joomla_plugin_group').prop('required','required');
|
||||
jQuery('#jform_joomla_plugin_group').attr('aria-required',true);
|
||||
jQuery('#jform_joomla_plugin_group').addClass('required');
|
||||
jform_vvvvwchvxk_required = false;
|
||||
jform_vvvvwcgvxk_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_joomla_plugin_group').closest('.control-group').hide();
|
||||
// remove required attribute from joomla_plugin_group field
|
||||
if (!jform_vvvvwchvxk_required)
|
||||
if (!jform_vvvvwcgvxk_required)
|
||||
{
|
||||
updateFieldRequired('joomla_plugin_group',1);
|
||||
jQuery('#jform_joomla_plugin_group').removeAttr('required');
|
||||
jQuery('#jform_joomla_plugin_group').removeAttr('aria-required');
|
||||
jQuery('#jform_joomla_plugin_group').removeClass('required');
|
||||
jform_vvvvwchvxk_required = true;
|
||||
jform_vvvvwcgvxk_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwch Some function
|
||||
function extension_type_vvvvwch_SomeFunc(extension_type_vvvvwch)
|
||||
// the vvvvwcg Some function
|
||||
function extension_type_vvvvwcg_SomeFunc(extension_type_vvvvwcg)
|
||||
{
|
||||
// set the function logic
|
||||
if (extension_type_vvvvwch == 'plugins' || extension_type_vvvvwch == 'plugin')
|
||||
if (extension_type_vvvvwcg == 'plugins' || extension_type_vvvvwcg == 'plugin')
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
@ -9,29 +9,29 @@
|
||||
*/
|
||||
|
||||
// Some Global Values
|
||||
jform_vvvvwcgvxj_required = false;
|
||||
jform_vvvvwcfvxj_required = false;
|
||||
|
||||
// Initial Script
|
||||
document.addEventListener('DOMContentLoaded', function()
|
||||
{
|
||||
var extension_type_vvvvwcg = jQuery("#jform_extension_type").val();
|
||||
vvvvwcg(extension_type_vvvvwcg);
|
||||
var extension_type_vvvvwcf = jQuery("#jform_extension_type").val();
|
||||
vvvvwcf(extension_type_vvvvwcf);
|
||||
});
|
||||
|
||||
// the vvvvwcg function
|
||||
function vvvvwcg(extension_type_vvvvwcg)
|
||||
// the vvvvwcf function
|
||||
function vvvvwcf(extension_type_vvvvwcf)
|
||||
{
|
||||
if (isSet(extension_type_vvvvwcg) && extension_type_vvvvwcg.constructor !== Array)
|
||||
if (isSet(extension_type_vvvvwcf) && extension_type_vvvvwcf.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcg = extension_type_vvvvwcg;
|
||||
var extension_type_vvvvwcg = [];
|
||||
extension_type_vvvvwcg.push(temp_vvvvwcg);
|
||||
var temp_vvvvwcf = extension_type_vvvvwcf;
|
||||
var extension_type_vvvvwcf = [];
|
||||
extension_type_vvvvwcf.push(temp_vvvvwcf);
|
||||
}
|
||||
else if (!isSet(extension_type_vvvvwcg))
|
||||
else if (!isSet(extension_type_vvvvwcf))
|
||||
{
|
||||
var extension_type_vvvvwcg = [];
|
||||
var extension_type_vvvvwcf = [];
|
||||
}
|
||||
var extension_type = extension_type_vvvvwcg.some(extension_type_vvvvwcg_SomeFunc);
|
||||
var extension_type = extension_type_vvvvwcf.some(extension_type_vvvvwcf_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
@ -39,35 +39,35 @@ function vvvvwcg(extension_type_vvvvwcg)
|
||||
{
|
||||
jQuery('#jform_joomla_plugin_group').closest('.control-group').show();
|
||||
// add required attribute to joomla_plugin_group field
|
||||
if (jform_vvvvwcgvxj_required)
|
||||
if (jform_vvvvwcfvxj_required)
|
||||
{
|
||||
updateFieldRequired('joomla_plugin_group',0);
|
||||
jQuery('#jform_joomla_plugin_group').prop('required','required');
|
||||
jQuery('#jform_joomla_plugin_group').attr('aria-required',true);
|
||||
jQuery('#jform_joomla_plugin_group').addClass('required');
|
||||
jform_vvvvwcgvxj_required = false;
|
||||
jform_vvvvwcfvxj_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_joomla_plugin_group').closest('.control-group').hide();
|
||||
// remove required attribute from joomla_plugin_group field
|
||||
if (!jform_vvvvwcgvxj_required)
|
||||
if (!jform_vvvvwcfvxj_required)
|
||||
{
|
||||
updateFieldRequired('joomla_plugin_group',1);
|
||||
jQuery('#jform_joomla_plugin_group').removeAttr('required');
|
||||
jQuery('#jform_joomla_plugin_group').removeAttr('aria-required');
|
||||
jQuery('#jform_joomla_plugin_group').removeClass('required');
|
||||
jform_vvvvwcgvxj_required = true;
|
||||
jform_vvvvwcfvxj_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcg Some function
|
||||
function extension_type_vvvvwcg_SomeFunc(extension_type_vvvvwcg)
|
||||
// the vvvvwcf Some function
|
||||
function extension_type_vvvvwcf_SomeFunc(extension_type_vvvvwcf)
|
||||
{
|
||||
// set the function logic
|
||||
if (extension_type_vvvvwcg == 'plugins' || extension_type_vvvvwcg == 'plugin')
|
||||
if (extension_type_vvvvwcf == 'plugins' || extension_type_vvvvwcf == 'plugin')
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
@ -11,42 +11,42 @@
|
||||
// Initial Script
|
||||
document.addEventListener('DOMContentLoaded', function()
|
||||
{
|
||||
var add_php_view_vvvvwae = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvwae(add_php_view_vvvvwae);
|
||||
var add_php_view_vvvvwad = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvwad(add_php_view_vvvvwad);
|
||||
|
||||
var add_php_jview_display_vvvvwaf = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
|
||||
vvvvwaf(add_php_jview_display_vvvvwaf);
|
||||
var add_php_jview_display_vvvvwae = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
|
||||
vvvvwae(add_php_jview_display_vvvvwae);
|
||||
|
||||
var add_php_jview_vvvvwag = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
|
||||
vvvvwag(add_php_jview_vvvvwag);
|
||||
var add_php_jview_vvvvwaf = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
|
||||
vvvvwaf(add_php_jview_vvvvwaf);
|
||||
|
||||
var add_php_document_vvvvwah = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvwah(add_php_document_vvvvwah);
|
||||
var add_php_document_vvvvwag = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvwag(add_php_document_vvvvwag);
|
||||
|
||||
var add_css_document_vvvvwai = jQuery("#jform_add_css_document input[type='radio']:checked").val();
|
||||
vvvvwai(add_css_document_vvvvwai);
|
||||
var add_css_document_vvvvwah = jQuery("#jform_add_css_document input[type='radio']:checked").val();
|
||||
vvvvwah(add_css_document_vvvvwah);
|
||||
|
||||
var add_javascript_file_vvvvwaj = jQuery("#jform_add_javascript_file input[type='radio']:checked").val();
|
||||
vvvvwaj(add_javascript_file_vvvvwaj);
|
||||
var add_javascript_file_vvvvwai = jQuery("#jform_add_javascript_file input[type='radio']:checked").val();
|
||||
vvvvwai(add_javascript_file_vvvvwai);
|
||||
|
||||
var add_js_document_vvvvwak = jQuery("#jform_add_js_document input[type='radio']:checked").val();
|
||||
vvvvwak(add_js_document_vvvvwak);
|
||||
var add_js_document_vvvvwaj = jQuery("#jform_add_js_document input[type='radio']:checked").val();
|
||||
vvvvwaj(add_js_document_vvvvwaj);
|
||||
|
||||
var add_custom_button_vvvvwal = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvwal(add_custom_button_vvvvwal);
|
||||
var add_custom_button_vvvvwak = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvwak(add_custom_button_vvvvwak);
|
||||
|
||||
var add_css_vvvvwam = jQuery("#jform_add_css input[type='radio']:checked").val();
|
||||
vvvvwam(add_css_vvvvwam);
|
||||
var add_css_vvvvwal = jQuery("#jform_add_css input[type='radio']:checked").val();
|
||||
vvvvwal(add_css_vvvvwal);
|
||||
|
||||
var add_php_ajax_vvvvwan = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
||||
vvvvwan(add_php_ajax_vvvvwan);
|
||||
var add_php_ajax_vvvvwam = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
||||
vvvvwam(add_php_ajax_vvvvwam);
|
||||
});
|
||||
|
||||
// the vvvvwae function
|
||||
function vvvvwae(add_php_view_vvvvwae)
|
||||
// the vvvvwad function
|
||||
function vvvvwad(add_php_view_vvvvwad)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_view_vvvvwae == 1)
|
||||
if (add_php_view_vvvvwad == 1)
|
||||
{
|
||||
jQuery('#jform_php_view-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -56,11 +56,11 @@ function vvvvwae(add_php_view_vvvvwae)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwaf function
|
||||
function vvvvwaf(add_php_jview_display_vvvvwaf)
|
||||
// the vvvvwae function
|
||||
function vvvvwae(add_php_jview_display_vvvvwae)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_jview_display_vvvvwaf == 1)
|
||||
if (add_php_jview_display_vvvvwae == 1)
|
||||
{
|
||||
jQuery('#jform_php_jview_display-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -70,11 +70,11 @@ function vvvvwaf(add_php_jview_display_vvvvwaf)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwag function
|
||||
function vvvvwag(add_php_jview_vvvvwag)
|
||||
// the vvvvwaf function
|
||||
function vvvvwaf(add_php_jview_vvvvwaf)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_jview_vvvvwag == 1)
|
||||
if (add_php_jview_vvvvwaf == 1)
|
||||
{
|
||||
jQuery('#jform_php_jview-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -84,11 +84,11 @@ function vvvvwag(add_php_jview_vvvvwag)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwah function
|
||||
function vvvvwah(add_php_document_vvvvwah)
|
||||
// the vvvvwag function
|
||||
function vvvvwag(add_php_document_vvvvwag)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_document_vvvvwah == 1)
|
||||
if (add_php_document_vvvvwag == 1)
|
||||
{
|
||||
jQuery('#jform_php_document-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -98,11 +98,11 @@ function vvvvwah(add_php_document_vvvvwah)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwai function
|
||||
function vvvvwai(add_css_document_vvvvwai)
|
||||
// the vvvvwah function
|
||||
function vvvvwah(add_css_document_vvvvwah)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_css_document_vvvvwai == 1)
|
||||
if (add_css_document_vvvvwah == 1)
|
||||
{
|
||||
jQuery('#jform_css_document-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -112,11 +112,11 @@ function vvvvwai(add_css_document_vvvvwai)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwaj function
|
||||
function vvvvwaj(add_javascript_file_vvvvwaj)
|
||||
// the vvvvwai function
|
||||
function vvvvwai(add_javascript_file_vvvvwai)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_javascript_file_vvvvwaj == 1)
|
||||
if (add_javascript_file_vvvvwai == 1)
|
||||
{
|
||||
jQuery('#jform_javascript_file-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -126,11 +126,11 @@ function vvvvwaj(add_javascript_file_vvvvwaj)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwak function
|
||||
function vvvvwak(add_js_document_vvvvwak)
|
||||
// the vvvvwaj function
|
||||
function vvvvwaj(add_js_document_vvvvwaj)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_js_document_vvvvwak == 1)
|
||||
if (add_js_document_vvvvwaj == 1)
|
||||
{
|
||||
jQuery('#jform_js_document-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -140,11 +140,11 @@ function vvvvwak(add_js_document_vvvvwak)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwal function
|
||||
function vvvvwal(add_custom_button_vvvvwal)
|
||||
// the vvvvwak function
|
||||
function vvvvwak(add_custom_button_vvvvwak)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_custom_button_vvvvwal == 1)
|
||||
if (add_custom_button_vvvvwak == 1)
|
||||
{
|
||||
jQuery('#jform_custom_button-lbl').closest('.control-group').show();
|
||||
jQuery('#jform_php_controller-lbl').closest('.control-group').show();
|
||||
@ -158,11 +158,11 @@ function vvvvwal(add_custom_button_vvvvwal)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwam function
|
||||
function vvvvwam(add_css_vvvvwam)
|
||||
// the vvvvwal function
|
||||
function vvvvwal(add_css_vvvvwal)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_css_vvvvwam == 1)
|
||||
if (add_css_vvvvwal == 1)
|
||||
{
|
||||
jQuery('#jform_css-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -172,11 +172,11 @@ function vvvvwam(add_css_vvvvwam)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwan function
|
||||
function vvvvwan(add_php_ajax_vvvvwan)
|
||||
// the vvvvwam function
|
||||
function vvvvwam(add_php_ajax_vvvvwam)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_ajax_vvvvwan == 1)
|
||||
if (add_php_ajax_vvvvwam == 1)
|
||||
{
|
||||
jQuery('#jform_ajax_input-lbl').closest('.control-group').show();
|
||||
jQuery('#jform_php_ajaxmethod-lbl').closest('.control-group').show();
|
||||
|
@ -9,44 +9,44 @@
|
||||
*/
|
||||
|
||||
// Some Global Values
|
||||
jform_vvvvwccvxf_required = false;
|
||||
jform_vvvvwcdvxg_required = false;
|
||||
jform_vvvvwcdvxh_required = false;
|
||||
jform_vvvvwcdvxi_required = false;
|
||||
jform_vvvvwcbvxf_required = false;
|
||||
jform_vvvvwccvxg_required = false;
|
||||
jform_vvvvwccvxh_required = false;
|
||||
jform_vvvvwccvxi_required = false;
|
||||
|
||||
// Initial Script
|
||||
document.addEventListener('DOMContentLoaded', function()
|
||||
{
|
||||
var target_vvvvwcb = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcb(target_vvvvwcb);
|
||||
|
||||
var target_vvvvwcc = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcc(target_vvvvwcc);
|
||||
|
||||
var target_vvvvwcd = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcd(target_vvvvwcd);
|
||||
var type_vvvvwcd = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
vvvvwcd(target_vvvvwcd,type_vvvvwcd);
|
||||
|
||||
var target_vvvvwce = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var type_vvvvwce = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
vvvvwce(target_vvvvwce,type_vvvvwce);
|
||||
|
||||
var type_vvvvwcf = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
var target_vvvvwcf = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcf(type_vvvvwcf,target_vvvvwcf);
|
||||
var target_vvvvwce = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwce(type_vvvvwce,target_vvvvwce);
|
||||
});
|
||||
|
||||
// the vvvvwcc function
|
||||
function vvvvwcc(target_vvvvwcc)
|
||||
// the vvvvwcb function
|
||||
function vvvvwcb(target_vvvvwcb)
|
||||
{
|
||||
// set the function logic
|
||||
if (target_vvvvwcc == 2)
|
||||
if (target_vvvvwcb == 2)
|
||||
{
|
||||
jQuery('#jform_function_name').closest('.control-group').show();
|
||||
// add required attribute to function_name field
|
||||
if (jform_vvvvwccvxf_required)
|
||||
if (jform_vvvvwcbvxf_required)
|
||||
{
|
||||
updateFieldRequired('function_name',0);
|
||||
jQuery('#jform_function_name').prop('required','required');
|
||||
jQuery('#jform_function_name').attr('aria-required',true);
|
||||
jQuery('#jform_function_name').addClass('required');
|
||||
jform_vvvvwccvxf_required = false;
|
||||
jform_vvvvwcbvxf_required = false;
|
||||
}
|
||||
jQuery('.note_jcb_placeholder').closest('.control-group').show();
|
||||
jQuery('#jform_system_name').closest('.control-group').show();
|
||||
@ -55,102 +55,102 @@ function vvvvwcc(target_vvvvwcc)
|
||||
{
|
||||
jQuery('#jform_function_name').closest('.control-group').hide();
|
||||
// remove required attribute from function_name field
|
||||
if (!jform_vvvvwccvxf_required)
|
||||
if (!jform_vvvvwcbvxf_required)
|
||||
{
|
||||
updateFieldRequired('function_name',1);
|
||||
jQuery('#jform_function_name').removeAttr('required');
|
||||
jQuery('#jform_function_name').removeAttr('aria-required');
|
||||
jQuery('#jform_function_name').removeClass('required');
|
||||
jform_vvvvwccvxf_required = true;
|
||||
jform_vvvvwcbvxf_required = true;
|
||||
}
|
||||
jQuery('.note_jcb_placeholder').closest('.control-group').hide();
|
||||
jQuery('#jform_system_name').closest('.control-group').hide();
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcd function
|
||||
function vvvvwcd(target_vvvvwcd)
|
||||
// the vvvvwcc function
|
||||
function vvvvwcc(target_vvvvwcc)
|
||||
{
|
||||
// set the function logic
|
||||
if (target_vvvvwcd == 1)
|
||||
if (target_vvvvwcc == 1)
|
||||
{
|
||||
jQuery('#jform_component').closest('.control-group').show();
|
||||
// add required attribute to component field
|
||||
if (jform_vvvvwcdvxg_required)
|
||||
if (jform_vvvvwccvxg_required)
|
||||
{
|
||||
updateFieldRequired('component',0);
|
||||
jQuery('#jform_component').prop('required','required');
|
||||
jQuery('#jform_component').attr('aria-required',true);
|
||||
jQuery('#jform_component').addClass('required');
|
||||
jform_vvvvwcdvxg_required = false;
|
||||
jform_vvvvwccvxg_required = false;
|
||||
}
|
||||
jQuery('#jform_path').closest('.control-group').show();
|
||||
// add required attribute to path field
|
||||
if (jform_vvvvwcdvxh_required)
|
||||
if (jform_vvvvwccvxh_required)
|
||||
{
|
||||
updateFieldRequired('path',0);
|
||||
jQuery('#jform_path').prop('required','required');
|
||||
jQuery('#jform_path').attr('aria-required',true);
|
||||
jQuery('#jform_path').addClass('required');
|
||||
jform_vvvvwcdvxh_required = false;
|
||||
jform_vvvvwccvxh_required = false;
|
||||
}
|
||||
jQuery('#jform_from_line').closest('.control-group').show();
|
||||
jQuery('#jform_hashtarget').closest('.control-group').show();
|
||||
jQuery('#jform_to_line').closest('.control-group').show();
|
||||
jQuery('#jform_type').closest('.control-group').show();
|
||||
// add required attribute to type field
|
||||
if (jform_vvvvwcdvxi_required)
|
||||
if (jform_vvvvwccvxi_required)
|
||||
{
|
||||
updateFieldRequired('type',0);
|
||||
jQuery('#jform_type').prop('required','required');
|
||||
jQuery('#jform_type').attr('aria-required',true);
|
||||
jQuery('#jform_type').addClass('required');
|
||||
jform_vvvvwcdvxi_required = false;
|
||||
jform_vvvvwccvxi_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_component').closest('.control-group').hide();
|
||||
// remove required attribute from component field
|
||||
if (!jform_vvvvwcdvxg_required)
|
||||
if (!jform_vvvvwccvxg_required)
|
||||
{
|
||||
updateFieldRequired('component',1);
|
||||
jQuery('#jform_component').removeAttr('required');
|
||||
jQuery('#jform_component').removeAttr('aria-required');
|
||||
jQuery('#jform_component').removeClass('required');
|
||||
jform_vvvvwcdvxg_required = true;
|
||||
jform_vvvvwccvxg_required = true;
|
||||
}
|
||||
jQuery('#jform_path').closest('.control-group').hide();
|
||||
// remove required attribute from path field
|
||||
if (!jform_vvvvwcdvxh_required)
|
||||
if (!jform_vvvvwccvxh_required)
|
||||
{
|
||||
updateFieldRequired('path',1);
|
||||
jQuery('#jform_path').removeAttr('required');
|
||||
jQuery('#jform_path').removeAttr('aria-required');
|
||||
jQuery('#jform_path').removeClass('required');
|
||||
jform_vvvvwcdvxh_required = true;
|
||||
jform_vvvvwccvxh_required = true;
|
||||
}
|
||||
jQuery('#jform_from_line').closest('.control-group').hide();
|
||||
jQuery('#jform_hashtarget').closest('.control-group').hide();
|
||||
jQuery('#jform_to_line').closest('.control-group').hide();
|
||||
jQuery('#jform_type').closest('.control-group').hide();
|
||||
// remove required attribute from type field
|
||||
if (!jform_vvvvwcdvxi_required)
|
||||
if (!jform_vvvvwccvxi_required)
|
||||
{
|
||||
updateFieldRequired('type',1);
|
||||
jQuery('#jform_type').removeAttr('required');
|
||||
jQuery('#jform_type').removeAttr('aria-required');
|
||||
jQuery('#jform_type').removeClass('required');
|
||||
jform_vvvvwcdvxi_required = true;
|
||||
jform_vvvvwccvxi_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwce function
|
||||
function vvvvwce(target_vvvvwce,type_vvvvwce)
|
||||
// the vvvvwcd function
|
||||
function vvvvwcd(target_vvvvwcd,type_vvvvwcd)
|
||||
{
|
||||
// set the function logic
|
||||
if (target_vvvvwce == 1 && type_vvvvwce == 1)
|
||||
if (target_vvvvwcd == 1 && type_vvvvwcd == 1)
|
||||
{
|
||||
jQuery('#jform_hashendtarget').closest('.control-group').show();
|
||||
jQuery('#jform_to_line').closest('.control-group').show();
|
||||
@ -162,11 +162,11 @@ function vvvvwce(target_vvvvwce,type_vvvvwce)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcf function
|
||||
function vvvvwcf(type_vvvvwcf,target_vvvvwcf)
|
||||
// the vvvvwce function
|
||||
function vvvvwce(type_vvvvwce,target_vvvvwce)
|
||||
{
|
||||
// set the function logic
|
||||
if (type_vvvvwcf == 1 && target_vvvvwcf == 1)
|
||||
if (type_vvvvwce == 1 && target_vvvvwce == 1)
|
||||
{
|
||||
jQuery('#jform_hashendtarget').closest('.control-group').show();
|
||||
jQuery('#jform_to_line').closest('.control-group').show();
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -9,62 +9,62 @@
|
||||
*/
|
||||
|
||||
// Some Global Values
|
||||
jform_vvvvwdavxo_required = false;
|
||||
jform_vvvvwdbvxp_required = false;
|
||||
jform_vvvvwdcvxq_required = false;
|
||||
jform_vvvvwddvxr_required = false;
|
||||
jform_vvvvwdgvxs_required = false;
|
||||
jform_vvvvwdgvxt_required = false;
|
||||
jform_vvvvwczvxo_required = false;
|
||||
jform_vvvvwdavxp_required = false;
|
||||
jform_vvvvwdbvxq_required = false;
|
||||
jform_vvvvwdcvxr_required = false;
|
||||
jform_vvvvwdfvxs_required = false;
|
||||
jform_vvvvwdfvxt_required = false;
|
||||
|
||||
// Initial Script
|
||||
document.addEventListener('DOMContentLoaded', function()
|
||||
{
|
||||
var datalenght_vvvvwda = jQuery("#jform_datalenght").val();
|
||||
vvvvwda(datalenght_vvvvwda);
|
||||
var datalenght_vvvvwcz = jQuery("#jform_datalenght").val();
|
||||
vvvvwcz(datalenght_vvvvwcz);
|
||||
|
||||
var datadefault_vvvvwdb = jQuery("#jform_datadefault").val();
|
||||
vvvvwdb(datadefault_vvvvwdb);
|
||||
var datadefault_vvvvwda = jQuery("#jform_datadefault").val();
|
||||
vvvvwda(datadefault_vvvvwda);
|
||||
|
||||
var datatype_vvvvwdb = jQuery("#jform_datatype").val();
|
||||
vvvvwdb(datatype_vvvvwdb);
|
||||
|
||||
var datatype_vvvvwdc = jQuery("#jform_datatype").val();
|
||||
vvvvwdc(datatype_vvvvwdc);
|
||||
|
||||
var store_vvvvwdd = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwdd = jQuery("#jform_datatype").val();
|
||||
vvvvwdd(datatype_vvvvwdd);
|
||||
vvvvwdd(store_vvvvwdd,datatype_vvvvwdd);
|
||||
|
||||
var store_vvvvwde = jQuery("#jform_store").val();
|
||||
var datatype_vvvvwde = jQuery("#jform_datatype").val();
|
||||
vvvvwde(store_vvvvwde,datatype_vvvvwde);
|
||||
var store_vvvvwdf = jQuery("#jform_store").val();
|
||||
vvvvwdf(store_vvvvwdf);
|
||||
|
||||
var store_vvvvwdg = jQuery("#jform_store").val();
|
||||
vvvvwdg(store_vvvvwdg);
|
||||
var add_css_view_vvvvwdg = jQuery("#jform_add_css_view input[type='radio']:checked").val();
|
||||
vvvvwdg(add_css_view_vvvvwdg);
|
||||
|
||||
var add_css_view_vvvvwdh = jQuery("#jform_add_css_view input[type='radio']:checked").val();
|
||||
vvvvwdh(add_css_view_vvvvwdh);
|
||||
var add_css_views_vvvvwdh = jQuery("#jform_add_css_views input[type='radio']:checked").val();
|
||||
vvvvwdh(add_css_views_vvvvwdh);
|
||||
|
||||
var add_css_views_vvvvwdi = jQuery("#jform_add_css_views input[type='radio']:checked").val();
|
||||
vvvvwdi(add_css_views_vvvvwdi);
|
||||
var add_javascript_view_footer_vvvvwdi = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val();
|
||||
vvvvwdi(add_javascript_view_footer_vvvvwdi);
|
||||
|
||||
var add_javascript_view_footer_vvvvwdj = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val();
|
||||
vvvvwdj(add_javascript_view_footer_vvvvwdj);
|
||||
|
||||
var add_javascript_views_footer_vvvvwdk = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val();
|
||||
vvvvwdk(add_javascript_views_footer_vvvvwdk);
|
||||
var add_javascript_views_footer_vvvvwdj = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val();
|
||||
vvvvwdj(add_javascript_views_footer_vvvvwdj);
|
||||
});
|
||||
|
||||
// the vvvvwda function
|
||||
function vvvvwda(datalenght_vvvvwda)
|
||||
// the vvvvwcz function
|
||||
function vvvvwcz(datalenght_vvvvwcz)
|
||||
{
|
||||
if (isSet(datalenght_vvvvwda) && datalenght_vvvvwda.constructor !== Array)
|
||||
if (isSet(datalenght_vvvvwcz) && datalenght_vvvvwcz.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwda = datalenght_vvvvwda;
|
||||
var datalenght_vvvvwda = [];
|
||||
datalenght_vvvvwda.push(temp_vvvvwda);
|
||||
var temp_vvvvwcz = datalenght_vvvvwcz;
|
||||
var datalenght_vvvvwcz = [];
|
||||
datalenght_vvvvwcz.push(temp_vvvvwcz);
|
||||
}
|
||||
else if (!isSet(datalenght_vvvvwda))
|
||||
else if (!isSet(datalenght_vvvvwcz))
|
||||
{
|
||||
var datalenght_vvvvwda = [];
|
||||
var datalenght_vvvvwcz = [];
|
||||
}
|
||||
var datalenght = datalenght_vvvvwda.some(datalenght_vvvvwda_SomeFunc);
|
||||
var datalenght = datalenght_vvvvwcz.some(datalenght_vvvvwcz_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
@ -72,55 +72,55 @@ function vvvvwda(datalenght_vvvvwda)
|
||||
{
|
||||
jQuery('#jform_datalenght_other').closest('.control-group').show();
|
||||
// add required attribute to datalenght_other field
|
||||
if (jform_vvvvwdavxo_required)
|
||||
if (jform_vvvvwczvxo_required)
|
||||
{
|
||||
updateFieldRequired('datalenght_other',0);
|
||||
jQuery('#jform_datalenght_other').prop('required','required');
|
||||
jQuery('#jform_datalenght_other').attr('aria-required',true);
|
||||
jQuery('#jform_datalenght_other').addClass('required');
|
||||
jform_vvvvwdavxo_required = false;
|
||||
jform_vvvvwczvxo_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_datalenght_other').closest('.control-group').hide();
|
||||
// remove required attribute from datalenght_other field
|
||||
if (!jform_vvvvwdavxo_required)
|
||||
if (!jform_vvvvwczvxo_required)
|
||||
{
|
||||
updateFieldRequired('datalenght_other',1);
|
||||
jQuery('#jform_datalenght_other').removeAttr('required');
|
||||
jQuery('#jform_datalenght_other').removeAttr('aria-required');
|
||||
jQuery('#jform_datalenght_other').removeClass('required');
|
||||
jform_vvvvwdavxo_required = true;
|
||||
jform_vvvvwczvxo_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwda Some function
|
||||
function datalenght_vvvvwda_SomeFunc(datalenght_vvvvwda)
|
||||
// the vvvvwcz Some function
|
||||
function datalenght_vvvvwcz_SomeFunc(datalenght_vvvvwcz)
|
||||
{
|
||||
// set the function logic
|
||||
if (datalenght_vvvvwda == 'Other')
|
||||
if (datalenght_vvvvwcz == 'Other')
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwdb function
|
||||
function vvvvwdb(datadefault_vvvvwdb)
|
||||
// the vvvvwda function
|
||||
function vvvvwda(datadefault_vvvvwda)
|
||||
{
|
||||
if (isSet(datadefault_vvvvwdb) && datadefault_vvvvwdb.constructor !== Array)
|
||||
if (isSet(datadefault_vvvvwda) && datadefault_vvvvwda.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwdb = datadefault_vvvvwdb;
|
||||
var datadefault_vvvvwdb = [];
|
||||
datadefault_vvvvwdb.push(temp_vvvvwdb);
|
||||
var temp_vvvvwda = datadefault_vvvvwda;
|
||||
var datadefault_vvvvwda = [];
|
||||
datadefault_vvvvwda.push(temp_vvvvwda);
|
||||
}
|
||||
else if (!isSet(datadefault_vvvvwdb))
|
||||
else if (!isSet(datadefault_vvvvwda))
|
||||
{
|
||||
var datadefault_vvvvwdb = [];
|
||||
var datadefault_vvvvwda = [];
|
||||
}
|
||||
var datadefault = datadefault_vvvvwdb.some(datadefault_vvvvwdb_SomeFunc);
|
||||
var datadefault = datadefault_vvvvwda.some(datadefault_vvvvwda_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
@ -128,35 +128,93 @@ function vvvvwdb(datadefault_vvvvwdb)
|
||||
{
|
||||
jQuery('#jform_datadefault_other').closest('.control-group').show();
|
||||
// add required attribute to datadefault_other field
|
||||
if (jform_vvvvwdbvxp_required)
|
||||
if (jform_vvvvwdavxp_required)
|
||||
{
|
||||
updateFieldRequired('datadefault_other',0);
|
||||
jQuery('#jform_datadefault_other').prop('required','required');
|
||||
jQuery('#jform_datadefault_other').attr('aria-required',true);
|
||||
jQuery('#jform_datadefault_other').addClass('required');
|
||||
jform_vvvvwdbvxp_required = false;
|
||||
jform_vvvvwdavxp_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_datadefault_other').closest('.control-group').hide();
|
||||
// remove required attribute from datadefault_other field
|
||||
if (!jform_vvvvwdbvxp_required)
|
||||
if (!jform_vvvvwdavxp_required)
|
||||
{
|
||||
updateFieldRequired('datadefault_other',1);
|
||||
jQuery('#jform_datadefault_other').removeAttr('required');
|
||||
jQuery('#jform_datadefault_other').removeAttr('aria-required');
|
||||
jQuery('#jform_datadefault_other').removeClass('required');
|
||||
jform_vvvvwdbvxp_required = true;
|
||||
jform_vvvvwdavxp_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwda Some function
|
||||
function datadefault_vvvvwda_SomeFunc(datadefault_vvvvwda)
|
||||
{
|
||||
// set the function logic
|
||||
if (datadefault_vvvvwda == 'Other')
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwdb function
|
||||
function vvvvwdb(datatype_vvvvwdb)
|
||||
{
|
||||
if (isSet(datatype_vvvvwdb) && datatype_vvvvwdb.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwdb = datatype_vvvvwdb;
|
||||
var datatype_vvvvwdb = [];
|
||||
datatype_vvvvwdb.push(temp_vvvvwdb);
|
||||
}
|
||||
else if (!isSet(datatype_vvvvwdb))
|
||||
{
|
||||
var datatype_vvvvwdb = [];
|
||||
}
|
||||
var datatype = datatype_vvvvwdb.some(datatype_vvvvwdb_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (datatype)
|
||||
{
|
||||
jQuery('#jform_datadefault').closest('.control-group').show();
|
||||
jQuery('#jform_indexes').closest('.control-group').show();
|
||||
// add required attribute to indexes field
|
||||
if (jform_vvvvwdbvxq_required)
|
||||
{
|
||||
updateFieldRequired('indexes',0);
|
||||
jQuery('#jform_indexes').prop('required','required');
|
||||
jQuery('#jform_indexes').attr('aria-required',true);
|
||||
jQuery('#jform_indexes').addClass('required');
|
||||
jform_vvvvwdbvxq_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_datadefault').closest('.control-group').hide();
|
||||
jQuery('#jform_indexes').closest('.control-group').hide();
|
||||
// remove required attribute from indexes field
|
||||
if (!jform_vvvvwdbvxq_required)
|
||||
{
|
||||
updateFieldRequired('indexes',1);
|
||||
jQuery('#jform_indexes').removeAttr('required');
|
||||
jQuery('#jform_indexes').removeAttr('aria-required');
|
||||
jQuery('#jform_indexes').removeClass('required');
|
||||
jform_vvvvwdbvxq_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwdb Some function
|
||||
function datadefault_vvvvwdb_SomeFunc(datadefault_vvvvwdb)
|
||||
function datatype_vvvvwdb_SomeFunc(datatype_vvvvwdb)
|
||||
{
|
||||
// set the function logic
|
||||
if (datadefault_vvvvwdb == 'Other')
|
||||
if (datatype_vvvvwdb == 'CHAR' || datatype_vvvvwdb == 'VARCHAR' || datatype_vvvvwdb == 'DATETIME' || datatype_vvvvwdb == 'DATE' || datatype_vvvvwdb == 'TIME' || datatype_vvvvwdb == 'INT' || datatype_vvvvwdb == 'TINYINT' || datatype_vvvvwdb == 'BIGINT' || datatype_vvvvwdb == 'FLOAT' || datatype_vvvvwdb == 'DECIMAL' || datatype_vvvvwdb == 'DOUBLE')
|
||||
{
|
||||
return true;
|
||||
}
|
||||
@ -182,30 +240,28 @@ function vvvvwdc(datatype_vvvvwdc)
|
||||
// set this function logic
|
||||
if (datatype)
|
||||
{
|
||||
jQuery('#jform_datadefault').closest('.control-group').show();
|
||||
jQuery('#jform_indexes').closest('.control-group').show();
|
||||
// add required attribute to indexes field
|
||||
if (jform_vvvvwdcvxq_required)
|
||||
jQuery('#jform_datalenght').closest('.control-group').show();
|
||||
// add required attribute to datalenght field
|
||||
if (jform_vvvvwdcvxr_required)
|
||||
{
|
||||
updateFieldRequired('indexes',0);
|
||||
jQuery('#jform_indexes').prop('required','required');
|
||||
jQuery('#jform_indexes').attr('aria-required',true);
|
||||
jQuery('#jform_indexes').addClass('required');
|
||||
jform_vvvvwdcvxq_required = false;
|
||||
updateFieldRequired('datalenght',0);
|
||||
jQuery('#jform_datalenght').prop('required','required');
|
||||
jQuery('#jform_datalenght').attr('aria-required',true);
|
||||
jQuery('#jform_datalenght').addClass('required');
|
||||
jform_vvvvwdcvxr_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_datadefault').closest('.control-group').hide();
|
||||
jQuery('#jform_indexes').closest('.control-group').hide();
|
||||
// remove required attribute from indexes field
|
||||
if (!jform_vvvvwdcvxq_required)
|
||||
jQuery('#jform_datalenght').closest('.control-group').hide();
|
||||
// remove required attribute from datalenght field
|
||||
if (!jform_vvvvwdcvxr_required)
|
||||
{
|
||||
updateFieldRequired('indexes',1);
|
||||
jQuery('#jform_indexes').removeAttr('required');
|
||||
jQuery('#jform_indexes').removeAttr('aria-required');
|
||||
jQuery('#jform_indexes').removeClass('required');
|
||||
jform_vvvvwdcvxq_required = true;
|
||||
updateFieldRequired('datalenght',1);
|
||||
jQuery('#jform_datalenght').removeAttr('required');
|
||||
jQuery('#jform_datalenght').removeAttr('aria-required');
|
||||
jQuery('#jform_datalenght').removeClass('required');
|
||||
jform_vvvvwdcvxr_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -214,7 +270,7 @@ function vvvvwdc(datatype_vvvvwdc)
|
||||
function datatype_vvvvwdc_SomeFunc(datatype_vvvvwdc)
|
||||
{
|
||||
// set the function logic
|
||||
if (datatype_vvvvwdc == 'CHAR' || datatype_vvvvwdc == 'VARCHAR' || datatype_vvvvwdc == 'DATETIME' || datatype_vvvvwdc == 'DATE' || datatype_vvvvwdc == 'TIME' || datatype_vvvvwdc == 'INT' || datatype_vvvvwdc == 'TINYINT' || datatype_vvvvwdc == 'BIGINT' || datatype_vvvvwdc == 'FLOAT' || datatype_vvvvwdc == 'DECIMAL' || datatype_vvvvwdc == 'DOUBLE')
|
||||
if (datatype_vvvvwdc == 'CHAR' || datatype_vvvvwdc == 'VARCHAR' || datatype_vvvvwdc == 'INT' || datatype_vvvvwdc == 'TINYINT' || datatype_vvvvwdc == 'BIGINT' || datatype_vvvvwdc == 'FLOAT' || datatype_vvvvwdc == 'DECIMAL' || datatype_vvvvwdc == 'DOUBLE')
|
||||
{
|
||||
return true;
|
||||
}
|
||||
@ -222,8 +278,20 @@ function datatype_vvvvwdc_SomeFunc(datatype_vvvvwdc)
|
||||
}
|
||||
|
||||
// the vvvvwdd function
|
||||
function vvvvwdd(datatype_vvvvwdd)
|
||||
function vvvvwdd(store_vvvvwdd,datatype_vvvvwdd)
|
||||
{
|
||||
if (isSet(store_vvvvwdd) && store_vvvvwdd.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwdd = store_vvvvwdd;
|
||||
var store_vvvvwdd = [];
|
||||
store_vvvvwdd.push(temp_vvvvwdd);
|
||||
}
|
||||
else if (!isSet(store_vvvvwdd))
|
||||
{
|
||||
var store_vvvvwdd = [];
|
||||
}
|
||||
var store = store_vvvvwdd.some(store_vvvvwdd_SomeFunc);
|
||||
|
||||
if (isSet(datatype_vvvvwdd) && datatype_vvvvwdd.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwdd = datatype_vvvvwdd;
|
||||
@ -237,74 +305,6 @@ function vvvvwdd(datatype_vvvvwdd)
|
||||
var datatype = datatype_vvvvwdd.some(datatype_vvvvwdd_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (datatype)
|
||||
{
|
||||
jQuery('#jform_datalenght').closest('.control-group').show();
|
||||
// add required attribute to datalenght field
|
||||
if (jform_vvvvwddvxr_required)
|
||||
{
|
||||
updateFieldRequired('datalenght',0);
|
||||
jQuery('#jform_datalenght').prop('required','required');
|
||||
jQuery('#jform_datalenght').attr('aria-required',true);
|
||||
jQuery('#jform_datalenght').addClass('required');
|
||||
jform_vvvvwddvxr_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_datalenght').closest('.control-group').hide();
|
||||
// remove required attribute from datalenght field
|
||||
if (!jform_vvvvwddvxr_required)
|
||||
{
|
||||
updateFieldRequired('datalenght',1);
|
||||
jQuery('#jform_datalenght').removeAttr('required');
|
||||
jQuery('#jform_datalenght').removeAttr('aria-required');
|
||||
jQuery('#jform_datalenght').removeClass('required');
|
||||
jform_vvvvwddvxr_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwdd Some function
|
||||
function datatype_vvvvwdd_SomeFunc(datatype_vvvvwdd)
|
||||
{
|
||||
// set the function logic
|
||||
if (datatype_vvvvwdd == 'CHAR' || datatype_vvvvwdd == 'VARCHAR' || datatype_vvvvwdd == 'INT' || datatype_vvvvwdd == 'TINYINT' || datatype_vvvvwdd == 'BIGINT' || datatype_vvvvwdd == 'FLOAT' || datatype_vvvvwdd == 'DECIMAL' || datatype_vvvvwdd == 'DOUBLE')
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwde function
|
||||
function vvvvwde(store_vvvvwde,datatype_vvvvwde)
|
||||
{
|
||||
if (isSet(store_vvvvwde) && store_vvvvwde.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwde = store_vvvvwde;
|
||||
var store_vvvvwde = [];
|
||||
store_vvvvwde.push(temp_vvvvwde);
|
||||
}
|
||||
else if (!isSet(store_vvvvwde))
|
||||
{
|
||||
var store_vvvvwde = [];
|
||||
}
|
||||
var store = store_vvvvwde.some(store_vvvvwde_SomeFunc);
|
||||
|
||||
if (isSet(datatype_vvvvwde) && datatype_vvvvwde.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwde = datatype_vvvvwde;
|
||||
var datatype_vvvvwde = [];
|
||||
datatype_vvvvwde.push(temp_vvvvwde);
|
||||
}
|
||||
else if (!isSet(datatype_vvvvwde))
|
||||
{
|
||||
var datatype_vvvvwde = [];
|
||||
}
|
||||
var datatype = datatype_vvvvwde.some(datatype_vvvvwde_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (store && datatype)
|
||||
{
|
||||
@ -316,42 +316,42 @@ function vvvvwde(store_vvvvwde,datatype_vvvvwde)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwde Some function
|
||||
function store_vvvvwde_SomeFunc(store_vvvvwde)
|
||||
// the vvvvwdd Some function
|
||||
function store_vvvvwdd_SomeFunc(store_vvvvwdd)
|
||||
{
|
||||
// set the function logic
|
||||
if (store_vvvvwde == 4)
|
||||
if (store_vvvvwdd == 4)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwde Some function
|
||||
function datatype_vvvvwde_SomeFunc(datatype_vvvvwde)
|
||||
// the vvvvwdd Some function
|
||||
function datatype_vvvvwdd_SomeFunc(datatype_vvvvwdd)
|
||||
{
|
||||
// set the function logic
|
||||
if (datatype_vvvvwde == 'CHAR' || datatype_vvvvwde == 'VARCHAR' || datatype_vvvvwde == 'TEXT' || datatype_vvvvwde == 'MEDIUMTEXT' || datatype_vvvvwde == 'LONGTEXT' || datatype_vvvvwde == 'BLOB' || datatype_vvvvwde == 'TINYBLOB' || datatype_vvvvwde == 'MEDIUMBLOB' || datatype_vvvvwde == 'LONGBLOB')
|
||||
if (datatype_vvvvwdd == 'CHAR' || datatype_vvvvwdd == 'VARCHAR' || datatype_vvvvwdd == 'TEXT' || datatype_vvvvwdd == 'MEDIUMTEXT' || datatype_vvvvwdd == 'LONGTEXT' || datatype_vvvvwdd == 'BLOB' || datatype_vvvvwdd == 'TINYBLOB' || datatype_vvvvwdd == 'MEDIUMBLOB' || datatype_vvvvwdd == 'LONGBLOB')
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwdg function
|
||||
function vvvvwdg(store_vvvvwdg)
|
||||
// the vvvvwdf function
|
||||
function vvvvwdf(store_vvvvwdf)
|
||||
{
|
||||
if (isSet(store_vvvvwdg) && store_vvvvwdg.constructor !== Array)
|
||||
if (isSet(store_vvvvwdf) && store_vvvvwdf.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwdg = store_vvvvwdg;
|
||||
var store_vvvvwdg = [];
|
||||
store_vvvvwdg.push(temp_vvvvwdg);
|
||||
var temp_vvvvwdf = store_vvvvwdf;
|
||||
var store_vvvvwdf = [];
|
||||
store_vvvvwdf.push(temp_vvvvwdf);
|
||||
}
|
||||
else if (!isSet(store_vvvvwdg))
|
||||
else if (!isSet(store_vvvvwdf))
|
||||
{
|
||||
var store_vvvvwdg = [];
|
||||
var store_vvvvwdf = [];
|
||||
}
|
||||
var store = store_vvvvwdg.some(store_vvvvwdg_SomeFunc);
|
||||
var store = store_vvvvwdf.some(store_vvvvwdf_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
@ -362,23 +362,23 @@ function vvvvwdg(store_vvvvwdg)
|
||||
jQuery('.note_expert_field_save_mode').closest('.control-group').show();
|
||||
jQuery('#jform_on_get_model_field').closest('.control-group').show();
|
||||
// add required attribute to on_get_model_field field
|
||||
if (jform_vvvvwdgvxs_required)
|
||||
if (jform_vvvvwdfvxs_required)
|
||||
{
|
||||
updateFieldRequired('on_get_model_field',0);
|
||||
jQuery('#jform_on_get_model_field').prop('required','required');
|
||||
jQuery('#jform_on_get_model_field').attr('aria-required',true);
|
||||
jQuery('#jform_on_get_model_field').addClass('required');
|
||||
jform_vvvvwdgvxs_required = false;
|
||||
jform_vvvvwdfvxs_required = false;
|
||||
}
|
||||
jQuery('#jform_on_save_model_field').closest('.control-group').show();
|
||||
// add required attribute to on_save_model_field field
|
||||
if (jform_vvvvwdgvxt_required)
|
||||
if (jform_vvvvwdfvxt_required)
|
||||
{
|
||||
updateFieldRequired('on_save_model_field',0);
|
||||
jQuery('#jform_on_save_model_field').prop('required','required');
|
||||
jQuery('#jform_on_save_model_field').attr('aria-required',true);
|
||||
jQuery('#jform_on_save_model_field').addClass('required');
|
||||
jform_vvvvwdgvxt_required = false;
|
||||
jform_vvvvwdfvxt_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
@ -388,43 +388,43 @@ function vvvvwdg(store_vvvvwdg)
|
||||
jQuery('.note_expert_field_save_mode').closest('.control-group').hide();
|
||||
jQuery('#jform_on_get_model_field').closest('.control-group').hide();
|
||||
// remove required attribute from on_get_model_field field
|
||||
if (!jform_vvvvwdgvxs_required)
|
||||
if (!jform_vvvvwdfvxs_required)
|
||||
{
|
||||
updateFieldRequired('on_get_model_field',1);
|
||||
jQuery('#jform_on_get_model_field').removeAttr('required');
|
||||
jQuery('#jform_on_get_model_field').removeAttr('aria-required');
|
||||
jQuery('#jform_on_get_model_field').removeClass('required');
|
||||
jform_vvvvwdgvxs_required = true;
|
||||
jform_vvvvwdfvxs_required = true;
|
||||
}
|
||||
jQuery('#jform_on_save_model_field').closest('.control-group').hide();
|
||||
// remove required attribute from on_save_model_field field
|
||||
if (!jform_vvvvwdgvxt_required)
|
||||
if (!jform_vvvvwdfvxt_required)
|
||||
{
|
||||
updateFieldRequired('on_save_model_field',1);
|
||||
jQuery('#jform_on_save_model_field').removeAttr('required');
|
||||
jQuery('#jform_on_save_model_field').removeAttr('aria-required');
|
||||
jQuery('#jform_on_save_model_field').removeClass('required');
|
||||
jform_vvvvwdgvxt_required = true;
|
||||
jform_vvvvwdfvxt_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwdg Some function
|
||||
function store_vvvvwdg_SomeFunc(store_vvvvwdg)
|
||||
// the vvvvwdf Some function
|
||||
function store_vvvvwdf_SomeFunc(store_vvvvwdf)
|
||||
{
|
||||
// set the function logic
|
||||
if (store_vvvvwdg == 6)
|
||||
if (store_vvvvwdf == 6)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwdh function
|
||||
function vvvvwdh(add_css_view_vvvvwdh)
|
||||
// the vvvvwdg function
|
||||
function vvvvwdg(add_css_view_vvvvwdg)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_css_view_vvvvwdh == 1)
|
||||
if (add_css_view_vvvvwdg == 1)
|
||||
{
|
||||
jQuery('#jform_css_view-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -434,11 +434,11 @@ function vvvvwdh(add_css_view_vvvvwdh)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwdi function
|
||||
function vvvvwdi(add_css_views_vvvvwdi)
|
||||
// the vvvvwdh function
|
||||
function vvvvwdh(add_css_views_vvvvwdh)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_css_views_vvvvwdi == 1)
|
||||
if (add_css_views_vvvvwdh == 1)
|
||||
{
|
||||
jQuery('#jform_css_views-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -448,11 +448,11 @@ function vvvvwdi(add_css_views_vvvvwdi)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwdj function
|
||||
function vvvvwdj(add_javascript_view_footer_vvvvwdj)
|
||||
// the vvvvwdi function
|
||||
function vvvvwdi(add_javascript_view_footer_vvvvwdi)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_javascript_view_footer_vvvvwdj == 1)
|
||||
if (add_javascript_view_footer_vvvvwdi == 1)
|
||||
{
|
||||
jQuery('#jform_javascript_view_footer-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -462,11 +462,11 @@ function vvvvwdj(add_javascript_view_footer_vvvvwdj)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwdk function
|
||||
function vvvvwdk(add_javascript_views_footer_vvvvwdk)
|
||||
// the vvvvwdj function
|
||||
function vvvvwdj(add_javascript_views_footer_vvvvwdj)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_javascript_views_footer_vvvvwdk == 1)
|
||||
if (add_javascript_views_footer_vvvvwdj == 1)
|
||||
{
|
||||
jQuery('#jform_javascript_views_footer-lbl').closest('.control-group').show();
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -9,20 +9,23 @@
|
||||
*/
|
||||
|
||||
// Some Global Values
|
||||
jform_vvvvwejvyn_required = false;
|
||||
jform_vvvvwekvyo_required = false;
|
||||
jform_vvvvwelvyp_required = false;
|
||||
jform_vvvvwemvyq_required = false;
|
||||
jform_vvvvweovyr_required = false;
|
||||
jform_vvvvweivyn_required = false;
|
||||
jform_vvvvwejvyo_required = false;
|
||||
jform_vvvvwekvyp_required = false;
|
||||
jform_vvvvwelvyq_required = false;
|
||||
jform_vvvvwenvyr_required = false;
|
||||
|
||||
// Initial Script
|
||||
document.addEventListener('DOMContentLoaded', function()
|
||||
{
|
||||
var location_vvvvwei = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvwei(location_vvvvwei);
|
||||
|
||||
var location_vvvvwej = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvwej(location_vvvvwej);
|
||||
|
||||
var location_vvvvwek = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvwek(location_vvvvwek);
|
||||
var type_vvvvwek = jQuery("#jform_type").val();
|
||||
vvvvwek(type_vvvvwek);
|
||||
|
||||
var type_vvvvwel = jQuery("#jform_type").val();
|
||||
vvvvwel(type_vvvvwel);
|
||||
@ -30,77 +33,130 @@ document.addEventListener('DOMContentLoaded', function()
|
||||
var type_vvvvwem = jQuery("#jform_type").val();
|
||||
vvvvwem(type_vvvvwem);
|
||||
|
||||
var type_vvvvwen = jQuery("#jform_type").val();
|
||||
vvvvwen(type_vvvvwen);
|
||||
|
||||
var target_vvvvweo = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvweo(target_vvvvweo);
|
||||
var target_vvvvwen = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwen(target_vvvvwen);
|
||||
});
|
||||
|
||||
// the vvvvwej function
|
||||
function vvvvwej(location_vvvvwej)
|
||||
// the vvvvwei function
|
||||
function vvvvwei(location_vvvvwei)
|
||||
{
|
||||
// set the function logic
|
||||
if (location_vvvvwej == 1)
|
||||
if (location_vvvvwei == 1)
|
||||
{
|
||||
jQuery('#jform_admin_view').closest('.control-group').show();
|
||||
// add required attribute to admin_view field
|
||||
if (jform_vvvvwejvyn_required)
|
||||
if (jform_vvvvweivyn_required)
|
||||
{
|
||||
updateFieldRequired('admin_view',0);
|
||||
jQuery('#jform_admin_view').prop('required','required');
|
||||
jQuery('#jform_admin_view').attr('aria-required',true);
|
||||
jQuery('#jform_admin_view').addClass('required');
|
||||
jform_vvvvwejvyn_required = false;
|
||||
jform_vvvvweivyn_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_admin_view').closest('.control-group').hide();
|
||||
// remove required attribute from admin_view field
|
||||
if (!jform_vvvvwejvyn_required)
|
||||
if (!jform_vvvvweivyn_required)
|
||||
{
|
||||
updateFieldRequired('admin_view',1);
|
||||
jQuery('#jform_admin_view').removeAttr('required');
|
||||
jQuery('#jform_admin_view').removeAttr('aria-required');
|
||||
jQuery('#jform_admin_view').removeClass('required');
|
||||
jform_vvvvwejvyn_required = true;
|
||||
jform_vvvvweivyn_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwek function
|
||||
function vvvvwek(location_vvvvwek)
|
||||
// the vvvvwej function
|
||||
function vvvvwej(location_vvvvwej)
|
||||
{
|
||||
// set the function logic
|
||||
if (location_vvvvwek == 2)
|
||||
if (location_vvvvwej == 2)
|
||||
{
|
||||
jQuery('#jform_site_view').closest('.control-group').show();
|
||||
// add required attribute to site_view field
|
||||
if (jform_vvvvwekvyo_required)
|
||||
if (jform_vvvvwejvyo_required)
|
||||
{
|
||||
updateFieldRequired('site_view',0);
|
||||
jQuery('#jform_site_view').prop('required','required');
|
||||
jQuery('#jform_site_view').attr('aria-required',true);
|
||||
jQuery('#jform_site_view').addClass('required');
|
||||
jform_vvvvwekvyo_required = false;
|
||||
jform_vvvvwejvyo_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_site_view').closest('.control-group').hide();
|
||||
// remove required attribute from site_view field
|
||||
if (!jform_vvvvwekvyo_required)
|
||||
if (!jform_vvvvwejvyo_required)
|
||||
{
|
||||
updateFieldRequired('site_view',1);
|
||||
jQuery('#jform_site_view').removeAttr('required');
|
||||
jQuery('#jform_site_view').removeAttr('aria-required');
|
||||
jQuery('#jform_site_view').removeClass('required');
|
||||
jform_vvvvwekvyo_required = true;
|
||||
jform_vvvvwejvyo_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwek function
|
||||
function vvvvwek(type_vvvvwek)
|
||||
{
|
||||
if (isSet(type_vvvvwek) && type_vvvvwek.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwek = type_vvvvwek;
|
||||
var type_vvvvwek = [];
|
||||
type_vvvvwek.push(temp_vvvvwek);
|
||||
}
|
||||
else if (!isSet(type_vvvvwek))
|
||||
{
|
||||
var type_vvvvwek = [];
|
||||
}
|
||||
var type = type_vvvvwek.some(type_vvvvwek_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (type)
|
||||
{
|
||||
jQuery('#jform_url').closest('.control-group').show();
|
||||
// add required attribute to url field
|
||||
if (jform_vvvvwekvyp_required)
|
||||
{
|
||||
updateFieldRequired('url',0);
|
||||
jQuery('#jform_url').prop('required','required');
|
||||
jQuery('#jform_url').attr('aria-required',true);
|
||||
jQuery('#jform_url').addClass('required');
|
||||
jform_vvvvwekvyp_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_url').closest('.control-group').hide();
|
||||
// remove required attribute from url field
|
||||
if (!jform_vvvvwekvyp_required)
|
||||
{
|
||||
updateFieldRequired('url',1);
|
||||
jQuery('#jform_url').removeAttr('required');
|
||||
jQuery('#jform_url').removeAttr('aria-required');
|
||||
jQuery('#jform_url').removeClass('required');
|
||||
jform_vvvvwekvyp_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwek Some function
|
||||
function type_vvvvwek_SomeFunc(type_vvvvwek)
|
||||
{
|
||||
// set the function logic
|
||||
if (type_vvvvwek == 3)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwel function
|
||||
function vvvvwel(type_vvvvwel)
|
||||
{
|
||||
@ -120,28 +176,28 @@ function vvvvwel(type_vvvvwel)
|
||||
// set this function logic
|
||||
if (type)
|
||||
{
|
||||
jQuery('#jform_url').closest('.control-group').show();
|
||||
// add required attribute to url field
|
||||
if (jform_vvvvwelvyp_required)
|
||||
jQuery('#jform_article').closest('.control-group').show();
|
||||
// add required attribute to article field
|
||||
if (jform_vvvvwelvyq_required)
|
||||
{
|
||||
updateFieldRequired('url',0);
|
||||
jQuery('#jform_url').prop('required','required');
|
||||
jQuery('#jform_url').attr('aria-required',true);
|
||||
jQuery('#jform_url').addClass('required');
|
||||
jform_vvvvwelvyp_required = false;
|
||||
updateFieldRequired('article',0);
|
||||
jQuery('#jform_article').prop('required','required');
|
||||
jQuery('#jform_article').attr('aria-required',true);
|
||||
jQuery('#jform_article').addClass('required');
|
||||
jform_vvvvwelvyq_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_url').closest('.control-group').hide();
|
||||
// remove required attribute from url field
|
||||
if (!jform_vvvvwelvyp_required)
|
||||
jQuery('#jform_article').closest('.control-group').hide();
|
||||
// remove required attribute from article field
|
||||
if (!jform_vvvvwelvyq_required)
|
||||
{
|
||||
updateFieldRequired('url',1);
|
||||
jQuery('#jform_url').removeAttr('required');
|
||||
jQuery('#jform_url').removeAttr('aria-required');
|
||||
jQuery('#jform_url').removeClass('required');
|
||||
jform_vvvvwelvyp_required = true;
|
||||
updateFieldRequired('article',1);
|
||||
jQuery('#jform_article').removeAttr('required');
|
||||
jQuery('#jform_article').removeAttr('aria-required');
|
||||
jQuery('#jform_article').removeClass('required');
|
||||
jform_vvvvwelvyq_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -150,7 +206,7 @@ function vvvvwel(type_vvvvwel)
|
||||
function type_vvvvwel_SomeFunc(type_vvvvwel)
|
||||
{
|
||||
// set the function logic
|
||||
if (type_vvvvwel == 3)
|
||||
if (type_vvvvwel == 1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
@ -173,62 +229,6 @@ function vvvvwem(type_vvvvwem)
|
||||
var type = type_vvvvwem.some(type_vvvvwem_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (type)
|
||||
{
|
||||
jQuery('#jform_article').closest('.control-group').show();
|
||||
// add required attribute to article field
|
||||
if (jform_vvvvwemvyq_required)
|
||||
{
|
||||
updateFieldRequired('article',0);
|
||||
jQuery('#jform_article').prop('required','required');
|
||||
jQuery('#jform_article').attr('aria-required',true);
|
||||
jQuery('#jform_article').addClass('required');
|
||||
jform_vvvvwemvyq_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_article').closest('.control-group').hide();
|
||||
// remove required attribute from article field
|
||||
if (!jform_vvvvwemvyq_required)
|
||||
{
|
||||
updateFieldRequired('article',1);
|
||||
jQuery('#jform_article').removeAttr('required');
|
||||
jQuery('#jform_article').removeAttr('aria-required');
|
||||
jQuery('#jform_article').removeClass('required');
|
||||
jform_vvvvwemvyq_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwem Some function
|
||||
function type_vvvvwem_SomeFunc(type_vvvvwem)
|
||||
{
|
||||
// set the function logic
|
||||
if (type_vvvvwem == 1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwen function
|
||||
function vvvvwen(type_vvvvwen)
|
||||
{
|
||||
if (isSet(type_vvvvwen) && type_vvvvwen.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwen = type_vvvvwen;
|
||||
var type_vvvvwen = [];
|
||||
type_vvvvwen.push(temp_vvvvwen);
|
||||
}
|
||||
else if (!isSet(type_vvvvwen))
|
||||
{
|
||||
var type_vvvvwen = [];
|
||||
}
|
||||
var type = type_vvvvwen.some(type_vvvvwen_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (type)
|
||||
{
|
||||
@ -240,45 +240,45 @@ function vvvvwen(type_vvvvwen)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwen Some function
|
||||
function type_vvvvwen_SomeFunc(type_vvvvwen)
|
||||
// the vvvvwem Some function
|
||||
function type_vvvvwem_SomeFunc(type_vvvvwem)
|
||||
{
|
||||
// set the function logic
|
||||
if (type_vvvvwen == 2)
|
||||
if (type_vvvvwem == 2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvweo function
|
||||
function vvvvweo(target_vvvvweo)
|
||||
// the vvvvwen function
|
||||
function vvvvwen(target_vvvvwen)
|
||||
{
|
||||
// set the function logic
|
||||
if (target_vvvvweo == 1)
|
||||
if (target_vvvvwen == 1)
|
||||
{
|
||||
jQuery('#jform_groups').closest('.control-group').show();
|
||||
// add required attribute to groups field
|
||||
if (jform_vvvvweovyr_required)
|
||||
if (jform_vvvvwenvyr_required)
|
||||
{
|
||||
updateFieldRequired('groups',0);
|
||||
jQuery('#jform_groups').prop('required','required');
|
||||
jQuery('#jform_groups').attr('aria-required',true);
|
||||
jQuery('#jform_groups').addClass('required');
|
||||
jform_vvvvweovyr_required = false;
|
||||
jform_vvvvwenvyr_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_groups').closest('.control-group').hide();
|
||||
// remove required attribute from groups field
|
||||
if (!jform_vvvvweovyr_required)
|
||||
if (!jform_vvvvwenvyr_required)
|
||||
{
|
||||
updateFieldRequired('groups',1);
|
||||
jQuery('#jform_groups').removeAttr('required');
|
||||
jQuery('#jform_groups').removeAttr('aria-required');
|
||||
jQuery('#jform_groups').removeClass('required');
|
||||
jform_vvvvweovyr_required = true;
|
||||
jform_vvvvwenvyr_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -9,9 +9,9 @@
|
||||
*/
|
||||
|
||||
// Some Global Values
|
||||
jform_vvvvvypvwg_required = false;
|
||||
jform_vvvvvyqvwh_required = false;
|
||||
jform_vvvvvyrvwi_required = false;
|
||||
jform_vvvvvyovwg_required = false;
|
||||
jform_vvvvvypvwh_required = false;
|
||||
jform_vvvvvyqvwi_required = false;
|
||||
|
||||
// Initial Script
|
||||
document.addEventListener('DOMContentLoaded', function()
|
||||
@ -27,64 +27,60 @@ document.addEventListener('DOMContentLoaded', function()
|
||||
var class_extends_vvvvvxz = jQuery("#jform_class_extends").val();
|
||||
vvvvvxz(class_extends_vvvvvxz);
|
||||
|
||||
var add_head_vvvvvya = jQuery("#jform_add_head input[type='radio']:checked").val();
|
||||
var class_extends_vvvvvya = jQuery("#jform_class_extends").val();
|
||||
vvvvvya(add_head_vvvvvya,class_extends_vvvvvya);
|
||||
var add_php_script_construct_vvvvvyb = jQuery("#jform_add_php_script_construct input[type='radio']:checked").val();
|
||||
vvvvvyb(add_php_script_construct_vvvvvyb);
|
||||
|
||||
var add_php_script_construct_vvvvvyc = jQuery("#jform_add_php_script_construct input[type='radio']:checked").val();
|
||||
vvvvvyc(add_php_script_construct_vvvvvyc);
|
||||
var add_php_preflight_install_vvvvvyc = jQuery("#jform_add_php_preflight_install input[type='radio']:checked").val();
|
||||
vvvvvyc(add_php_preflight_install_vvvvvyc);
|
||||
|
||||
var add_php_preflight_install_vvvvvyd = jQuery("#jform_add_php_preflight_install input[type='radio']:checked").val();
|
||||
vvvvvyd(add_php_preflight_install_vvvvvyd);
|
||||
var add_php_preflight_update_vvvvvyd = jQuery("#jform_add_php_preflight_update input[type='radio']:checked").val();
|
||||
vvvvvyd(add_php_preflight_update_vvvvvyd);
|
||||
|
||||
var add_php_preflight_update_vvvvvye = jQuery("#jform_add_php_preflight_update input[type='radio']:checked").val();
|
||||
vvvvvye(add_php_preflight_update_vvvvvye);
|
||||
var add_php_preflight_uninstall_vvvvvye = jQuery("#jform_add_php_preflight_uninstall input[type='radio']:checked").val();
|
||||
vvvvvye(add_php_preflight_uninstall_vvvvvye);
|
||||
|
||||
var add_php_preflight_uninstall_vvvvvyf = jQuery("#jform_add_php_preflight_uninstall input[type='radio']:checked").val();
|
||||
vvvvvyf(add_php_preflight_uninstall_vvvvvyf);
|
||||
var add_php_postflight_install_vvvvvyf = jQuery("#jform_add_php_postflight_install input[type='radio']:checked").val();
|
||||
vvvvvyf(add_php_postflight_install_vvvvvyf);
|
||||
|
||||
var add_php_postflight_install_vvvvvyg = jQuery("#jform_add_php_postflight_install input[type='radio']:checked").val();
|
||||
vvvvvyg(add_php_postflight_install_vvvvvyg);
|
||||
var add_php_postflight_update_vvvvvyg = jQuery("#jform_add_php_postflight_update input[type='radio']:checked").val();
|
||||
vvvvvyg(add_php_postflight_update_vvvvvyg);
|
||||
|
||||
var add_php_postflight_update_vvvvvyh = jQuery("#jform_add_php_postflight_update input[type='radio']:checked").val();
|
||||
vvvvvyh(add_php_postflight_update_vvvvvyh);
|
||||
var add_php_method_uninstall_vvvvvyh = jQuery("#jform_add_php_method_uninstall input[type='radio']:checked").val();
|
||||
vvvvvyh(add_php_method_uninstall_vvvvvyh);
|
||||
|
||||
var add_php_method_uninstall_vvvvvyi = jQuery("#jform_add_php_method_uninstall input[type='radio']:checked").val();
|
||||
vvvvvyi(add_php_method_uninstall_vvvvvyi);
|
||||
var update_server_target_vvvvvyi = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvyi = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyi(update_server_target_vvvvvyi,add_update_server_vvvvvyi);
|
||||
|
||||
var update_server_target_vvvvvyj = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvyj = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyj(update_server_target_vvvvvyj,add_update_server_vvvvvyj);
|
||||
var update_server_target_vvvvvyj = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
vvvvvyj(add_update_server_vvvvvyj,update_server_target_vvvvvyj);
|
||||
|
||||
var add_update_server_vvvvvyk = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
var update_server_target_vvvvvyk = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
vvvvvyk(add_update_server_vvvvvyk,update_server_target_vvvvvyk);
|
||||
var add_update_server_vvvvvyk = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyk(update_server_target_vvvvvyk,add_update_server_vvvvvyk);
|
||||
|
||||
var update_server_target_vvvvvyl = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvyl = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyl(update_server_target_vvvvvyl,add_update_server_vvvvvyl);
|
||||
var update_server_target_vvvvvym = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvym = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvym(update_server_target_vvvvvym,add_update_server_vvvvvym);
|
||||
|
||||
var update_server_target_vvvvvyn = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvyn = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyn(update_server_target_vvvvvyn,add_update_server_vvvvvyn);
|
||||
var add_update_server_vvvvvyo = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyo(add_update_server_vvvvvyo);
|
||||
|
||||
var add_update_server_vvvvvyp = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyp(add_update_server_vvvvvyp);
|
||||
var add_sql_vvvvvyp = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvyp(add_sql_vvvvvyp);
|
||||
|
||||
var add_sql_vvvvvyq = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvyq(add_sql_vvvvvyq);
|
||||
var add_sql_uninstall_vvvvvyq = jQuery("#jform_add_sql_uninstall input[type='radio']:checked").val();
|
||||
vvvvvyq(add_sql_uninstall_vvvvvyq);
|
||||
|
||||
var add_sql_uninstall_vvvvvyr = jQuery("#jform_add_sql_uninstall input[type='radio']:checked").val();
|
||||
vvvvvyr(add_sql_uninstall_vvvvvyr);
|
||||
var add_update_server_vvvvvyr = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvyr(add_update_server_vvvvvyr);
|
||||
|
||||
var add_update_server_vvvvvys = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvys(add_update_server_vvvvvys);
|
||||
var add_sales_server_vvvvvys = jQuery("#jform_add_sales_server input[type='radio']:checked").val();
|
||||
vvvvvys(add_sales_server_vvvvvys);
|
||||
|
||||
var add_sales_server_vvvvvyt = jQuery("#jform_add_sales_server input[type='radio']:checked").val();
|
||||
vvvvvyt(add_sales_server_vvvvvyt);
|
||||
|
||||
var addreadme_vvvvvyu = jQuery("#jform_addreadme input[type='radio']:checked").val();
|
||||
vvvvvyu(addreadme_vvvvvyu);
|
||||
var addreadme_vvvvvyt = jQuery("#jform_addreadme input[type='radio']:checked").val();
|
||||
vvvvvyt(addreadme_vvvvvyt);
|
||||
});
|
||||
|
||||
// the vvvvvxx function
|
||||
@ -118,13 +114,11 @@ function vvvvvxx(class_extends_vvvvvxx,joomla_plugin_group_vvvvvxx)
|
||||
// set this function logic
|
||||
if (class_extends && joomla_plugin_group)
|
||||
{
|
||||
jQuery('#jform_main_class_code-lbl').closest('.control-group').show();
|
||||
jQuery('#jform_method_selection-lbl').closest('.control-group').show();
|
||||
jQuery('#jform_property_selection-lbl').closest('.control-group').show();
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_main_class_code-lbl').closest('.control-group').hide();
|
||||
jQuery('#jform_method_selection-lbl').closest('.control-group').hide();
|
||||
jQuery('#jform_property_selection-lbl').closest('.control-group').hide();
|
||||
}
|
||||
@ -183,13 +177,11 @@ function vvvvvxy(joomla_plugin_group_vvvvvxy,class_extends_vvvvvxy)
|
||||
// set this function logic
|
||||
if (joomla_plugin_group && class_extends)
|
||||
{
|
||||
jQuery('#jform_main_class_code-lbl').closest('.control-group').show();
|
||||
jQuery('#jform_method_selection-lbl').closest('.control-group').show();
|
||||
jQuery('#jform_property_selection-lbl').closest('.control-group').show();
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_main_class_code-lbl').closest('.control-group').hide();
|
||||
jQuery('#jform_method_selection-lbl').closest('.control-group').hide();
|
||||
jQuery('#jform_property_selection-lbl').closest('.control-group').hide();
|
||||
}
|
||||
@ -255,72 +247,11 @@ function class_extends_vvvvvxz_SomeFunc(class_extends_vvvvvxz)
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvvya function
|
||||
function vvvvvya(add_head_vvvvvya,class_extends_vvvvvya)
|
||||
{
|
||||
if (isSet(add_head_vvvvvya) && add_head_vvvvvya.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvvya = add_head_vvvvvya;
|
||||
var add_head_vvvvvya = [];
|
||||
add_head_vvvvvya.push(temp_vvvvvya);
|
||||
}
|
||||
else if (!isSet(add_head_vvvvvya))
|
||||
{
|
||||
var add_head_vvvvvya = [];
|
||||
}
|
||||
var add_head = add_head_vvvvvya.some(add_head_vvvvvya_SomeFunc);
|
||||
|
||||
if (isSet(class_extends_vvvvvya) && class_extends_vvvvvya.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvvya = class_extends_vvvvvya;
|
||||
var class_extends_vvvvvya = [];
|
||||
class_extends_vvvvvya.push(temp_vvvvvya);
|
||||
}
|
||||
else if (!isSet(class_extends_vvvvvya))
|
||||
{
|
||||
var class_extends_vvvvvya = [];
|
||||
}
|
||||
var class_extends = class_extends_vvvvvya.some(class_extends_vvvvvya_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (add_head && class_extends)
|
||||
{
|
||||
jQuery('#jform_head-lbl').closest('.control-group').show();
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_head-lbl').closest('.control-group').hide();
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvya Some function
|
||||
function add_head_vvvvvya_SomeFunc(add_head_vvvvvya)
|
||||
// the vvvvvyb function
|
||||
function vvvvvyb(add_php_script_construct_vvvvvyb)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_head_vvvvvya == 1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvvya Some function
|
||||
function class_extends_vvvvvya_SomeFunc(class_extends_vvvvvya)
|
||||
{
|
||||
// set the function logic
|
||||
if (isSet(class_extends_vvvvvya))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvvyc function
|
||||
function vvvvvyc(add_php_script_construct_vvvvvyc)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_script_construct_vvvvvyc == 1)
|
||||
if (add_php_script_construct_vvvvvyb == 1)
|
||||
{
|
||||
jQuery('#jform_php_script_construct-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -330,11 +261,11 @@ function vvvvvyc(add_php_script_construct_vvvvvyc)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvyd function
|
||||
function vvvvvyd(add_php_preflight_install_vvvvvyd)
|
||||
// the vvvvvyc function
|
||||
function vvvvvyc(add_php_preflight_install_vvvvvyc)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_preflight_install_vvvvvyd == 1)
|
||||
if (add_php_preflight_install_vvvvvyc == 1)
|
||||
{
|
||||
jQuery('#jform_php_preflight_install-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -344,11 +275,11 @@ function vvvvvyd(add_php_preflight_install_vvvvvyd)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvye function
|
||||
function vvvvvye(add_php_preflight_update_vvvvvye)
|
||||
// the vvvvvyd function
|
||||
function vvvvvyd(add_php_preflight_update_vvvvvyd)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_preflight_update_vvvvvye == 1)
|
||||
if (add_php_preflight_update_vvvvvyd == 1)
|
||||
{
|
||||
jQuery('#jform_php_preflight_update-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -358,11 +289,11 @@ function vvvvvye(add_php_preflight_update_vvvvvye)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvyf function
|
||||
function vvvvvyf(add_php_preflight_uninstall_vvvvvyf)
|
||||
// the vvvvvye function
|
||||
function vvvvvye(add_php_preflight_uninstall_vvvvvye)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_preflight_uninstall_vvvvvyf == 1)
|
||||
if (add_php_preflight_uninstall_vvvvvye == 1)
|
||||
{
|
||||
jQuery('#jform_php_preflight_uninstall-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -372,11 +303,11 @@ function vvvvvyf(add_php_preflight_uninstall_vvvvvyf)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvyg function
|
||||
function vvvvvyg(add_php_postflight_install_vvvvvyg)
|
||||
// the vvvvvyf function
|
||||
function vvvvvyf(add_php_postflight_install_vvvvvyf)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_postflight_install_vvvvvyg == 1)
|
||||
if (add_php_postflight_install_vvvvvyf == 1)
|
||||
{
|
||||
jQuery('#jform_php_postflight_install-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -386,11 +317,11 @@ function vvvvvyg(add_php_postflight_install_vvvvvyg)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvyh function
|
||||
function vvvvvyh(add_php_postflight_update_vvvvvyh)
|
||||
// the vvvvvyg function
|
||||
function vvvvvyg(add_php_postflight_update_vvvvvyg)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_postflight_update_vvvvvyh == 1)
|
||||
if (add_php_postflight_update_vvvvvyg == 1)
|
||||
{
|
||||
jQuery('#jform_php_postflight_update-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -400,11 +331,11 @@ function vvvvvyh(add_php_postflight_update_vvvvvyh)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvyi function
|
||||
function vvvvvyi(add_php_method_uninstall_vvvvvyi)
|
||||
// the vvvvvyh function
|
||||
function vvvvvyh(add_php_method_uninstall_vvvvvyh)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_method_uninstall_vvvvvyi == 1)
|
||||
if (add_php_method_uninstall_vvvvvyh == 1)
|
||||
{
|
||||
jQuery('#jform_php_method_uninstall-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -414,11 +345,27 @@ function vvvvvyi(add_php_method_uninstall_vvvvvyi)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvyj function
|
||||
function vvvvvyj(update_server_target_vvvvvyj,add_update_server_vvvvvyj)
|
||||
// the vvvvvyi function
|
||||
function vvvvvyi(update_server_target_vvvvvyi,add_update_server_vvvvvyi)
|
||||
{
|
||||
// set the function logic
|
||||
if (update_server_target_vvvvvyj == 1 && add_update_server_vvvvvyj == 1)
|
||||
if (update_server_target_vvvvvyi == 1 && add_update_server_vvvvvyi == 1)
|
||||
{
|
||||
jQuery('#jform_update_server').closest('.control-group').show();
|
||||
jQuery('.note_update_server_note_ftp').closest('.control-group').show();
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_update_server').closest('.control-group').hide();
|
||||
jQuery('.note_update_server_note_ftp').closest('.control-group').hide();
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvyj function
|
||||
function vvvvvyj(add_update_server_vvvvvyj,update_server_target_vvvvvyj)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_update_server_vvvvvyj == 1 && update_server_target_vvvvvyj == 1)
|
||||
{
|
||||
jQuery('#jform_update_server').closest('.control-group').show();
|
||||
jQuery('.note_update_server_note_ftp').closest('.control-group').show();
|
||||
@ -431,26 +378,10 @@ function vvvvvyj(update_server_target_vvvvvyj,add_update_server_vvvvvyj)
|
||||
}
|
||||
|
||||
// the vvvvvyk function
|
||||
function vvvvvyk(add_update_server_vvvvvyk,update_server_target_vvvvvyk)
|
||||
function vvvvvyk(update_server_target_vvvvvyk,add_update_server_vvvvvyk)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_update_server_vvvvvyk == 1 && update_server_target_vvvvvyk == 1)
|
||||
{
|
||||
jQuery('#jform_update_server').closest('.control-group').show();
|
||||
jQuery('.note_update_server_note_ftp').closest('.control-group').show();
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_update_server').closest('.control-group').hide();
|
||||
jQuery('.note_update_server_note_ftp').closest('.control-group').hide();
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvyl function
|
||||
function vvvvvyl(update_server_target_vvvvvyl,add_update_server_vvvvvyl)
|
||||
{
|
||||
// set the function logic
|
||||
if (update_server_target_vvvvvyl == 2 && add_update_server_vvvvvyl == 1)
|
||||
if (update_server_target_vvvvvyk == 2 && add_update_server_vvvvvyk == 1)
|
||||
{
|
||||
jQuery('.note_update_server_note_zip').closest('.control-group').show();
|
||||
}
|
||||
@ -460,11 +391,11 @@ function vvvvvyl(update_server_target_vvvvvyl,add_update_server_vvvvvyl)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvyn function
|
||||
function vvvvvyn(update_server_target_vvvvvyn,add_update_server_vvvvvyn)
|
||||
// the vvvvvym function
|
||||
function vvvvvym(update_server_target_vvvvvym,add_update_server_vvvvvym)
|
||||
{
|
||||
// set the function logic
|
||||
if (update_server_target_vvvvvyn == 3 && add_update_server_vvvvvyn == 1)
|
||||
if (update_server_target_vvvvvym == 3 && add_update_server_vvvvvym == 1)
|
||||
{
|
||||
jQuery('.note_update_server_note_other').closest('.control-group').show();
|
||||
}
|
||||
@ -474,107 +405,107 @@ function vvvvvyn(update_server_target_vvvvvyn,add_update_server_vvvvvyn)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvyp function
|
||||
function vvvvvyp(add_update_server_vvvvvyp)
|
||||
// the vvvvvyo function
|
||||
function vvvvvyo(add_update_server_vvvvvyo)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_update_server_vvvvvyp == 1)
|
||||
if (add_update_server_vvvvvyo == 1)
|
||||
{
|
||||
jQuery('#jform_update_server_target').closest('.control-group').show();
|
||||
// add required attribute to update_server_target field
|
||||
if (jform_vvvvvypvwg_required)
|
||||
if (jform_vvvvvyovwg_required)
|
||||
{
|
||||
updateFieldRequired('update_server_target',0);
|
||||
jQuery('#jform_update_server_target').prop('required','required');
|
||||
jQuery('#jform_update_server_target').attr('aria-required',true);
|
||||
jQuery('#jform_update_server_target').addClass('required');
|
||||
jform_vvvvvypvwg_required = false;
|
||||
jform_vvvvvyovwg_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_update_server_target').closest('.control-group').hide();
|
||||
// remove required attribute from update_server_target field
|
||||
if (!jform_vvvvvypvwg_required)
|
||||
if (!jform_vvvvvyovwg_required)
|
||||
{
|
||||
updateFieldRequired('update_server_target',1);
|
||||
jQuery('#jform_update_server_target').removeAttr('required');
|
||||
jQuery('#jform_update_server_target').removeAttr('aria-required');
|
||||
jQuery('#jform_update_server_target').removeClass('required');
|
||||
jform_vvvvvypvwg_required = true;
|
||||
jform_vvvvvyovwg_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvyq function
|
||||
function vvvvvyq(add_sql_vvvvvyq)
|
||||
// the vvvvvyp function
|
||||
function vvvvvyp(add_sql_vvvvvyp)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_sql_vvvvvyq == 1)
|
||||
if (add_sql_vvvvvyp == 1)
|
||||
{
|
||||
jQuery('#jform_sql').closest('.control-group').show();
|
||||
// add required attribute to sql field
|
||||
if (jform_vvvvvyqvwh_required)
|
||||
if (jform_vvvvvypvwh_required)
|
||||
{
|
||||
updateFieldRequired('sql',0);
|
||||
jQuery('#jform_sql').prop('required','required');
|
||||
jQuery('#jform_sql').attr('aria-required',true);
|
||||
jQuery('#jform_sql').addClass('required');
|
||||
jform_vvvvvyqvwh_required = false;
|
||||
jform_vvvvvypvwh_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_sql').closest('.control-group').hide();
|
||||
// remove required attribute from sql field
|
||||
if (!jform_vvvvvyqvwh_required)
|
||||
if (!jform_vvvvvypvwh_required)
|
||||
{
|
||||
updateFieldRequired('sql',1);
|
||||
jQuery('#jform_sql').removeAttr('required');
|
||||
jQuery('#jform_sql').removeAttr('aria-required');
|
||||
jQuery('#jform_sql').removeClass('required');
|
||||
jform_vvvvvyqvwh_required = true;
|
||||
jform_vvvvvypvwh_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvyr function
|
||||
function vvvvvyr(add_sql_uninstall_vvvvvyr)
|
||||
// the vvvvvyq function
|
||||
function vvvvvyq(add_sql_uninstall_vvvvvyq)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_sql_uninstall_vvvvvyr == 1)
|
||||
if (add_sql_uninstall_vvvvvyq == 1)
|
||||
{
|
||||
jQuery('#jform_sql_uninstall').closest('.control-group').show();
|
||||
// add required attribute to sql_uninstall field
|
||||
if (jform_vvvvvyrvwi_required)
|
||||
if (jform_vvvvvyqvwi_required)
|
||||
{
|
||||
updateFieldRequired('sql_uninstall',0);
|
||||
jQuery('#jform_sql_uninstall').prop('required','required');
|
||||
jQuery('#jform_sql_uninstall').attr('aria-required',true);
|
||||
jQuery('#jform_sql_uninstall').addClass('required');
|
||||
jform_vvvvvyrvwi_required = false;
|
||||
jform_vvvvvyqvwi_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_sql_uninstall').closest('.control-group').hide();
|
||||
// remove required attribute from sql_uninstall field
|
||||
if (!jform_vvvvvyrvwi_required)
|
||||
if (!jform_vvvvvyqvwi_required)
|
||||
{
|
||||
updateFieldRequired('sql_uninstall',1);
|
||||
jQuery('#jform_sql_uninstall').removeAttr('required');
|
||||
jQuery('#jform_sql_uninstall').removeAttr('aria-required');
|
||||
jQuery('#jform_sql_uninstall').removeClass('required');
|
||||
jform_vvvvvyrvwi_required = true;
|
||||
jform_vvvvvyqvwi_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvys function
|
||||
function vvvvvys(add_update_server_vvvvvys)
|
||||
// the vvvvvyr function
|
||||
function vvvvvyr(add_update_server_vvvvvyr)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_update_server_vvvvvys == 1)
|
||||
if (add_update_server_vvvvvyr == 1)
|
||||
{
|
||||
jQuery('#jform_update_server_url').closest('.control-group').show();
|
||||
}
|
||||
@ -584,11 +515,11 @@ function vvvvvys(add_update_server_vvvvvys)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvyt function
|
||||
function vvvvvyt(add_sales_server_vvvvvyt)
|
||||
// the vvvvvys function
|
||||
function vvvvvys(add_sales_server_vvvvvys)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_sales_server_vvvvvyt == 1)
|
||||
if (add_sales_server_vvvvvys == 1)
|
||||
{
|
||||
jQuery('#jform_sales_server').closest('.control-group').show();
|
||||
}
|
||||
@ -598,11 +529,11 @@ function vvvvvyt(add_sales_server_vvvvvyt)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvvyu function
|
||||
function vvvvvyu(addreadme_vvvvvyu)
|
||||
// the vvvvvyt function
|
||||
function vvvvvyt(addreadme_vvvvvyt)
|
||||
{
|
||||
// set the function logic
|
||||
if (addreadme_vvvvvyu == 1)
|
||||
if (addreadme_vvvvvyt == 1)
|
||||
{
|
||||
jQuery('#jform_readme-lbl').closest('.control-group').show();
|
||||
}
|
||||
|
@ -11,15 +11,15 @@
|
||||
// Initial Script
|
||||
document.addEventListener('DOMContentLoaded', function()
|
||||
{
|
||||
var add_php_view_vvvvwba = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvwba(add_php_view_vvvvwba);
|
||||
var add_php_view_vvvvwaz = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvwaz(add_php_view_vvvvwaz);
|
||||
});
|
||||
|
||||
// the vvvvwba function
|
||||
function vvvvwba(add_php_view_vvvvwba)
|
||||
// the vvvvwaz function
|
||||
function vvvvwaz(add_php_view_vvvvwaz)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_view_vvvvwba == 1)
|
||||
if (add_php_view_vvvvwaz == 1)
|
||||
{
|
||||
jQuery('#jform_php_view-lbl').closest('.control-group').show();
|
||||
}
|
||||
|
@ -9,90 +9,90 @@
|
||||
*/
|
||||
|
||||
// Some Global Values
|
||||
jform_vvvvwckvxl_required = false;
|
||||
jform_vvvvwcyvxm_required = false;
|
||||
jform_vvvvwcyvxn_required = false;
|
||||
jform_vvvvwcjvxl_required = false;
|
||||
jform_vvvvwcxvxm_required = false;
|
||||
jform_vvvvwcxvxn_required = false;
|
||||
|
||||
// Initial Script
|
||||
document.addEventListener('DOMContentLoaded', function()
|
||||
{
|
||||
var how_vvvvwci = jQuery("#jform_how").val();
|
||||
var target_vvvvwci = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwci(how_vvvvwci,target_vvvvwci);
|
||||
var how_vvvvwch = jQuery("#jform_how").val();
|
||||
var target_vvvvwch = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwch(how_vvvvwch,target_vvvvwch);
|
||||
|
||||
var how_vvvvwck = jQuery("#jform_how").val();
|
||||
var target_vvvvwck = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwck(how_vvvvwck,target_vvvvwck);
|
||||
var how_vvvvwcj = jQuery("#jform_how").val();
|
||||
var target_vvvvwcj = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcj(how_vvvvwcj,target_vvvvwcj);
|
||||
|
||||
var how_vvvvwcm = jQuery("#jform_how").val();
|
||||
var target_vvvvwcm = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcm(how_vvvvwcm,target_vvvvwcm);
|
||||
var how_vvvvwcl = jQuery("#jform_how").val();
|
||||
var target_vvvvwcl = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcl(how_vvvvwcl,target_vvvvwcl);
|
||||
|
||||
var how_vvvvwco = jQuery("#jform_how").val();
|
||||
var target_vvvvwco = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwco(how_vvvvwco,target_vvvvwco);
|
||||
var how_vvvvwcn = jQuery("#jform_how").val();
|
||||
var target_vvvvwcn = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcn(how_vvvvwcn,target_vvvvwcn);
|
||||
|
||||
var how_vvvvwcp = jQuery("#jform_how").val();
|
||||
var target_vvvvwcp = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcp(how_vvvvwcp,target_vvvvwcp);
|
||||
|
||||
var how_vvvvwcq = jQuery("#jform_how").val();
|
||||
var target_vvvvwcq = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcq(how_vvvvwcq,target_vvvvwcq);
|
||||
var how_vvvvwcq = jQuery("#jform_how").val();
|
||||
vvvvwcq(target_vvvvwcq,how_vvvvwcq);
|
||||
|
||||
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcr = jQuery("#jform_how").val();
|
||||
vvvvwcr(target_vvvvwcr,how_vvvvwcr);
|
||||
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcr(how_vvvvwcr,target_vvvvwcr);
|
||||
|
||||
var how_vvvvwcs = jQuery("#jform_how").val();
|
||||
var target_vvvvwcs = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcs(how_vvvvwcs,target_vvvvwcs);
|
||||
var how_vvvvwcs = jQuery("#jform_how").val();
|
||||
vvvvwcs(target_vvvvwcs,how_vvvvwcs);
|
||||
|
||||
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwct = jQuery("#jform_how").val();
|
||||
vvvvwct(target_vvvvwct,how_vvvvwct);
|
||||
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwct(how_vvvvwct,target_vvvvwct);
|
||||
|
||||
var how_vvvvwcu = jQuery("#jform_how").val();
|
||||
var target_vvvvwcu = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcu(how_vvvvwcu,target_vvvvwcu);
|
||||
var how_vvvvwcu = jQuery("#jform_how").val();
|
||||
vvvvwcu(target_vvvvwcu,how_vvvvwcu);
|
||||
|
||||
var target_vvvvwcv = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcv = jQuery("#jform_how").val();
|
||||
vvvvwcv(target_vvvvwcv,how_vvvvwcv);
|
||||
var type_vvvvwcv = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
vvvvwcv(target_vvvvwcv,type_vvvvwcv);
|
||||
|
||||
var target_vvvvwcw = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var type_vvvvwcw = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
vvvvwcw(target_vvvvwcw,type_vvvvwcw);
|
||||
var target_vvvvwcx = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcx(target_vvvvwcx);
|
||||
|
||||
var target_vvvvwcy = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcy(target_vvvvwcy);
|
||||
|
||||
var target_vvvvwcz = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcz(target_vvvvwcz);
|
||||
});
|
||||
|
||||
// the vvvvwci function
|
||||
function vvvvwci(how_vvvvwci,target_vvvvwci)
|
||||
// the vvvvwch function
|
||||
function vvvvwch(how_vvvvwch,target_vvvvwch)
|
||||
{
|
||||
if (isSet(how_vvvvwci) && how_vvvvwci.constructor !== Array)
|
||||
if (isSet(how_vvvvwch) && how_vvvvwch.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwci = how_vvvvwci;
|
||||
var how_vvvvwci = [];
|
||||
how_vvvvwci.push(temp_vvvvwci);
|
||||
var temp_vvvvwch = how_vvvvwch;
|
||||
var how_vvvvwch = [];
|
||||
how_vvvvwch.push(temp_vvvvwch);
|
||||
}
|
||||
else if (!isSet(how_vvvvwci))
|
||||
else if (!isSet(how_vvvvwch))
|
||||
{
|
||||
var how_vvvvwci = [];
|
||||
var how_vvvvwch = [];
|
||||
}
|
||||
var how = how_vvvvwci.some(how_vvvvwci_SomeFunc);
|
||||
var how = how_vvvvwch.some(how_vvvvwch_SomeFunc);
|
||||
|
||||
if (isSet(target_vvvvwci) && target_vvvvwci.constructor !== Array)
|
||||
if (isSet(target_vvvvwch) && target_vvvvwch.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwci = target_vvvvwci;
|
||||
var target_vvvvwci = [];
|
||||
target_vvvvwci.push(temp_vvvvwci);
|
||||
var temp_vvvvwch = target_vvvvwch;
|
||||
var target_vvvvwch = [];
|
||||
target_vvvvwch.push(temp_vvvvwch);
|
||||
}
|
||||
else if (!isSet(target_vvvvwci))
|
||||
else if (!isSet(target_vvvvwch))
|
||||
{
|
||||
var target_vvvvwci = [];
|
||||
var target_vvvvwch = [];
|
||||
}
|
||||
var target = target_vvvvwci.some(target_vvvvwci_SomeFunc);
|
||||
var target = target_vvvvwch.some(target_vvvvwch_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
@ -106,54 +106,54 @@ function vvvvwci(how_vvvvwci,target_vvvvwci)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwci Some function
|
||||
function how_vvvvwci_SomeFunc(how_vvvvwci)
|
||||
// the vvvvwch Some function
|
||||
function how_vvvvwch_SomeFunc(how_vvvvwch)
|
||||
{
|
||||
// set the function logic
|
||||
if (how_vvvvwci == 2)
|
||||
if (how_vvvvwch == 2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwci Some function
|
||||
function target_vvvvwci_SomeFunc(target_vvvvwci)
|
||||
// the vvvvwch Some function
|
||||
function target_vvvvwch_SomeFunc(target_vvvvwch)
|
||||
{
|
||||
// set the function logic
|
||||
if (target_vvvvwci == 1)
|
||||
if (target_vvvvwch == 1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwck function
|
||||
function vvvvwck(how_vvvvwck,target_vvvvwck)
|
||||
// the vvvvwcj function
|
||||
function vvvvwcj(how_vvvvwcj,target_vvvvwcj)
|
||||
{
|
||||
if (isSet(how_vvvvwck) && how_vvvvwck.constructor !== Array)
|
||||
if (isSet(how_vvvvwcj) && how_vvvvwcj.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwck = how_vvvvwck;
|
||||
var how_vvvvwck = [];
|
||||
how_vvvvwck.push(temp_vvvvwck);
|
||||
var temp_vvvvwcj = how_vvvvwcj;
|
||||
var how_vvvvwcj = [];
|
||||
how_vvvvwcj.push(temp_vvvvwcj);
|
||||
}
|
||||
else if (!isSet(how_vvvvwck))
|
||||
else if (!isSet(how_vvvvwcj))
|
||||
{
|
||||
var how_vvvvwck = [];
|
||||
var how_vvvvwcj = [];
|
||||
}
|
||||
var how = how_vvvvwck.some(how_vvvvwck_SomeFunc);
|
||||
var how = how_vvvvwcj.some(how_vvvvwcj_SomeFunc);
|
||||
|
||||
if (isSet(target_vvvvwck) && target_vvvvwck.constructor !== Array)
|
||||
if (isSet(target_vvvvwcj) && target_vvvvwcj.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwck = target_vvvvwck;
|
||||
var target_vvvvwck = [];
|
||||
target_vvvvwck.push(temp_vvvvwck);
|
||||
var temp_vvvvwcj = target_vvvvwcj;
|
||||
var target_vvvvwcj = [];
|
||||
target_vvvvwcj.push(temp_vvvvwcj);
|
||||
}
|
||||
else if (!isSet(target_vvvvwck))
|
||||
else if (!isSet(target_vvvvwcj))
|
||||
{
|
||||
var target_vvvvwck = [];
|
||||
var target_vvvvwcj = [];
|
||||
}
|
||||
var target = target_vvvvwck.some(target_vvvvwck_SomeFunc);
|
||||
var target = target_vvvvwcj.some(target_vvvvwcj_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
@ -161,78 +161,78 @@ function vvvvwck(how_vvvvwck,target_vvvvwck)
|
||||
{
|
||||
jQuery('#jform_php_setdocument').closest('.control-group').show();
|
||||
// add required attribute to php_setdocument field
|
||||
if (jform_vvvvwckvxl_required)
|
||||
if (jform_vvvvwcjvxl_required)
|
||||
{
|
||||
updateFieldRequired('php_setdocument',0);
|
||||
jQuery('#jform_php_setdocument').prop('required','required');
|
||||
jQuery('#jform_php_setdocument').attr('aria-required',true);
|
||||
jQuery('#jform_php_setdocument').addClass('required');
|
||||
jform_vvvvwckvxl_required = false;
|
||||
jform_vvvvwcjvxl_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_php_setdocument').closest('.control-group').hide();
|
||||
// remove required attribute from php_setdocument field
|
||||
if (!jform_vvvvwckvxl_required)
|
||||
if (!jform_vvvvwcjvxl_required)
|
||||
{
|
||||
updateFieldRequired('php_setdocument',1);
|
||||
jQuery('#jform_php_setdocument').removeAttr('required');
|
||||
jQuery('#jform_php_setdocument').removeAttr('aria-required');
|
||||
jQuery('#jform_php_setdocument').removeClass('required');
|
||||
jform_vvvvwckvxl_required = true;
|
||||
jform_vvvvwcjvxl_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwck Some function
|
||||
function how_vvvvwck_SomeFunc(how_vvvvwck)
|
||||
// the vvvvwcj Some function
|
||||
function how_vvvvwcj_SomeFunc(how_vvvvwcj)
|
||||
{
|
||||
// set the function logic
|
||||
if (how_vvvvwck == 3)
|
||||
if (how_vvvvwcj == 3)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwck Some function
|
||||
function target_vvvvwck_SomeFunc(target_vvvvwck)
|
||||
// the vvvvwcj Some function
|
||||
function target_vvvvwcj_SomeFunc(target_vvvvwcj)
|
||||
{
|
||||
// set the function logic
|
||||
if (target_vvvvwck == 1)
|
||||
if (target_vvvvwcj == 1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcm function
|
||||
function vvvvwcm(how_vvvvwcm,target_vvvvwcm)
|
||||
// the vvvvwcl function
|
||||
function vvvvwcl(how_vvvvwcl,target_vvvvwcl)
|
||||
{
|
||||
if (isSet(how_vvvvwcm) && how_vvvvwcm.constructor !== Array)
|
||||
if (isSet(how_vvvvwcl) && how_vvvvwcl.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcm = how_vvvvwcm;
|
||||
var how_vvvvwcm = [];
|
||||
how_vvvvwcm.push(temp_vvvvwcm);
|
||||
var temp_vvvvwcl = how_vvvvwcl;
|
||||
var how_vvvvwcl = [];
|
||||
how_vvvvwcl.push(temp_vvvvwcl);
|
||||
}
|
||||
else if (!isSet(how_vvvvwcm))
|
||||
else if (!isSet(how_vvvvwcl))
|
||||
{
|
||||
var how_vvvvwcm = [];
|
||||
var how_vvvvwcl = [];
|
||||
}
|
||||
var how = how_vvvvwcm.some(how_vvvvwcm_SomeFunc);
|
||||
var how = how_vvvvwcl.some(how_vvvvwcl_SomeFunc);
|
||||
|
||||
if (isSet(target_vvvvwcm) && target_vvvvwcm.constructor !== Array)
|
||||
if (isSet(target_vvvvwcl) && target_vvvvwcl.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcm = target_vvvvwcm;
|
||||
var target_vvvvwcm = [];
|
||||
target_vvvvwcm.push(temp_vvvvwcm);
|
||||
var temp_vvvvwcl = target_vvvvwcl;
|
||||
var target_vvvvwcl = [];
|
||||
target_vvvvwcl.push(temp_vvvvwcl);
|
||||
}
|
||||
else if (!isSet(target_vvvvwcm))
|
||||
else if (!isSet(target_vvvvwcl))
|
||||
{
|
||||
var target_vvvvwcm = [];
|
||||
var target_vvvvwcl = [];
|
||||
}
|
||||
var target = target_vvvvwcm.some(target_vvvvwcm_SomeFunc);
|
||||
var target = target_vvvvwcl.some(target_vvvvwcl_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
@ -246,54 +246,54 @@ function vvvvwcm(how_vvvvwcm,target_vvvvwcm)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcm Some function
|
||||
function how_vvvvwcm_SomeFunc(how_vvvvwcm)
|
||||
// the vvvvwcl Some function
|
||||
function how_vvvvwcl_SomeFunc(how_vvvvwcl)
|
||||
{
|
||||
// set the function logic
|
||||
if (how_vvvvwcm == 2 || how_vvvvwcm == 3)
|
||||
if (how_vvvvwcl == 2 || how_vvvvwcl == 3)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcm Some function
|
||||
function target_vvvvwcm_SomeFunc(target_vvvvwcm)
|
||||
// the vvvvwcl Some function
|
||||
function target_vvvvwcl_SomeFunc(target_vvvvwcl)
|
||||
{
|
||||
// set the function logic
|
||||
if (target_vvvvwcm == 1)
|
||||
if (target_vvvvwcl == 1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwco function
|
||||
function vvvvwco(how_vvvvwco,target_vvvvwco)
|
||||
// the vvvvwcn function
|
||||
function vvvvwcn(how_vvvvwcn,target_vvvvwcn)
|
||||
{
|
||||
if (isSet(how_vvvvwco) && how_vvvvwco.constructor !== Array)
|
||||
if (isSet(how_vvvvwcn) && how_vvvvwcn.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwco = how_vvvvwco;
|
||||
var how_vvvvwco = [];
|
||||
how_vvvvwco.push(temp_vvvvwco);
|
||||
var temp_vvvvwcn = how_vvvvwcn;
|
||||
var how_vvvvwcn = [];
|
||||
how_vvvvwcn.push(temp_vvvvwcn);
|
||||
}
|
||||
else if (!isSet(how_vvvvwco))
|
||||
else if (!isSet(how_vvvvwcn))
|
||||
{
|
||||
var how_vvvvwco = [];
|
||||
var how_vvvvwcn = [];
|
||||
}
|
||||
var how = how_vvvvwco.some(how_vvvvwco_SomeFunc);
|
||||
var how = how_vvvvwcn.some(how_vvvvwcn_SomeFunc);
|
||||
|
||||
if (isSet(target_vvvvwco) && target_vvvvwco.constructor !== Array)
|
||||
if (isSet(target_vvvvwcn) && target_vvvvwcn.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwco = target_vvvvwco;
|
||||
var target_vvvvwco = [];
|
||||
target_vvvvwco.push(temp_vvvvwco);
|
||||
var temp_vvvvwcn = target_vvvvwcn;
|
||||
var target_vvvvwcn = [];
|
||||
target_vvvvwcn.push(temp_vvvvwcn);
|
||||
}
|
||||
else if (!isSet(target_vvvvwco))
|
||||
else if (!isSet(target_vvvvwcn))
|
||||
{
|
||||
var target_vvvvwco = [];
|
||||
var target_vvvvwcn = [];
|
||||
}
|
||||
var target = target_vvvvwco.some(target_vvvvwco_SomeFunc);
|
||||
var target = target_vvvvwcn.some(target_vvvvwcn_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
@ -307,54 +307,54 @@ function vvvvwco(how_vvvvwco,target_vvvvwco)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwco Some function
|
||||
function how_vvvvwco_SomeFunc(how_vvvvwco)
|
||||
// the vvvvwcn Some function
|
||||
function how_vvvvwcn_SomeFunc(how_vvvvwcn)
|
||||
{
|
||||
// set the function logic
|
||||
if (how_vvvvwco == 1 || how_vvvvwco == 2 || how_vvvvwco == 3)
|
||||
if (how_vvvvwcn == 1 || how_vvvvwcn == 2 || how_vvvvwcn == 3)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwco Some function
|
||||
function target_vvvvwco_SomeFunc(target_vvvvwco)
|
||||
// the vvvvwcn Some function
|
||||
function target_vvvvwcn_SomeFunc(target_vvvvwcn)
|
||||
{
|
||||
// set the function logic
|
||||
if (target_vvvvwco == 1)
|
||||
if (target_vvvvwcn == 1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcq function
|
||||
function vvvvwcq(how_vvvvwcq,target_vvvvwcq)
|
||||
// the vvvvwcp function
|
||||
function vvvvwcp(how_vvvvwcp,target_vvvvwcp)
|
||||
{
|
||||
if (isSet(how_vvvvwcq) && how_vvvvwcq.constructor !== Array)
|
||||
if (isSet(how_vvvvwcp) && how_vvvvwcp.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcq = how_vvvvwcq;
|
||||
var how_vvvvwcq = [];
|
||||
how_vvvvwcq.push(temp_vvvvwcq);
|
||||
var temp_vvvvwcp = how_vvvvwcp;
|
||||
var how_vvvvwcp = [];
|
||||
how_vvvvwcp.push(temp_vvvvwcp);
|
||||
}
|
||||
else if (!isSet(how_vvvvwcq))
|
||||
else if (!isSet(how_vvvvwcp))
|
||||
{
|
||||
var how_vvvvwcq = [];
|
||||
var how_vvvvwcp = [];
|
||||
}
|
||||
var how = how_vvvvwcq.some(how_vvvvwcq_SomeFunc);
|
||||
var how = how_vvvvwcp.some(how_vvvvwcp_SomeFunc);
|
||||
|
||||
if (isSet(target_vvvvwcq) && target_vvvvwcq.constructor !== Array)
|
||||
if (isSet(target_vvvvwcp) && target_vvvvwcp.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcq = target_vvvvwcq;
|
||||
var target_vvvvwcq = [];
|
||||
target_vvvvwcq.push(temp_vvvvwcq);
|
||||
var temp_vvvvwcp = target_vvvvwcp;
|
||||
var target_vvvvwcp = [];
|
||||
target_vvvvwcp.push(temp_vvvvwcp);
|
||||
}
|
||||
else if (!isSet(target_vvvvwcq))
|
||||
else if (!isSet(target_vvvvwcp))
|
||||
{
|
||||
var target_vvvvwcq = [];
|
||||
var target_vvvvwcp = [];
|
||||
}
|
||||
var target = target_vvvvwcq.some(target_vvvvwcq_SomeFunc);
|
||||
var target = target_vvvvwcp.some(target_vvvvwcp_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
@ -372,17 +372,71 @@ function vvvvwcq(how_vvvvwcq,target_vvvvwcq)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcq Some function
|
||||
function how_vvvvwcq_SomeFunc(how_vvvvwcq)
|
||||
// the vvvvwcp Some function
|
||||
function how_vvvvwcp_SomeFunc(how_vvvvwcp)
|
||||
{
|
||||
// set the function logic
|
||||
if (how_vvvvwcq == 0)
|
||||
if (how_vvvvwcp == 0)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcp Some function
|
||||
function target_vvvvwcp_SomeFunc(target_vvvvwcp)
|
||||
{
|
||||
// set the function logic
|
||||
if (target_vvvvwcp == 1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcq function
|
||||
function vvvvwcq(target_vvvvwcq,how_vvvvwcq)
|
||||
{
|
||||
if (isSet(target_vvvvwcq) && target_vvvvwcq.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcq = target_vvvvwcq;
|
||||
var target_vvvvwcq = [];
|
||||
target_vvvvwcq.push(temp_vvvvwcq);
|
||||
}
|
||||
else if (!isSet(target_vvvvwcq))
|
||||
{
|
||||
var target_vvvvwcq = [];
|
||||
}
|
||||
var target = target_vvvvwcq.some(target_vvvvwcq_SomeFunc);
|
||||
|
||||
if (isSet(how_vvvvwcq) && how_vvvvwcq.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcq = how_vvvvwcq;
|
||||
var how_vvvvwcq = [];
|
||||
how_vvvvwcq.push(temp_vvvvwcq);
|
||||
}
|
||||
else if (!isSet(how_vvvvwcq))
|
||||
{
|
||||
var how_vvvvwcq = [];
|
||||
}
|
||||
var how = how_vvvvwcq.some(how_vvvvwcq_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (target && how)
|
||||
{
|
||||
jQuery('.note_no_behaviour_one').closest('.control-group').show();
|
||||
jQuery('.note_no_behaviour_three').closest('.control-group').show();
|
||||
jQuery('.note_no_behaviour_two').closest('.control-group').show();
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('.note_no_behaviour_one').closest('.control-group').hide();
|
||||
jQuery('.note_no_behaviour_three').closest('.control-group').hide();
|
||||
jQuery('.note_no_behaviour_two').closest('.control-group').hide();
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcq Some function
|
||||
function target_vvvvwcq_SomeFunc(target_vvvvwcq)
|
||||
{
|
||||
@ -394,21 +448,20 @@ function target_vvvvwcq_SomeFunc(target_vvvvwcq)
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcr function
|
||||
function vvvvwcr(target_vvvvwcr,how_vvvvwcr)
|
||||
// the vvvvwcq Some function
|
||||
function how_vvvvwcq_SomeFunc(how_vvvvwcq)
|
||||
{
|
||||
if (isSet(target_vvvvwcr) && target_vvvvwcr.constructor !== Array)
|
||||
// set the function logic
|
||||
if (how_vvvvwcq == 0)
|
||||
{
|
||||
var temp_vvvvwcr = target_vvvvwcr;
|
||||
var target_vvvvwcr = [];
|
||||
target_vvvvwcr.push(temp_vvvvwcr);
|
||||
return true;
|
||||
}
|
||||
else if (!isSet(target_vvvvwcr))
|
||||
{
|
||||
var target_vvvvwcr = [];
|
||||
}
|
||||
var target = target_vvvvwcr.some(target_vvvvwcr_SomeFunc);
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcr function
|
||||
function vvvvwcr(how_vvvvwcr,target_vvvvwcr)
|
||||
{
|
||||
if (isSet(how_vvvvwcr) && how_vvvvwcr.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcr = how_vvvvwcr;
|
||||
@ -421,22 +474,43 @@ function vvvvwcr(target_vvvvwcr,how_vvvvwcr)
|
||||
}
|
||||
var how = how_vvvvwcr.some(how_vvvvwcr_SomeFunc);
|
||||
|
||||
if (isSet(target_vvvvwcr) && target_vvvvwcr.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcr = target_vvvvwcr;
|
||||
var target_vvvvwcr = [];
|
||||
target_vvvvwcr.push(temp_vvvvwcr);
|
||||
}
|
||||
else if (!isSet(target_vvvvwcr))
|
||||
{
|
||||
var target_vvvvwcr = [];
|
||||
}
|
||||
var target = target_vvvvwcr.some(target_vvvvwcr_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (target && how)
|
||||
if (how && target)
|
||||
{
|
||||
jQuery('.note_no_behaviour_one').closest('.control-group').show();
|
||||
jQuery('.note_no_behaviour_three').closest('.control-group').show();
|
||||
jQuery('.note_no_behaviour_two').closest('.control-group').show();
|
||||
jQuery('.note_yes_behaviour_one').closest('.control-group').show();
|
||||
jQuery('.note_yes_behaviour_two').closest('.control-group').show();
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('.note_no_behaviour_one').closest('.control-group').hide();
|
||||
jQuery('.note_no_behaviour_three').closest('.control-group').hide();
|
||||
jQuery('.note_no_behaviour_two').closest('.control-group').hide();
|
||||
jQuery('.note_yes_behaviour_one').closest('.control-group').hide();
|
||||
jQuery('.note_yes_behaviour_two').closest('.control-group').hide();
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcr Some function
|
||||
function how_vvvvwcr_SomeFunc(how_vvvvwcr)
|
||||
{
|
||||
// set the function logic
|
||||
if (how_vvvvwcr == 1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcr Some function
|
||||
function target_vvvvwcr_SomeFunc(target_vvvvwcr)
|
||||
{
|
||||
@ -448,32 +522,9 @@ function target_vvvvwcr_SomeFunc(target_vvvvwcr)
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcr Some function
|
||||
function how_vvvvwcr_SomeFunc(how_vvvvwcr)
|
||||
{
|
||||
// set the function logic
|
||||
if (how_vvvvwcr == 0)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcs function
|
||||
function vvvvwcs(how_vvvvwcs,target_vvvvwcs)
|
||||
function vvvvwcs(target_vvvvwcs,how_vvvvwcs)
|
||||
{
|
||||
if (isSet(how_vvvvwcs) && how_vvvvwcs.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcs = how_vvvvwcs;
|
||||
var how_vvvvwcs = [];
|
||||
how_vvvvwcs.push(temp_vvvvwcs);
|
||||
}
|
||||
else if (!isSet(how_vvvvwcs))
|
||||
{
|
||||
var how_vvvvwcs = [];
|
||||
}
|
||||
var how = how_vvvvwcs.some(how_vvvvwcs_SomeFunc);
|
||||
|
||||
if (isSet(target_vvvvwcs) && target_vvvvwcs.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcs = target_vvvvwcs;
|
||||
@ -486,9 +537,21 @@ function vvvvwcs(how_vvvvwcs,target_vvvvwcs)
|
||||
}
|
||||
var target = target_vvvvwcs.some(target_vvvvwcs_SomeFunc);
|
||||
|
||||
if (isSet(how_vvvvwcs) && how_vvvvwcs.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcs = how_vvvvwcs;
|
||||
var how_vvvvwcs = [];
|
||||
how_vvvvwcs.push(temp_vvvvwcs);
|
||||
}
|
||||
else if (!isSet(how_vvvvwcs))
|
||||
{
|
||||
var how_vvvvwcs = [];
|
||||
}
|
||||
var how = how_vvvvwcs.some(how_vvvvwcs_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (how && target)
|
||||
if (target && how)
|
||||
{
|
||||
jQuery('.note_yes_behaviour_one').closest('.control-group').show();
|
||||
jQuery('.note_yes_behaviour_two').closest('.control-group').show();
|
||||
@ -500,17 +563,6 @@ function vvvvwcs(how_vvvvwcs,target_vvvvwcs)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcs Some function
|
||||
function how_vvvvwcs_SomeFunc(how_vvvvwcs)
|
||||
{
|
||||
// set the function logic
|
||||
if (how_vvvvwcs == 1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcs Some function
|
||||
function target_vvvvwcs_SomeFunc(target_vvvvwcs)
|
||||
{
|
||||
@ -522,21 +574,20 @@ function target_vvvvwcs_SomeFunc(target_vvvvwcs)
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwct function
|
||||
function vvvvwct(target_vvvvwct,how_vvvvwct)
|
||||
// the vvvvwcs Some function
|
||||
function how_vvvvwcs_SomeFunc(how_vvvvwcs)
|
||||
{
|
||||
if (isSet(target_vvvvwct) && target_vvvvwct.constructor !== Array)
|
||||
// set the function logic
|
||||
if (how_vvvvwcs == 1)
|
||||
{
|
||||
var temp_vvvvwct = target_vvvvwct;
|
||||
var target_vvvvwct = [];
|
||||
target_vvvvwct.push(temp_vvvvwct);
|
||||
return true;
|
||||
}
|
||||
else if (!isSet(target_vvvvwct))
|
||||
{
|
||||
var target_vvvvwct = [];
|
||||
}
|
||||
var target = target_vvvvwct.some(target_vvvvwct_SomeFunc);
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwct function
|
||||
function vvvvwct(how_vvvvwct,target_vvvvwct)
|
||||
{
|
||||
if (isSet(how_vvvvwct) && how_vvvvwct.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwct = how_vvvvwct;
|
||||
@ -549,68 +600,17 @@ function vvvvwct(target_vvvvwct,how_vvvvwct)
|
||||
}
|
||||
var how = how_vvvvwct.some(how_vvvvwct_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (target && how)
|
||||
if (isSet(target_vvvvwct) && target_vvvvwct.constructor !== Array)
|
||||
{
|
||||
jQuery('.note_yes_behaviour_one').closest('.control-group').show();
|
||||
jQuery('.note_yes_behaviour_two').closest('.control-group').show();
|
||||
var temp_vvvvwct = target_vvvvwct;
|
||||
var target_vvvvwct = [];
|
||||
target_vvvvwct.push(temp_vvvvwct);
|
||||
}
|
||||
else
|
||||
else if (!isSet(target_vvvvwct))
|
||||
{
|
||||
jQuery('.note_yes_behaviour_one').closest('.control-group').hide();
|
||||
jQuery('.note_yes_behaviour_two').closest('.control-group').hide();
|
||||
var target_vvvvwct = [];
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwct Some function
|
||||
function target_vvvvwct_SomeFunc(target_vvvvwct)
|
||||
{
|
||||
// set the function logic
|
||||
if (target_vvvvwct == 1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwct Some function
|
||||
function how_vvvvwct_SomeFunc(how_vvvvwct)
|
||||
{
|
||||
// set the function logic
|
||||
if (how_vvvvwct == 1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcu function
|
||||
function vvvvwcu(how_vvvvwcu,target_vvvvwcu)
|
||||
{
|
||||
if (isSet(how_vvvvwcu) && how_vvvvwcu.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcu = how_vvvvwcu;
|
||||
var how_vvvvwcu = [];
|
||||
how_vvvvwcu.push(temp_vvvvwcu);
|
||||
}
|
||||
else if (!isSet(how_vvvvwcu))
|
||||
{
|
||||
var how_vvvvwcu = [];
|
||||
}
|
||||
var how = how_vvvvwcu.some(how_vvvvwcu_SomeFunc);
|
||||
|
||||
if (isSet(target_vvvvwcu) && target_vvvvwcu.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcu = target_vvvvwcu;
|
||||
var target_vvvvwcu = [];
|
||||
target_vvvvwcu.push(temp_vvvvwcu);
|
||||
}
|
||||
else if (!isSet(target_vvvvwcu))
|
||||
{
|
||||
var target_vvvvwcu = [];
|
||||
}
|
||||
var target = target_vvvvwcu.some(target_vvvvwcu_SomeFunc);
|
||||
var target = target_vvvvwct.some(target_vvvvwct_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
@ -628,54 +628,54 @@ function vvvvwcu(how_vvvvwcu,target_vvvvwcu)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcu Some function
|
||||
function how_vvvvwcu_SomeFunc(how_vvvvwcu)
|
||||
// the vvvvwct Some function
|
||||
function how_vvvvwct_SomeFunc(how_vvvvwct)
|
||||
{
|
||||
// set the function logic
|
||||
if (how_vvvvwcu == 4)
|
||||
if (how_vvvvwct == 4)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcu Some function
|
||||
function target_vvvvwcu_SomeFunc(target_vvvvwcu)
|
||||
// the vvvvwct Some function
|
||||
function target_vvvvwct_SomeFunc(target_vvvvwct)
|
||||
{
|
||||
// set the function logic
|
||||
if (target_vvvvwcu == 1)
|
||||
if (target_vvvvwct == 1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcv function
|
||||
function vvvvwcv(target_vvvvwcv,how_vvvvwcv)
|
||||
// the vvvvwcu function
|
||||
function vvvvwcu(target_vvvvwcu,how_vvvvwcu)
|
||||
{
|
||||
if (isSet(target_vvvvwcv) && target_vvvvwcv.constructor !== Array)
|
||||
if (isSet(target_vvvvwcu) && target_vvvvwcu.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcv = target_vvvvwcv;
|
||||
var target_vvvvwcv = [];
|
||||
target_vvvvwcv.push(temp_vvvvwcv);
|
||||
var temp_vvvvwcu = target_vvvvwcu;
|
||||
var target_vvvvwcu = [];
|
||||
target_vvvvwcu.push(temp_vvvvwcu);
|
||||
}
|
||||
else if (!isSet(target_vvvvwcv))
|
||||
else if (!isSet(target_vvvvwcu))
|
||||
{
|
||||
var target_vvvvwcv = [];
|
||||
var target_vvvvwcu = [];
|
||||
}
|
||||
var target = target_vvvvwcv.some(target_vvvvwcv_SomeFunc);
|
||||
var target = target_vvvvwcu.some(target_vvvvwcu_SomeFunc);
|
||||
|
||||
if (isSet(how_vvvvwcv) && how_vvvvwcv.constructor !== Array)
|
||||
if (isSet(how_vvvvwcu) && how_vvvvwcu.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcv = how_vvvvwcv;
|
||||
var how_vvvvwcv = [];
|
||||
how_vvvvwcv.push(temp_vvvvwcv);
|
||||
var temp_vvvvwcu = how_vvvvwcu;
|
||||
var how_vvvvwcu = [];
|
||||
how_vvvvwcu.push(temp_vvvvwcu);
|
||||
}
|
||||
else if (!isSet(how_vvvvwcv))
|
||||
else if (!isSet(how_vvvvwcu))
|
||||
{
|
||||
var how_vvvvwcv = [];
|
||||
var how_vvvvwcu = [];
|
||||
}
|
||||
var how = how_vvvvwcv.some(how_vvvvwcv_SomeFunc);
|
||||
var how = how_vvvvwcu.some(how_vvvvwcu_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
@ -693,33 +693,33 @@ function vvvvwcv(target_vvvvwcv,how_vvvvwcv)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcv Some function
|
||||
function target_vvvvwcv_SomeFunc(target_vvvvwcv)
|
||||
// the vvvvwcu Some function
|
||||
function target_vvvvwcu_SomeFunc(target_vvvvwcu)
|
||||
{
|
||||
// set the function logic
|
||||
if (target_vvvvwcv == 1)
|
||||
if (target_vvvvwcu == 1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcv Some function
|
||||
function how_vvvvwcv_SomeFunc(how_vvvvwcv)
|
||||
// the vvvvwcu Some function
|
||||
function how_vvvvwcu_SomeFunc(how_vvvvwcu)
|
||||
{
|
||||
// set the function logic
|
||||
if (how_vvvvwcv == 4)
|
||||
if (how_vvvvwcu == 4)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcw function
|
||||
function vvvvwcw(target_vvvvwcw,type_vvvvwcw)
|
||||
// the vvvvwcv function
|
||||
function vvvvwcv(target_vvvvwcv,type_vvvvwcv)
|
||||
{
|
||||
// set the function logic
|
||||
if (target_vvvvwcw == 1 && type_vvvvwcw == 2)
|
||||
if (target_vvvvwcv == 1 && type_vvvvwcv == 2)
|
||||
{
|
||||
jQuery('#jform_libraries').closest('.control-group').show();
|
||||
}
|
||||
@ -729,63 +729,63 @@ function vvvvwcw(target_vvvvwcw,type_vvvvwcw)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcy function
|
||||
function vvvvwcy(target_vvvvwcy)
|
||||
// the vvvvwcx function
|
||||
function vvvvwcx(target_vvvvwcx)
|
||||
{
|
||||
// set the function logic
|
||||
if (target_vvvvwcy == 1)
|
||||
if (target_vvvvwcx == 1)
|
||||
{
|
||||
jQuery('#jform_how').closest('.control-group').show();
|
||||
// add required attribute to how field
|
||||
if (jform_vvvvwcyvxm_required)
|
||||
if (jform_vvvvwcxvxm_required)
|
||||
{
|
||||
updateFieldRequired('how',0);
|
||||
jQuery('#jform_how').prop('required','required');
|
||||
jQuery('#jform_how').attr('aria-required',true);
|
||||
jQuery('#jform_how').addClass('required');
|
||||
jform_vvvvwcyvxm_required = false;
|
||||
jform_vvvvwcxvxm_required = false;
|
||||
}
|
||||
jQuery('#jform_type').closest('.control-group').show();
|
||||
// add required attribute to type field
|
||||
if (jform_vvvvwcyvxn_required)
|
||||
if (jform_vvvvwcxvxn_required)
|
||||
{
|
||||
updateFieldRequired('type',0);
|
||||
jQuery('#jform_type').prop('required','required');
|
||||
jQuery('#jform_type').attr('aria-required',true);
|
||||
jQuery('#jform_type').addClass('required');
|
||||
jform_vvvvwcyvxn_required = false;
|
||||
jform_vvvvwcxvxn_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_how').closest('.control-group').hide();
|
||||
// remove required attribute from how field
|
||||
if (!jform_vvvvwcyvxm_required)
|
||||
if (!jform_vvvvwcxvxm_required)
|
||||
{
|
||||
updateFieldRequired('how',1);
|
||||
jQuery('#jform_how').removeAttr('required');
|
||||
jQuery('#jform_how').removeAttr('aria-required');
|
||||
jQuery('#jform_how').removeClass('required');
|
||||
jform_vvvvwcyvxm_required = true;
|
||||
jform_vvvvwcxvxm_required = true;
|
||||
}
|
||||
jQuery('#jform_type').closest('.control-group').hide();
|
||||
// remove required attribute from type field
|
||||
if (!jform_vvvvwcyvxn_required)
|
||||
if (!jform_vvvvwcxvxn_required)
|
||||
{
|
||||
updateFieldRequired('type',1);
|
||||
jQuery('#jform_type').removeAttr('required');
|
||||
jQuery('#jform_type').removeAttr('aria-required');
|
||||
jQuery('#jform_type').removeClass('required');
|
||||
jform_vvvvwcyvxn_required = true;
|
||||
jform_vvvvwcxvxn_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcz function
|
||||
function vvvvwcz(target_vvvvwcz)
|
||||
// the vvvvwcy function
|
||||
function vvvvwcy(target_vvvvwcy)
|
||||
{
|
||||
// set the function logic
|
||||
if (target_vvvvwcz == 2)
|
||||
if (target_vvvvwcy == 2)
|
||||
{
|
||||
jQuery('.note_yes_behaviour_library').closest('.control-group').show();
|
||||
}
|
||||
|
@ -11,15 +11,15 @@
|
||||
// Initial Script
|
||||
document.addEventListener('DOMContentLoaded', function()
|
||||
{
|
||||
var add_head_vvvvvyv = jQuery("#jform_add_head input[type='radio']:checked").val();
|
||||
vvvvvyv(add_head_vvvvvyv);
|
||||
var add_head_vvvvvyu = jQuery("#jform_add_head input[type='radio']:checked").val();
|
||||
vvvvvyu(add_head_vvvvvyu);
|
||||
});
|
||||
|
||||
// the vvvvvyv function
|
||||
function vvvvvyv(add_head_vvvvvyv)
|
||||
// the vvvvvyu function
|
||||
function vvvvvyu(add_head_vvvvvyu)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_head_vvvvvyv == 1)
|
||||
if (add_head_vvvvvyu == 1)
|
||||
{
|
||||
jQuery('#jform_head-lbl').closest('.control-group').show();
|
||||
}
|
||||
|
@ -9,42 +9,180 @@
|
||||
*/
|
||||
|
||||
// Some Global Values
|
||||
jform_vvvvwdzvyd_required = false;
|
||||
jform_vvvvwdzvye_required = false;
|
||||
jform_vvvvwdzvyf_required = false;
|
||||
jform_vvvvwdzvyg_required = false;
|
||||
jform_vvvvwdzvyh_required = false;
|
||||
jform_vvvvweavyi_required = false;
|
||||
jform_vvvvwebvyj_required = false;
|
||||
jform_vvvvwedvyk_required = false;
|
||||
jform_vvvvwefvyl_required = false;
|
||||
jform_vvvvwdyvyd_required = false;
|
||||
jform_vvvvwdyvye_required = false;
|
||||
jform_vvvvwdyvyf_required = false;
|
||||
jform_vvvvwdyvyg_required = false;
|
||||
jform_vvvvwdyvyh_required = false;
|
||||
jform_vvvvwdzvyi_required = false;
|
||||
jform_vvvvweavyj_required = false;
|
||||
jform_vvvvwecvyk_required = false;
|
||||
jform_vvvvweevyl_required = false;
|
||||
|
||||
// Initial Script
|
||||
document.addEventListener('DOMContentLoaded', function()
|
||||
{
|
||||
var protocol_vvvvwdy = jQuery("#jform_protocol").val();
|
||||
vvvvwdy(protocol_vvvvwdy);
|
||||
|
||||
var protocol_vvvvwdz = jQuery("#jform_protocol").val();
|
||||
vvvvwdz(protocol_vvvvwdz);
|
||||
|
||||
var protocol_vvvvwea = jQuery("#jform_protocol").val();
|
||||
vvvvwea(protocol_vvvvwea);
|
||||
var authentication_vvvvwea = jQuery("#jform_authentication").val();
|
||||
vvvvwea(protocol_vvvvwea,authentication_vvvvwea);
|
||||
|
||||
var protocol_vvvvweb = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvweb = jQuery("#jform_authentication").val();
|
||||
vvvvweb(protocol_vvvvweb,authentication_vvvvweb);
|
||||
var protocol_vvvvwec = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwec = jQuery("#jform_authentication").val();
|
||||
vvvvwec(protocol_vvvvwec,authentication_vvvvwec);
|
||||
|
||||
var protocol_vvvvwed = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwed = jQuery("#jform_authentication").val();
|
||||
vvvvwed(protocol_vvvvwed,authentication_vvvvwed);
|
||||
var protocol_vvvvwee = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwee = jQuery("#jform_authentication").val();
|
||||
vvvvwee(protocol_vvvvwee,authentication_vvvvwee);
|
||||
|
||||
var protocol_vvvvwef = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwef = jQuery("#jform_authentication").val();
|
||||
vvvvwef(protocol_vvvvwef,authentication_vvvvwef);
|
||||
|
||||
var protocol_vvvvweh = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvweh = jQuery("#jform_authentication").val();
|
||||
vvvvweh(protocol_vvvvweh,authentication_vvvvweh);
|
||||
var protocol_vvvvweg = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvweg = jQuery("#jform_authentication").val();
|
||||
vvvvweg(protocol_vvvvweg,authentication_vvvvweg);
|
||||
});
|
||||
|
||||
// the vvvvwdy function
|
||||
function vvvvwdy(protocol_vvvvwdy)
|
||||
{
|
||||
if (isSet(protocol_vvvvwdy) && protocol_vvvvwdy.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwdy = protocol_vvvvwdy;
|
||||
var protocol_vvvvwdy = [];
|
||||
protocol_vvvvwdy.push(temp_vvvvwdy);
|
||||
}
|
||||
else if (!isSet(protocol_vvvvwdy))
|
||||
{
|
||||
var protocol_vvvvwdy = [];
|
||||
}
|
||||
var protocol = protocol_vvvvwdy.some(protocol_vvvvwdy_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (protocol)
|
||||
{
|
||||
jQuery('#jform_authentication').closest('.control-group').show();
|
||||
// add required attribute to authentication field
|
||||
if (jform_vvvvwdyvyd_required)
|
||||
{
|
||||
updateFieldRequired('authentication',0);
|
||||
jQuery('#jform_authentication').prop('required','required');
|
||||
jQuery('#jform_authentication').attr('aria-required',true);
|
||||
jQuery('#jform_authentication').addClass('required');
|
||||
jform_vvvvwdyvyd_required = false;
|
||||
}
|
||||
jQuery('#jform_host').closest('.control-group').show();
|
||||
// add required attribute to host field
|
||||
if (jform_vvvvwdyvye_required)
|
||||
{
|
||||
updateFieldRequired('host',0);
|
||||
jQuery('#jform_host').prop('required','required');
|
||||
jQuery('#jform_host').attr('aria-required',true);
|
||||
jQuery('#jform_host').addClass('required');
|
||||
jform_vvvvwdyvye_required = false;
|
||||
}
|
||||
jQuery('#jform_port').closest('.control-group').show();
|
||||
// add required attribute to port field
|
||||
if (jform_vvvvwdyvyf_required)
|
||||
{
|
||||
updateFieldRequired('port',0);
|
||||
jQuery('#jform_port').prop('required','required');
|
||||
jQuery('#jform_port').attr('aria-required',true);
|
||||
jQuery('#jform_port').addClass('required');
|
||||
jform_vvvvwdyvyf_required = false;
|
||||
}
|
||||
jQuery('#jform_path').closest('.control-group').show();
|
||||
// add required attribute to path field
|
||||
if (jform_vvvvwdyvyg_required)
|
||||
{
|
||||
updateFieldRequired('path',0);
|
||||
jQuery('#jform_path').prop('required','required');
|
||||
jQuery('#jform_path').attr('aria-required',true);
|
||||
jQuery('#jform_path').addClass('required');
|
||||
jform_vvvvwdyvyg_required = false;
|
||||
}
|
||||
jQuery('.note_ssh_security').closest('.control-group').show();
|
||||
jQuery('#jform_username').closest('.control-group').show();
|
||||
// add required attribute to username field
|
||||
if (jform_vvvvwdyvyh_required)
|
||||
{
|
||||
updateFieldRequired('username',0);
|
||||
jQuery('#jform_username').prop('required','required');
|
||||
jQuery('#jform_username').attr('aria-required',true);
|
||||
jQuery('#jform_username').addClass('required');
|
||||
jform_vvvvwdyvyh_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_authentication').closest('.control-group').hide();
|
||||
// remove required attribute from authentication field
|
||||
if (!jform_vvvvwdyvyd_required)
|
||||
{
|
||||
updateFieldRequired('authentication',1);
|
||||
jQuery('#jform_authentication').removeAttr('required');
|
||||
jQuery('#jform_authentication').removeAttr('aria-required');
|
||||
jQuery('#jform_authentication').removeClass('required');
|
||||
jform_vvvvwdyvyd_required = true;
|
||||
}
|
||||
jQuery('#jform_host').closest('.control-group').hide();
|
||||
// remove required attribute from host field
|
||||
if (!jform_vvvvwdyvye_required)
|
||||
{
|
||||
updateFieldRequired('host',1);
|
||||
jQuery('#jform_host').removeAttr('required');
|
||||
jQuery('#jform_host').removeAttr('aria-required');
|
||||
jQuery('#jform_host').removeClass('required');
|
||||
jform_vvvvwdyvye_required = true;
|
||||
}
|
||||
jQuery('#jform_port').closest('.control-group').hide();
|
||||
// remove required attribute from port field
|
||||
if (!jform_vvvvwdyvyf_required)
|
||||
{
|
||||
updateFieldRequired('port',1);
|
||||
jQuery('#jform_port').removeAttr('required');
|
||||
jQuery('#jform_port').removeAttr('aria-required');
|
||||
jQuery('#jform_port').removeClass('required');
|
||||
jform_vvvvwdyvyf_required = true;
|
||||
}
|
||||
jQuery('#jform_path').closest('.control-group').hide();
|
||||
// remove required attribute from path field
|
||||
if (!jform_vvvvwdyvyg_required)
|
||||
{
|
||||
updateFieldRequired('path',1);
|
||||
jQuery('#jform_path').removeAttr('required');
|
||||
jQuery('#jform_path').removeAttr('aria-required');
|
||||
jQuery('#jform_path').removeClass('required');
|
||||
jform_vvvvwdyvyg_required = true;
|
||||
}
|
||||
jQuery('.note_ssh_security').closest('.control-group').hide();
|
||||
jQuery('#jform_username').closest('.control-group').hide();
|
||||
// remove required attribute from username field
|
||||
if (!jform_vvvvwdyvyh_required)
|
||||
{
|
||||
updateFieldRequired('username',1);
|
||||
jQuery('#jform_username').removeAttr('required');
|
||||
jQuery('#jform_username').removeAttr('aria-required');
|
||||
jQuery('#jform_username').removeClass('required');
|
||||
jform_vvvvwdyvyh_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwdy Some function
|
||||
function protocol_vvvvwdy_SomeFunc(protocol_vvvvwdy)
|
||||
{
|
||||
// set the function logic
|
||||
if (protocol_vvvvwdy == 2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwdz function
|
||||
function vvvvwdz(protocol_vvvvwdz)
|
||||
{
|
||||
@ -64,110 +202,30 @@ function vvvvwdz(protocol_vvvvwdz)
|
||||
// set this function logic
|
||||
if (protocol)
|
||||
{
|
||||
jQuery('#jform_authentication').closest('.control-group').show();
|
||||
// add required attribute to authentication field
|
||||
if (jform_vvvvwdzvyd_required)
|
||||
jQuery('.note_ftp_signature').closest('.control-group').show();
|
||||
jQuery('#jform_signature').closest('.control-group').show();
|
||||
// add required attribute to signature field
|
||||
if (jform_vvvvwdzvyi_required)
|
||||
{
|
||||
updateFieldRequired('authentication',0);
|
||||
jQuery('#jform_authentication').prop('required','required');
|
||||
jQuery('#jform_authentication').attr('aria-required',true);
|
||||
jQuery('#jform_authentication').addClass('required');
|
||||
jform_vvvvwdzvyd_required = false;
|
||||
}
|
||||
jQuery('#jform_host').closest('.control-group').show();
|
||||
// add required attribute to host field
|
||||
if (jform_vvvvwdzvye_required)
|
||||
{
|
||||
updateFieldRequired('host',0);
|
||||
jQuery('#jform_host').prop('required','required');
|
||||
jQuery('#jform_host').attr('aria-required',true);
|
||||
jQuery('#jform_host').addClass('required');
|
||||
jform_vvvvwdzvye_required = false;
|
||||
}
|
||||
jQuery('#jform_port').closest('.control-group').show();
|
||||
// add required attribute to port field
|
||||
if (jform_vvvvwdzvyf_required)
|
||||
{
|
||||
updateFieldRequired('port',0);
|
||||
jQuery('#jform_port').prop('required','required');
|
||||
jQuery('#jform_port').attr('aria-required',true);
|
||||
jQuery('#jform_port').addClass('required');
|
||||
jform_vvvvwdzvyf_required = false;
|
||||
}
|
||||
jQuery('#jform_path').closest('.control-group').show();
|
||||
// add required attribute to path field
|
||||
if (jform_vvvvwdzvyg_required)
|
||||
{
|
||||
updateFieldRequired('path',0);
|
||||
jQuery('#jform_path').prop('required','required');
|
||||
jQuery('#jform_path').attr('aria-required',true);
|
||||
jQuery('#jform_path').addClass('required');
|
||||
jform_vvvvwdzvyg_required = false;
|
||||
}
|
||||
jQuery('.note_ssh_security').closest('.control-group').show();
|
||||
jQuery('#jform_username').closest('.control-group').show();
|
||||
// add required attribute to username field
|
||||
if (jform_vvvvwdzvyh_required)
|
||||
{
|
||||
updateFieldRequired('username',0);
|
||||
jQuery('#jform_username').prop('required','required');
|
||||
jQuery('#jform_username').attr('aria-required',true);
|
||||
jQuery('#jform_username').addClass('required');
|
||||
jform_vvvvwdzvyh_required = false;
|
||||
updateFieldRequired('signature',0);
|
||||
jQuery('#jform_signature').prop('required','required');
|
||||
jQuery('#jform_signature').attr('aria-required',true);
|
||||
jQuery('#jform_signature').addClass('required');
|
||||
jform_vvvvwdzvyi_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_authentication').closest('.control-group').hide();
|
||||
// remove required attribute from authentication field
|
||||
if (!jform_vvvvwdzvyd_required)
|
||||
jQuery('.note_ftp_signature').closest('.control-group').hide();
|
||||
jQuery('#jform_signature').closest('.control-group').hide();
|
||||
// remove required attribute from signature field
|
||||
if (!jform_vvvvwdzvyi_required)
|
||||
{
|
||||
updateFieldRequired('authentication',1);
|
||||
jQuery('#jform_authentication').removeAttr('required');
|
||||
jQuery('#jform_authentication').removeAttr('aria-required');
|
||||
jQuery('#jform_authentication').removeClass('required');
|
||||
jform_vvvvwdzvyd_required = true;
|
||||
}
|
||||
jQuery('#jform_host').closest('.control-group').hide();
|
||||
// remove required attribute from host field
|
||||
if (!jform_vvvvwdzvye_required)
|
||||
{
|
||||
updateFieldRequired('host',1);
|
||||
jQuery('#jform_host').removeAttr('required');
|
||||
jQuery('#jform_host').removeAttr('aria-required');
|
||||
jQuery('#jform_host').removeClass('required');
|
||||
jform_vvvvwdzvye_required = true;
|
||||
}
|
||||
jQuery('#jform_port').closest('.control-group').hide();
|
||||
// remove required attribute from port field
|
||||
if (!jform_vvvvwdzvyf_required)
|
||||
{
|
||||
updateFieldRequired('port',1);
|
||||
jQuery('#jform_port').removeAttr('required');
|
||||
jQuery('#jform_port').removeAttr('aria-required');
|
||||
jQuery('#jform_port').removeClass('required');
|
||||
jform_vvvvwdzvyf_required = true;
|
||||
}
|
||||
jQuery('#jform_path').closest('.control-group').hide();
|
||||
// remove required attribute from path field
|
||||
if (!jform_vvvvwdzvyg_required)
|
||||
{
|
||||
updateFieldRequired('path',1);
|
||||
jQuery('#jform_path').removeAttr('required');
|
||||
jQuery('#jform_path').removeAttr('aria-required');
|
||||
jQuery('#jform_path').removeClass('required');
|
||||
jform_vvvvwdzvyg_required = true;
|
||||
}
|
||||
jQuery('.note_ssh_security').closest('.control-group').hide();
|
||||
jQuery('#jform_username').closest('.control-group').hide();
|
||||
// remove required attribute from username field
|
||||
if (!jform_vvvvwdzvyh_required)
|
||||
{
|
||||
updateFieldRequired('username',1);
|
||||
jQuery('#jform_username').removeAttr('required');
|
||||
jQuery('#jform_username').removeAttr('aria-required');
|
||||
jQuery('#jform_username').removeClass('required');
|
||||
jform_vvvvwdzvyh_required = true;
|
||||
updateFieldRequired('signature',1);
|
||||
jQuery('#jform_signature').removeAttr('required');
|
||||
jQuery('#jform_signature').removeAttr('aria-required');
|
||||
jQuery('#jform_signature').removeClass('required');
|
||||
jform_vvvvwdzvyi_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -176,7 +234,7 @@ function vvvvwdz(protocol_vvvvwdz)
|
||||
function protocol_vvvvwdz_SomeFunc(protocol_vvvvwdz)
|
||||
{
|
||||
// set the function logic
|
||||
if (protocol_vvvvwdz == 2)
|
||||
if (protocol_vvvvwdz == 1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
@ -184,7 +242,7 @@ function protocol_vvvvwdz_SomeFunc(protocol_vvvvwdz)
|
||||
}
|
||||
|
||||
// the vvvvwea function
|
||||
function vvvvwea(protocol_vvvvwea)
|
||||
function vvvvwea(protocol_vvvvwea,authentication_vvvvwea)
|
||||
{
|
||||
if (isSet(protocol_vvvvwea) && protocol_vvvvwea.constructor !== Array)
|
||||
{
|
||||
@ -198,34 +256,44 @@ function vvvvwea(protocol_vvvvwea)
|
||||
}
|
||||
var protocol = protocol_vvvvwea.some(protocol_vvvvwea_SomeFunc);
|
||||
|
||||
if (isSet(authentication_vvvvwea) && authentication_vvvvwea.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwea = authentication_vvvvwea;
|
||||
var authentication_vvvvwea = [];
|
||||
authentication_vvvvwea.push(temp_vvvvwea);
|
||||
}
|
||||
else if (!isSet(authentication_vvvvwea))
|
||||
{
|
||||
var authentication_vvvvwea = [];
|
||||
}
|
||||
var authentication = authentication_vvvvwea.some(authentication_vvvvwea_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (protocol)
|
||||
if (protocol && authentication)
|
||||
{
|
||||
jQuery('.note_ftp_signature').closest('.control-group').show();
|
||||
jQuery('#jform_signature').closest('.control-group').show();
|
||||
// add required attribute to signature field
|
||||
if (jform_vvvvweavyi_required)
|
||||
jQuery('#jform_password').closest('.control-group').show();
|
||||
// add required attribute to password field
|
||||
if (jform_vvvvweavyj_required)
|
||||
{
|
||||
updateFieldRequired('signature',0);
|
||||
jQuery('#jform_signature').prop('required','required');
|
||||
jQuery('#jform_signature').attr('aria-required',true);
|
||||
jQuery('#jform_signature').addClass('required');
|
||||
jform_vvvvweavyi_required = false;
|
||||
updateFieldRequired('password',0);
|
||||
jQuery('#jform_password').prop('required','required');
|
||||
jQuery('#jform_password').attr('aria-required',true);
|
||||
jQuery('#jform_password').addClass('required');
|
||||
jform_vvvvweavyj_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('.note_ftp_signature').closest('.control-group').hide();
|
||||
jQuery('#jform_signature').closest('.control-group').hide();
|
||||
// remove required attribute from signature field
|
||||
if (!jform_vvvvweavyi_required)
|
||||
jQuery('#jform_password').closest('.control-group').hide();
|
||||
// remove required attribute from password field
|
||||
if (!jform_vvvvweavyj_required)
|
||||
{
|
||||
updateFieldRequired('signature',1);
|
||||
jQuery('#jform_signature').removeAttr('required');
|
||||
jQuery('#jform_signature').removeAttr('aria-required');
|
||||
jQuery('#jform_signature').removeClass('required');
|
||||
jform_vvvvweavyi_required = true;
|
||||
updateFieldRequired('password',1);
|
||||
jQuery('#jform_password').removeAttr('required');
|
||||
jQuery('#jform_password').removeAttr('aria-required');
|
||||
jQuery('#jform_password').removeClass('required');
|
||||
jform_vvvvweavyj_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -234,118 +302,50 @@ function vvvvwea(protocol_vvvvwea)
|
||||
function protocol_vvvvwea_SomeFunc(protocol_vvvvwea)
|
||||
{
|
||||
// set the function logic
|
||||
if (protocol_vvvvwea == 1)
|
||||
if (protocol_vvvvwea == 2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvweb function
|
||||
function vvvvweb(protocol_vvvvweb,authentication_vvvvweb)
|
||||
{
|
||||
if (isSet(protocol_vvvvweb) && protocol_vvvvweb.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvweb = protocol_vvvvweb;
|
||||
var protocol_vvvvweb = [];
|
||||
protocol_vvvvweb.push(temp_vvvvweb);
|
||||
}
|
||||
else if (!isSet(protocol_vvvvweb))
|
||||
{
|
||||
var protocol_vvvvweb = [];
|
||||
}
|
||||
var protocol = protocol_vvvvweb.some(protocol_vvvvweb_SomeFunc);
|
||||
|
||||
if (isSet(authentication_vvvvweb) && authentication_vvvvweb.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvweb = authentication_vvvvweb;
|
||||
var authentication_vvvvweb = [];
|
||||
authentication_vvvvweb.push(temp_vvvvweb);
|
||||
}
|
||||
else if (!isSet(authentication_vvvvweb))
|
||||
{
|
||||
var authentication_vvvvweb = [];
|
||||
}
|
||||
var authentication = authentication_vvvvweb.some(authentication_vvvvweb_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (protocol && authentication)
|
||||
{
|
||||
jQuery('#jform_password').closest('.control-group').show();
|
||||
// add required attribute to password field
|
||||
if (jform_vvvvwebvyj_required)
|
||||
{
|
||||
updateFieldRequired('password',0);
|
||||
jQuery('#jform_password').prop('required','required');
|
||||
jQuery('#jform_password').attr('aria-required',true);
|
||||
jQuery('#jform_password').addClass('required');
|
||||
jform_vvvvwebvyj_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_password').closest('.control-group').hide();
|
||||
// remove required attribute from password field
|
||||
if (!jform_vvvvwebvyj_required)
|
||||
{
|
||||
updateFieldRequired('password',1);
|
||||
jQuery('#jform_password').removeAttr('required');
|
||||
jQuery('#jform_password').removeAttr('aria-required');
|
||||
jQuery('#jform_password').removeClass('required');
|
||||
jform_vvvvwebvyj_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvweb Some function
|
||||
function protocol_vvvvweb_SomeFunc(protocol_vvvvweb)
|
||||
// the vvvvwea Some function
|
||||
function authentication_vvvvwea_SomeFunc(authentication_vvvvwea)
|
||||
{
|
||||
// set the function logic
|
||||
if (protocol_vvvvweb == 2)
|
||||
if (authentication_vvvvwea == 1 || authentication_vvvvwea == 3 || authentication_vvvvwea == 5)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvweb Some function
|
||||
function authentication_vvvvweb_SomeFunc(authentication_vvvvweb)
|
||||
// the vvvvwec function
|
||||
function vvvvwec(protocol_vvvvwec,authentication_vvvvwec)
|
||||
{
|
||||
// set the function logic
|
||||
if (authentication_vvvvweb == 1 || authentication_vvvvweb == 3 || authentication_vvvvweb == 5)
|
||||
if (isSet(protocol_vvvvwec) && protocol_vvvvwec.constructor !== Array)
|
||||
{
|
||||
return true;
|
||||
var temp_vvvvwec = protocol_vvvvwec;
|
||||
var protocol_vvvvwec = [];
|
||||
protocol_vvvvwec.push(temp_vvvvwec);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
else if (!isSet(protocol_vvvvwec))
|
||||
{
|
||||
var protocol_vvvvwec = [];
|
||||
}
|
||||
var protocol = protocol_vvvvwec.some(protocol_vvvvwec_SomeFunc);
|
||||
|
||||
// the vvvvwed function
|
||||
function vvvvwed(protocol_vvvvwed,authentication_vvvvwed)
|
||||
{
|
||||
if (isSet(protocol_vvvvwed) && protocol_vvvvwed.constructor !== Array)
|
||||
if (isSet(authentication_vvvvwec) && authentication_vvvvwec.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwed = protocol_vvvvwed;
|
||||
var protocol_vvvvwed = [];
|
||||
protocol_vvvvwed.push(temp_vvvvwed);
|
||||
var temp_vvvvwec = authentication_vvvvwec;
|
||||
var authentication_vvvvwec = [];
|
||||
authentication_vvvvwec.push(temp_vvvvwec);
|
||||
}
|
||||
else if (!isSet(protocol_vvvvwed))
|
||||
else if (!isSet(authentication_vvvvwec))
|
||||
{
|
||||
var protocol_vvvvwed = [];
|
||||
var authentication_vvvvwec = [];
|
||||
}
|
||||
var protocol = protocol_vvvvwed.some(protocol_vvvvwed_SomeFunc);
|
||||
|
||||
if (isSet(authentication_vvvvwed) && authentication_vvvvwed.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwed = authentication_vvvvwed;
|
||||
var authentication_vvvvwed = [];
|
||||
authentication_vvvvwed.push(temp_vvvvwed);
|
||||
}
|
||||
else if (!isSet(authentication_vvvvwed))
|
||||
{
|
||||
var authentication_vvvvwed = [];
|
||||
}
|
||||
var authentication = authentication_vvvvwed.some(authentication_vvvvwed_SomeFunc);
|
||||
var authentication = authentication_vvvvwec.some(authentication_vvvvwec_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
@ -353,78 +353,78 @@ function vvvvwed(protocol_vvvvwed,authentication_vvvvwed)
|
||||
{
|
||||
jQuery('#jform_private').closest('.control-group').show();
|
||||
// add required attribute to private field
|
||||
if (jform_vvvvwedvyk_required)
|
||||
if (jform_vvvvwecvyk_required)
|
||||
{
|
||||
updateFieldRequired('private',0);
|
||||
jQuery('#jform_private').prop('required','required');
|
||||
jQuery('#jform_private').attr('aria-required',true);
|
||||
jQuery('#jform_private').addClass('required');
|
||||
jform_vvvvwedvyk_required = false;
|
||||
jform_vvvvwecvyk_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_private').closest('.control-group').hide();
|
||||
// remove required attribute from private field
|
||||
if (!jform_vvvvwedvyk_required)
|
||||
if (!jform_vvvvwecvyk_required)
|
||||
{
|
||||
updateFieldRequired('private',1);
|
||||
jQuery('#jform_private').removeAttr('required');
|
||||
jQuery('#jform_private').removeAttr('aria-required');
|
||||
jQuery('#jform_private').removeClass('required');
|
||||
jform_vvvvwedvyk_required = true;
|
||||
jform_vvvvwecvyk_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwed Some function
|
||||
function protocol_vvvvwed_SomeFunc(protocol_vvvvwed)
|
||||
// the vvvvwec Some function
|
||||
function protocol_vvvvwec_SomeFunc(protocol_vvvvwec)
|
||||
{
|
||||
// set the function logic
|
||||
if (protocol_vvvvwed == 2)
|
||||
if (protocol_vvvvwec == 2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwed Some function
|
||||
function authentication_vvvvwed_SomeFunc(authentication_vvvvwed)
|
||||
// the vvvvwec Some function
|
||||
function authentication_vvvvwec_SomeFunc(authentication_vvvvwec)
|
||||
{
|
||||
// set the function logic
|
||||
if (authentication_vvvvwed == 2 || authentication_vvvvwed == 3)
|
||||
if (authentication_vvvvwec == 2 || authentication_vvvvwec == 3)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwef function
|
||||
function vvvvwef(protocol_vvvvwef,authentication_vvvvwef)
|
||||
// the vvvvwee function
|
||||
function vvvvwee(protocol_vvvvwee,authentication_vvvvwee)
|
||||
{
|
||||
if (isSet(protocol_vvvvwef) && protocol_vvvvwef.constructor !== Array)
|
||||
if (isSet(protocol_vvvvwee) && protocol_vvvvwee.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwef = protocol_vvvvwef;
|
||||
var protocol_vvvvwef = [];
|
||||
protocol_vvvvwef.push(temp_vvvvwef);
|
||||
var temp_vvvvwee = protocol_vvvvwee;
|
||||
var protocol_vvvvwee = [];
|
||||
protocol_vvvvwee.push(temp_vvvvwee);
|
||||
}
|
||||
else if (!isSet(protocol_vvvvwef))
|
||||
else if (!isSet(protocol_vvvvwee))
|
||||
{
|
||||
var protocol_vvvvwef = [];
|
||||
var protocol_vvvvwee = [];
|
||||
}
|
||||
var protocol = protocol_vvvvwef.some(protocol_vvvvwef_SomeFunc);
|
||||
var protocol = protocol_vvvvwee.some(protocol_vvvvwee_SomeFunc);
|
||||
|
||||
if (isSet(authentication_vvvvwef) && authentication_vvvvwef.constructor !== Array)
|
||||
if (isSet(authentication_vvvvwee) && authentication_vvvvwee.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwef = authentication_vvvvwef;
|
||||
var authentication_vvvvwef = [];
|
||||
authentication_vvvvwef.push(temp_vvvvwef);
|
||||
var temp_vvvvwee = authentication_vvvvwee;
|
||||
var authentication_vvvvwee = [];
|
||||
authentication_vvvvwee.push(temp_vvvvwee);
|
||||
}
|
||||
else if (!isSet(authentication_vvvvwef))
|
||||
else if (!isSet(authentication_vvvvwee))
|
||||
{
|
||||
var authentication_vvvvwef = [];
|
||||
var authentication_vvvvwee = [];
|
||||
}
|
||||
var authentication = authentication_vvvvwef.some(authentication_vvvvwef_SomeFunc);
|
||||
var authentication = authentication_vvvvwee.some(authentication_vvvvwee_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
@ -432,78 +432,78 @@ function vvvvwef(protocol_vvvvwef,authentication_vvvvwef)
|
||||
{
|
||||
jQuery('#jform_private_key').closest('.control-group').show();
|
||||
// add required attribute to private_key field
|
||||
if (jform_vvvvwefvyl_required)
|
||||
if (jform_vvvvweevyl_required)
|
||||
{
|
||||
updateFieldRequired('private_key',0);
|
||||
jQuery('#jform_private_key').prop('required','required');
|
||||
jQuery('#jform_private_key').attr('aria-required',true);
|
||||
jQuery('#jform_private_key').addClass('required');
|
||||
jform_vvvvwefvyl_required = false;
|
||||
jform_vvvvweevyl_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_private_key').closest('.control-group').hide();
|
||||
// remove required attribute from private_key field
|
||||
if (!jform_vvvvwefvyl_required)
|
||||
if (!jform_vvvvweevyl_required)
|
||||
{
|
||||
updateFieldRequired('private_key',1);
|
||||
jQuery('#jform_private_key').removeAttr('required');
|
||||
jQuery('#jform_private_key').removeAttr('aria-required');
|
||||
jQuery('#jform_private_key').removeClass('required');
|
||||
jform_vvvvwefvyl_required = true;
|
||||
jform_vvvvweevyl_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwef Some function
|
||||
function protocol_vvvvwef_SomeFunc(protocol_vvvvwef)
|
||||
// the vvvvwee Some function
|
||||
function protocol_vvvvwee_SomeFunc(protocol_vvvvwee)
|
||||
{
|
||||
// set the function logic
|
||||
if (protocol_vvvvwef == 2)
|
||||
if (protocol_vvvvwee == 2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwef Some function
|
||||
function authentication_vvvvwef_SomeFunc(authentication_vvvvwef)
|
||||
// the vvvvwee Some function
|
||||
function authentication_vvvvwee_SomeFunc(authentication_vvvvwee)
|
||||
{
|
||||
// set the function logic
|
||||
if (authentication_vvvvwef == 4 || authentication_vvvvwef == 5)
|
||||
if (authentication_vvvvwee == 4 || authentication_vvvvwee == 5)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvweh function
|
||||
function vvvvweh(protocol_vvvvweh,authentication_vvvvweh)
|
||||
// the vvvvweg function
|
||||
function vvvvweg(protocol_vvvvweg,authentication_vvvvweg)
|
||||
{
|
||||
if (isSet(protocol_vvvvweh) && protocol_vvvvweh.constructor !== Array)
|
||||
if (isSet(protocol_vvvvweg) && protocol_vvvvweg.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvweh = protocol_vvvvweh;
|
||||
var protocol_vvvvweh = [];
|
||||
protocol_vvvvweh.push(temp_vvvvweh);
|
||||
var temp_vvvvweg = protocol_vvvvweg;
|
||||
var protocol_vvvvweg = [];
|
||||
protocol_vvvvweg.push(temp_vvvvweg);
|
||||
}
|
||||
else if (!isSet(protocol_vvvvweh))
|
||||
else if (!isSet(protocol_vvvvweg))
|
||||
{
|
||||
var protocol_vvvvweh = [];
|
||||
var protocol_vvvvweg = [];
|
||||
}
|
||||
var protocol = protocol_vvvvweh.some(protocol_vvvvweh_SomeFunc);
|
||||
var protocol = protocol_vvvvweg.some(protocol_vvvvweg_SomeFunc);
|
||||
|
||||
if (isSet(authentication_vvvvweh) && authentication_vvvvweh.constructor !== Array)
|
||||
if (isSet(authentication_vvvvweg) && authentication_vvvvweg.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvweh = authentication_vvvvweh;
|
||||
var authentication_vvvvweh = [];
|
||||
authentication_vvvvweh.push(temp_vvvvweh);
|
||||
var temp_vvvvweg = authentication_vvvvweg;
|
||||
var authentication_vvvvweg = [];
|
||||
authentication_vvvvweg.push(temp_vvvvweg);
|
||||
}
|
||||
else if (!isSet(authentication_vvvvweh))
|
||||
else if (!isSet(authentication_vvvvweg))
|
||||
{
|
||||
var authentication_vvvvweh = [];
|
||||
var authentication_vvvvweg = [];
|
||||
}
|
||||
var authentication = authentication_vvvvweh.some(authentication_vvvvweh_SomeFunc);
|
||||
var authentication = authentication_vvvvweg.some(authentication_vvvvweg_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
@ -517,22 +517,22 @@ function vvvvweh(protocol_vvvvweh,authentication_vvvvweh)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvweh Some function
|
||||
function protocol_vvvvweh_SomeFunc(protocol_vvvvweh)
|
||||
// the vvvvweg Some function
|
||||
function protocol_vvvvweg_SomeFunc(protocol_vvvvweg)
|
||||
{
|
||||
// set the function logic
|
||||
if (protocol_vvvvweh == 2)
|
||||
if (protocol_vvvvweg == 2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvweh Some function
|
||||
function authentication_vvvvweh_SomeFunc(authentication_vvvvweh)
|
||||
// the vvvvweg Some function
|
||||
function authentication_vvvvweg_SomeFunc(authentication_vvvvweg)
|
||||
{
|
||||
// set the function logic
|
||||
if (authentication_vvvvweh == 2 || authentication_vvvvweh == 3 || authentication_vvvvweh == 4 || authentication_vvvvweh == 5)
|
||||
if (authentication_vvvvweg == 2 || authentication_vvvvweg == 3 || authentication_vvvvweg == 4 || authentication_vvvvweg == 5)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
@ -11,45 +11,45 @@
|
||||
// Initial Script
|
||||
document.addEventListener('DOMContentLoaded', function()
|
||||
{
|
||||
var add_php_view_vvvvwao = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvwao(add_php_view_vvvvwao);
|
||||
var add_php_view_vvvvwan = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvwan(add_php_view_vvvvwan);
|
||||
|
||||
var add_php_jview_display_vvvvwap = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
|
||||
vvvvwap(add_php_jview_display_vvvvwap);
|
||||
var add_php_jview_display_vvvvwao = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
|
||||
vvvvwao(add_php_jview_display_vvvvwao);
|
||||
|
||||
var add_php_jview_vvvvwaq = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
|
||||
vvvvwaq(add_php_jview_vvvvwaq);
|
||||
var add_php_jview_vvvvwap = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
|
||||
vvvvwap(add_php_jview_vvvvwap);
|
||||
|
||||
var add_php_document_vvvvwar = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvwar(add_php_document_vvvvwar);
|
||||
var add_php_document_vvvvwaq = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvwaq(add_php_document_vvvvwaq);
|
||||
|
||||
var add_css_document_vvvvwas = jQuery("#jform_add_css_document input[type='radio']:checked").val();
|
||||
vvvvwas(add_css_document_vvvvwas);
|
||||
var add_css_document_vvvvwar = jQuery("#jform_add_css_document input[type='radio']:checked").val();
|
||||
vvvvwar(add_css_document_vvvvwar);
|
||||
|
||||
var add_javascript_file_vvvvwat = jQuery("#jform_add_javascript_file input[type='radio']:checked").val();
|
||||
vvvvwat(add_javascript_file_vvvvwat);
|
||||
var add_javascript_file_vvvvwas = jQuery("#jform_add_javascript_file input[type='radio']:checked").val();
|
||||
vvvvwas(add_javascript_file_vvvvwas);
|
||||
|
||||
var add_js_document_vvvvwau = jQuery("#jform_add_js_document input[type='radio']:checked").val();
|
||||
vvvvwau(add_js_document_vvvvwau);
|
||||
var add_js_document_vvvvwat = jQuery("#jform_add_js_document input[type='radio']:checked").val();
|
||||
vvvvwat(add_js_document_vvvvwat);
|
||||
|
||||
var add_css_vvvvwav = jQuery("#jform_add_css input[type='radio']:checked").val();
|
||||
vvvvwav(add_css_vvvvwav);
|
||||
var add_css_vvvvwau = jQuery("#jform_add_css input[type='radio']:checked").val();
|
||||
vvvvwau(add_css_vvvvwau);
|
||||
|
||||
var add_php_ajax_vvvvwaw = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
||||
vvvvwaw(add_php_ajax_vvvvwaw);
|
||||
var add_php_ajax_vvvvwav = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
||||
vvvvwav(add_php_ajax_vvvvwav);
|
||||
|
||||
var add_custom_button_vvvvwax = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvwax(add_custom_button_vvvvwax);
|
||||
var add_custom_button_vvvvwaw = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvwaw(add_custom_button_vvvvwaw);
|
||||
|
||||
var button_position_vvvvway = jQuery("#jform_button_position").val();
|
||||
vvvvway(button_position_vvvvway);
|
||||
var button_position_vvvvwax = jQuery("#jform_button_position").val();
|
||||
vvvvwax(button_position_vvvvwax);
|
||||
});
|
||||
|
||||
// the vvvvwao function
|
||||
function vvvvwao(add_php_view_vvvvwao)
|
||||
// the vvvvwan function
|
||||
function vvvvwan(add_php_view_vvvvwan)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_view_vvvvwao == 1)
|
||||
if (add_php_view_vvvvwan == 1)
|
||||
{
|
||||
jQuery('#jform_php_view-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -59,11 +59,11 @@ function vvvvwao(add_php_view_vvvvwao)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwap function
|
||||
function vvvvwap(add_php_jview_display_vvvvwap)
|
||||
// the vvvvwao function
|
||||
function vvvvwao(add_php_jview_display_vvvvwao)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_jview_display_vvvvwap == 1)
|
||||
if (add_php_jview_display_vvvvwao == 1)
|
||||
{
|
||||
jQuery('#jform_php_jview_display-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -73,11 +73,11 @@ function vvvvwap(add_php_jview_display_vvvvwap)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwaq function
|
||||
function vvvvwaq(add_php_jview_vvvvwaq)
|
||||
// the vvvvwap function
|
||||
function vvvvwap(add_php_jview_vvvvwap)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_jview_vvvvwaq == 1)
|
||||
if (add_php_jview_vvvvwap == 1)
|
||||
{
|
||||
jQuery('#jform_php_jview-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -87,11 +87,11 @@ function vvvvwaq(add_php_jview_vvvvwaq)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwar function
|
||||
function vvvvwar(add_php_document_vvvvwar)
|
||||
// the vvvvwaq function
|
||||
function vvvvwaq(add_php_document_vvvvwaq)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_document_vvvvwar == 1)
|
||||
if (add_php_document_vvvvwaq == 1)
|
||||
{
|
||||
jQuery('#jform_php_document-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -101,11 +101,11 @@ function vvvvwar(add_php_document_vvvvwar)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwas function
|
||||
function vvvvwas(add_css_document_vvvvwas)
|
||||
// the vvvvwar function
|
||||
function vvvvwar(add_css_document_vvvvwar)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_css_document_vvvvwas == 1)
|
||||
if (add_css_document_vvvvwar == 1)
|
||||
{
|
||||
jQuery('#jform_css_document-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -115,11 +115,11 @@ function vvvvwas(add_css_document_vvvvwas)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwat function
|
||||
function vvvvwat(add_javascript_file_vvvvwat)
|
||||
// the vvvvwas function
|
||||
function vvvvwas(add_javascript_file_vvvvwas)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_javascript_file_vvvvwat == 1)
|
||||
if (add_javascript_file_vvvvwas == 1)
|
||||
{
|
||||
jQuery('#jform_javascript_file-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -129,11 +129,11 @@ function vvvvwat(add_javascript_file_vvvvwat)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwau function
|
||||
function vvvvwau(add_js_document_vvvvwau)
|
||||
// the vvvvwat function
|
||||
function vvvvwat(add_js_document_vvvvwat)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_js_document_vvvvwau == 1)
|
||||
if (add_js_document_vvvvwat == 1)
|
||||
{
|
||||
jQuery('#jform_js_document-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -143,11 +143,11 @@ function vvvvwau(add_js_document_vvvvwau)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwav function
|
||||
function vvvvwav(add_css_vvvvwav)
|
||||
// the vvvvwau function
|
||||
function vvvvwau(add_css_vvvvwau)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_css_vvvvwav == 1)
|
||||
if (add_css_vvvvwau == 1)
|
||||
{
|
||||
jQuery('#jform_css-lbl').closest('.control-group').show();
|
||||
}
|
||||
@ -157,11 +157,11 @@ function vvvvwav(add_css_vvvvwav)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwaw function
|
||||
function vvvvwaw(add_php_ajax_vvvvwaw)
|
||||
// the vvvvwav function
|
||||
function vvvvwav(add_php_ajax_vvvvwav)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_ajax_vvvvwaw == 1)
|
||||
if (add_php_ajax_vvvvwav == 1)
|
||||
{
|
||||
jQuery('#jform_ajax_input-lbl').closest('.control-group').show();
|
||||
jQuery('#jform_php_ajaxmethod-lbl').closest('.control-group').show();
|
||||
@ -173,11 +173,11 @@ function vvvvwaw(add_php_ajax_vvvvwaw)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwax function
|
||||
function vvvvwax(add_custom_button_vvvvwax)
|
||||
// the vvvvwaw function
|
||||
function vvvvwaw(add_custom_button_vvvvwaw)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_custom_button_vvvvwax == 1)
|
||||
if (add_custom_button_vvvvwaw == 1)
|
||||
{
|
||||
jQuery('#jform_custom_button-lbl').closest('.control-group').show();
|
||||
jQuery('#jform_php_controller-lbl').closest('.control-group').show();
|
||||
@ -191,20 +191,20 @@ function vvvvwax(add_custom_button_vvvvwax)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvway function
|
||||
function vvvvway(button_position_vvvvway)
|
||||
// the vvvvwax function
|
||||
function vvvvwax(button_position_vvvvwax)
|
||||
{
|
||||
if (isSet(button_position_vvvvway) && button_position_vvvvway.constructor !== Array)
|
||||
if (isSet(button_position_vvvvwax) && button_position_vvvvwax.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvway = button_position_vvvvway;
|
||||
var button_position_vvvvway = [];
|
||||
button_position_vvvvway.push(temp_vvvvway);
|
||||
var temp_vvvvwax = button_position_vvvvwax;
|
||||
var button_position_vvvvwax = [];
|
||||
button_position_vvvvwax.push(temp_vvvvwax);
|
||||
}
|
||||
else if (!isSet(button_position_vvvvway))
|
||||
else if (!isSet(button_position_vvvvwax))
|
||||
{
|
||||
var button_position_vvvvway = [];
|
||||
var button_position_vvvvwax = [];
|
||||
}
|
||||
var button_position = button_position_vvvvway.some(button_position_vvvvway_SomeFunc);
|
||||
var button_position = button_position_vvvvwax.some(button_position_vvvvwax_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
@ -218,11 +218,11 @@ function vvvvway(button_position_vvvvway)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvway Some function
|
||||
function button_position_vvvvway_SomeFunc(button_position_vvvvway)
|
||||
// the vvvvwax Some function
|
||||
function button_position_vvvvwax_SomeFunc(button_position_vvvvwax)
|
||||
{
|
||||
// set the function logic
|
||||
if (button_position_vvvvway == 5)
|
||||
if (button_position_vvvvwax == 5)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
@ -11,15 +11,15 @@
|
||||
// Initial Script
|
||||
document.addEventListener('DOMContentLoaded', function()
|
||||
{
|
||||
var add_php_view_vvvvwaz = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvwaz(add_php_view_vvvvwaz);
|
||||
var add_php_view_vvvvway = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvway(add_php_view_vvvvway);
|
||||
});
|
||||
|
||||
// the vvvvwaz function
|
||||
function vvvvwaz(add_php_view_vvvvwaz)
|
||||
// the vvvvway function
|
||||
function vvvvway(add_php_view_vvvvway)
|
||||
{
|
||||
// set the function logic
|
||||
if (add_php_view_vvvvwaz == 1)
|
||||
if (add_php_view_vvvvway == 1)
|
||||
{
|
||||
jQuery('#jform_php_view-lbl').closest('.control-group').show();
|
||||
}
|
||||
|
@ -9627,7 +9627,7 @@ class Com_ComponentbuilderInstallerScript
|
||||
echo '<div style="background-color: #fff;" class="alert alert-info"><a target="_blank" href="https://dev.vdm.io" title="Component Builder">
|
||||
<img src="components/com_componentbuilder/assets/images/vdm-component.jpg"/>
|
||||
</a>
|
||||
<h3>Upgrade to Version 3.2.1-alpha2 Was Successful! Let us know if anything is not working as expected.</h3></div>';
|
||||
<h3>Upgrade to Version 3.2.1-alpha3 Was Successful! Let us know if anything is not working as expected.</h3></div>';
|
||||
|
||||
// Set db if not set already.
|
||||
if (!isset($db))
|
||||
|
Loading…
Reference in New Issue
Block a user