2018-05-18 06:28:27 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
|
|
|
* @author Llewellyn van der Merwe <http://www.joomlacomponentbuilder.com>
|
|
|
|
* @github Joomla Component Builder <https://github.com/vdm-io/Joomla-Component-Builder>
|
2020-02-17 20:01:02 +00:00
|
|
|
* @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
|
2018-05-18 06:28:27 +00:00
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
// Some Global Values
|
2020-02-04 23:18:34 +00:00
|
|
|
jform_vvvvwekvyq_required = false;
|
|
|
|
jform_vvvvwelvyr_required = false;
|
|
|
|
jform_vvvvwemvys_required = false;
|
|
|
|
jform_vvvvwenvyt_required = false;
|
|
|
|
jform_vvvvwepvyu_required = false;
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
// Initial Script
|
|
|
|
jQuery(document).ready(function()
|
|
|
|
{
|
2019-12-03 02:17:35 +00:00
|
|
|
var location_vvvvwek = jQuery("#jform_location input[type='radio']:checked").val();
|
|
|
|
vvvvwek(location_vvvvwek);
|
2019-05-15 17:39:27 +00:00
|
|
|
|
2019-12-03 02:17:35 +00:00
|
|
|
var location_vvvvwel = jQuery("#jform_location input[type='radio']:checked").val();
|
|
|
|
vvvvwel(location_vvvvwel);
|
2019-06-12 20:06:19 +00:00
|
|
|
|
2019-12-03 02:17:35 +00:00
|
|
|
var type_vvvvwem = jQuery("#jform_type").val();
|
|
|
|
vvvvwem(type_vvvvwem);
|
2019-06-12 20:36:05 +00:00
|
|
|
|
2019-12-03 02:17:35 +00:00
|
|
|
var type_vvvvwen = jQuery("#jform_type").val();
|
|
|
|
vvvvwen(type_vvvvwen);
|
2019-08-08 15:35:58 +00:00
|
|
|
|
2019-12-03 02:17:35 +00:00
|
|
|
var type_vvvvweo = jQuery("#jform_type").val();
|
|
|
|
vvvvweo(type_vvvvweo);
|
2019-11-09 12:49:20 +00:00
|
|
|
|
2019-12-03 02:17:35 +00:00
|
|
|
var target_vvvvwep = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwep(target_vvvvwep);
|
2016-01-30 20:28:43 +00:00
|
|
|
});
|
|
|
|
|
2019-12-03 02:17:35 +00:00
|
|
|
// the vvvvwek function
|
|
|
|
function vvvvwek(location_vvvvwek)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-12-03 02:17:35 +00:00
|
|
|
if (location_vvvvwek == 1)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
jQuery('#jform_admin_view').closest('.control-group').show();
|
2018-09-10 11:04:52 +00:00
|
|
|
// add required attribute to admin_view field
|
2020-02-04 23:18:34 +00:00
|
|
|
if (jform_vvvvwekvyq_required)
|
2016-10-23 22:48:26 +00:00
|
|
|
{
|
|
|
|
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');
|
2020-02-04 23:18:34 +00:00
|
|
|
jform_vvvvwekvyq_required = false;
|
2016-10-23 22:48:26 +00:00
|
|
|
}
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_admin_view').closest('.control-group').hide();
|
2018-09-10 11:04:52 +00:00
|
|
|
// remove required attribute from admin_view field
|
2020-02-04 23:18:34 +00:00
|
|
|
if (!jform_vvvvwekvyq_required)
|
2016-10-23 22:48:26 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('admin_view',1);
|
|
|
|
jQuery('#jform_admin_view').removeAttr('required');
|
|
|
|
jQuery('#jform_admin_view').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_admin_view').removeClass('required');
|
2020-02-04 23:18:34 +00:00
|
|
|
jform_vvvvwekvyq_required = true;
|
2016-10-23 22:48:26 +00:00
|
|
|
}
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-03 02:17:35 +00:00
|
|
|
// the vvvvwel function
|
|
|
|
function vvvvwel(location_vvvvwel)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-12-03 02:17:35 +00:00
|
|
|
if (location_vvvvwel == 2)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
jQuery('#jform_site_view').closest('.control-group').show();
|
2018-09-10 11:04:52 +00:00
|
|
|
// add required attribute to site_view field
|
2020-02-04 23:18:34 +00:00
|
|
|
if (jform_vvvvwelvyr_required)
|
2016-10-23 22:48:26 +00:00
|
|
|
{
|
|
|
|
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');
|
2020-02-04 23:18:34 +00:00
|
|
|
jform_vvvvwelvyr_required = false;
|
2016-10-23 22:48:26 +00:00
|
|
|
}
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_site_view').closest('.control-group').hide();
|
2018-09-10 11:04:52 +00:00
|
|
|
// remove required attribute from site_view field
|
2020-02-04 23:18:34 +00:00
|
|
|
if (!jform_vvvvwelvyr_required)
|
2016-10-23 22:48:26 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('site_view',1);
|
|
|
|
jQuery('#jform_site_view').removeAttr('required');
|
|
|
|
jQuery('#jform_site_view').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_site_view').removeClass('required');
|
2020-02-04 23:18:34 +00:00
|
|
|
jform_vvvvwelvyr_required = true;
|
2016-10-23 22:48:26 +00:00
|
|
|
}
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-03 02:17:35 +00:00
|
|
|
// the vvvvwem function
|
|
|
|
function vvvvwem(type_vvvvwem)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2019-12-03 02:17:35 +00:00
|
|
|
if (isSet(type_vvvvwem) && type_vvvvwem.constructor !== Array)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2019-12-03 02:17:35 +00:00
|
|
|
var temp_vvvvwem = type_vvvvwem;
|
|
|
|
var type_vvvvwem = [];
|
|
|
|
type_vvvvwem.push(temp_vvvvwem);
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
2019-12-03 02:17:35 +00:00
|
|
|
else if (!isSet(type_vvvvwem))
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2019-12-03 02:17:35 +00:00
|
|
|
var type_vvvvwem = [];
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
2019-12-03 02:17:35 +00:00
|
|
|
var type = type_vvvvwem.some(type_vvvvwem_SomeFunc);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
// set this function logic
|
|
|
|
if (type)
|
|
|
|
{
|
|
|
|
jQuery('#jform_url').closest('.control-group').show();
|
2018-09-10 11:04:52 +00:00
|
|
|
// add required attribute to url field
|
2020-02-04 23:18:34 +00:00
|
|
|
if (jform_vvvvwemvys_required)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('url',0);
|
|
|
|
jQuery('#jform_url').prop('required','required');
|
|
|
|
jQuery('#jform_url').attr('aria-required',true);
|
|
|
|
jQuery('#jform_url').addClass('required');
|
2020-02-04 23:18:34 +00:00
|
|
|
jform_vvvvwemvys_required = false;
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_url').closest('.control-group').hide();
|
2018-09-10 11:04:52 +00:00
|
|
|
// remove required attribute from url field
|
2020-02-04 23:18:34 +00:00
|
|
|
if (!jform_vvvvwemvys_required)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('url',1);
|
|
|
|
jQuery('#jform_url').removeAttr('required');
|
|
|
|
jQuery('#jform_url').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_url').removeClass('required');
|
2020-02-04 23:18:34 +00:00
|
|
|
jform_vvvvwemvys_required = true;
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-03 02:17:35 +00:00
|
|
|
// the vvvvwem Some function
|
|
|
|
function type_vvvvwem_SomeFunc(type_vvvvwem)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-12-03 02:17:35 +00:00
|
|
|
if (type_vvvvwem == 3)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-12-03 02:17:35 +00:00
|
|
|
// the vvvvwen function
|
|
|
|
function vvvvwen(type_vvvvwen)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2019-12-03 02:17:35 +00:00
|
|
|
if (isSet(type_vvvvwen) && type_vvvvwen.constructor !== Array)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2019-12-03 02:17:35 +00:00
|
|
|
var temp_vvvvwen = type_vvvvwen;
|
|
|
|
var type_vvvvwen = [];
|
|
|
|
type_vvvvwen.push(temp_vvvvwen);
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
2019-12-03 02:17:35 +00:00
|
|
|
else if (!isSet(type_vvvvwen))
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2019-12-03 02:17:35 +00:00
|
|
|
var type_vvvvwen = [];
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
2019-12-03 02:17:35 +00:00
|
|
|
var type = type_vvvvwen.some(type_vvvvwen_SomeFunc);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
// set this function logic
|
|
|
|
if (type)
|
|
|
|
{
|
|
|
|
jQuery('#jform_article').closest('.control-group').show();
|
2018-09-10 11:04:52 +00:00
|
|
|
// add required attribute to article field
|
2020-02-04 23:18:34 +00:00
|
|
|
if (jform_vvvvwenvyt_required)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('article',0);
|
|
|
|
jQuery('#jform_article').prop('required','required');
|
|
|
|
jQuery('#jform_article').attr('aria-required',true);
|
|
|
|
jQuery('#jform_article').addClass('required');
|
2020-02-04 23:18:34 +00:00
|
|
|
jform_vvvvwenvyt_required = false;
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_article').closest('.control-group').hide();
|
2018-09-10 11:04:52 +00:00
|
|
|
// remove required attribute from article field
|
2020-02-04 23:18:34 +00:00
|
|
|
if (!jform_vvvvwenvyt_required)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('article',1);
|
|
|
|
jQuery('#jform_article').removeAttr('required');
|
|
|
|
jQuery('#jform_article').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_article').removeClass('required');
|
2020-02-04 23:18:34 +00:00
|
|
|
jform_vvvvwenvyt_required = true;
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-03 02:17:35 +00:00
|
|
|
// the vvvvwen Some function
|
|
|
|
function type_vvvvwen_SomeFunc(type_vvvvwen)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-12-03 02:17:35 +00:00
|
|
|
if (type_vvvvwen == 1)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-12-03 02:17:35 +00:00
|
|
|
// the vvvvweo function
|
|
|
|
function vvvvweo(type_vvvvweo)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2019-12-03 02:17:35 +00:00
|
|
|
if (isSet(type_vvvvweo) && type_vvvvweo.constructor !== Array)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2019-12-03 02:17:35 +00:00
|
|
|
var temp_vvvvweo = type_vvvvweo;
|
|
|
|
var type_vvvvweo = [];
|
|
|
|
type_vvvvweo.push(temp_vvvvweo);
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
2019-12-03 02:17:35 +00:00
|
|
|
else if (!isSet(type_vvvvweo))
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2019-12-03 02:17:35 +00:00
|
|
|
var type_vvvvweo = [];
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
2019-12-03 02:17:35 +00:00
|
|
|
var type = type_vvvvweo.some(type_vvvvweo_SomeFunc);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
// set this function logic
|
|
|
|
if (type)
|
|
|
|
{
|
|
|
|
jQuery('#jform_content-lbl').closest('.control-group').show();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_content-lbl').closest('.control-group').hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-03 02:17:35 +00:00
|
|
|
// the vvvvweo Some function
|
|
|
|
function type_vvvvweo_SomeFunc(type_vvvvweo)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-12-03 02:17:35 +00:00
|
|
|
if (type_vvvvweo == 2)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-12-03 02:17:35 +00:00
|
|
|
// the vvvvwep function
|
|
|
|
function vvvvwep(target_vvvvwep)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-12-03 02:17:35 +00:00
|
|
|
if (target_vvvvwep == 1)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
jQuery('#jform_groups').closest('.control-group').show();
|
2018-09-10 11:04:52 +00:00
|
|
|
// add required attribute to groups field
|
2020-02-04 23:18:34 +00:00
|
|
|
if (jform_vvvvwepvyu_required)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('groups',0);
|
|
|
|
jQuery('#jform_groups').prop('required','required');
|
|
|
|
jQuery('#jform_groups').attr('aria-required',true);
|
|
|
|
jQuery('#jform_groups').addClass('required');
|
2020-02-04 23:18:34 +00:00
|
|
|
jform_vvvvwepvyu_required = false;
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_groups').closest('.control-group').hide();
|
2018-09-10 11:04:52 +00:00
|
|
|
// remove required attribute from groups field
|
2020-02-04 23:18:34 +00:00
|
|
|
if (!jform_vvvvwepvyu_required)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('groups',1);
|
|
|
|
jQuery('#jform_groups').removeAttr('required');
|
|
|
|
jQuery('#jform_groups').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_groups').removeClass('required');
|
2020-02-04 23:18:34 +00:00
|
|
|
jform_vvvvwepvyu_required = true;
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-27 21:05:28 +00:00
|
|
|
// update fields required
|
|
|
|
function updateFieldRequired(name, status) {
|
|
|
|
// check if not_required exist
|
|
|
|
if (jQuery('#jform_not_required').length > 0) {
|
|
|
|
var not_required = jQuery('#jform_not_required').val().split(",");
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2020-02-27 21:05:28 +00:00
|
|
|
if(status == 1)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2020-02-27 21:05:28 +00:00
|
|
|
not_required.push(name);
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-02-27 21:05:28 +00:00
|
|
|
not_required = removeFieldFromNotRequired(not_required, name);
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
2020-02-27 21:05:28 +00:00
|
|
|
|
|
|
|
jQuery('#jform_not_required').val(fixNotRequiredArray(not_required).toString());
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
2020-02-27 21:05:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// remove field from not_required
|
|
|
|
function removeFieldFromNotRequired(array, what) {
|
|
|
|
return array.filter(function(element){
|
|
|
|
return element !== what;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// fix not required array
|
|
|
|
function fixNotRequiredArray(array) {
|
|
|
|
var seen = {};
|
|
|
|
return removeEmptyFromNotRequiredArray(array).filter(function(item) {
|
|
|
|
return seen.hasOwnProperty(item) ? false : (seen[item] = true);
|
|
|
|
});
|
|
|
|
}
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2020-02-27 21:05:28 +00:00
|
|
|
// remove empty from not_required array
|
|
|
|
function removeEmptyFromNotRequiredArray(array) {
|
|
|
|
return array.filter(function (el) {
|
|
|
|
// remove ( 一_一) as well - lol
|
|
|
|
return (el.length > 0 && '一_一' !== el);
|
|
|
|
});
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// the isSet function
|
|
|
|
function isSet(val)
|
|
|
|
{
|
|
|
|
if ((val != undefined) && (val != null) && 0 !== val.length){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|