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>
|
2019-02-23 13:28:54 +00:00
|
|
|
* @copyright Copyright (C) 2015 - 2019 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
|
2019-07-19 02:17:15 +00:00
|
|
|
jform_vvvvwcgvye_required = false;
|
|
|
|
jform_vvvvwchvyf_required = false;
|
|
|
|
jform_vvvvwcivyg_required = false;
|
|
|
|
jform_vvvvwcjvyh_required = false;
|
|
|
|
jform_vvvvwclvyi_required = false;
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
// Initial Script
|
|
|
|
jQuery(document).ready(function()
|
|
|
|
{
|
2019-07-19 02:17:15 +00:00
|
|
|
var location_vvvvwcg = jQuery("#jform_location input[type='radio']:checked").val();
|
|
|
|
vvvvwcg(location_vvvvwcg);
|
2018-08-23 01:37:42 +00:00
|
|
|
|
2019-07-19 02:17:15 +00:00
|
|
|
var location_vvvvwch = jQuery("#jform_location input[type='radio']:checked").val();
|
|
|
|
vvvvwch(location_vvvvwch);
|
2019-01-29 14:43:27 +00:00
|
|
|
|
2019-07-19 02:17:15 +00:00
|
|
|
var type_vvvvwci = jQuery("#jform_type").val();
|
|
|
|
vvvvwci(type_vvvvwci);
|
2019-05-15 17:39:27 +00:00
|
|
|
|
2019-07-19 02:17:15 +00:00
|
|
|
var type_vvvvwcj = jQuery("#jform_type").val();
|
|
|
|
vvvvwcj(type_vvvvwcj);
|
2019-06-12 20:06:19 +00:00
|
|
|
|
2019-07-19 02:17:15 +00:00
|
|
|
var type_vvvvwck = jQuery("#jform_type").val();
|
|
|
|
vvvvwck(type_vvvvwck);
|
2019-06-12 20:36:05 +00:00
|
|
|
|
2019-07-19 02:17:15 +00:00
|
|
|
var target_vvvvwcl = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
vvvvwcl(target_vvvvwcl);
|
2016-01-30 20:28:43 +00:00
|
|
|
});
|
|
|
|
|
2019-07-19 02:17:15 +00:00
|
|
|
// the vvvvwcg function
|
|
|
|
function vvvvwcg(location_vvvvwcg)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-19 02:17:15 +00:00
|
|
|
if (location_vvvvwcg == 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
|
2019-07-19 02:17:15 +00:00
|
|
|
if (jform_vvvvwcgvye_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');
|
2019-07-19 02:17:15 +00:00
|
|
|
jform_vvvvwcgvye_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
|
2019-07-19 02:17:15 +00:00
|
|
|
if (!jform_vvvvwcgvye_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');
|
2019-07-19 02:17:15 +00:00
|
|
|
jform_vvvvwcgvye_required = true;
|
2016-10-23 22:48:26 +00:00
|
|
|
}
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-19 02:17:15 +00:00
|
|
|
// the vvvvwch function
|
|
|
|
function vvvvwch(location_vvvvwch)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-19 02:17:15 +00:00
|
|
|
if (location_vvvvwch == 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
|
2019-07-19 02:17:15 +00:00
|
|
|
if (jform_vvvvwchvyf_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');
|
2019-07-19 02:17:15 +00:00
|
|
|
jform_vvvvwchvyf_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
|
2019-07-19 02:17:15 +00:00
|
|
|
if (!jform_vvvvwchvyf_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');
|
2019-07-19 02:17:15 +00:00
|
|
|
jform_vvvvwchvyf_required = true;
|
2016-10-23 22:48:26 +00:00
|
|
|
}
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-19 02:17:15 +00:00
|
|
|
// the vvvvwci function
|
|
|
|
function vvvvwci(type_vvvvwci)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2019-07-19 02:17:15 +00:00
|
|
|
if (isSet(type_vvvvwci) && type_vvvvwci.constructor !== Array)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2019-07-19 02:17:15 +00:00
|
|
|
var temp_vvvvwci = type_vvvvwci;
|
|
|
|
var type_vvvvwci = [];
|
|
|
|
type_vvvvwci.push(temp_vvvvwci);
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
2019-07-19 02:17:15 +00:00
|
|
|
else if (!isSet(type_vvvvwci))
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2019-07-19 02:17:15 +00:00
|
|
|
var type_vvvvwci = [];
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
2019-07-19 02:17:15 +00:00
|
|
|
var type = type_vvvvwci.some(type_vvvvwci_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
|
2019-07-19 02:17:15 +00:00
|
|
|
if (jform_vvvvwcivyg_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');
|
2019-07-19 02:17:15 +00:00
|
|
|
jform_vvvvwcivyg_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
|
2019-07-19 02:17:15 +00:00
|
|
|
if (!jform_vvvvwcivyg_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');
|
2019-07-19 02:17:15 +00:00
|
|
|
jform_vvvvwcivyg_required = true;
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-19 02:17:15 +00:00
|
|
|
// the vvvvwci Some function
|
|
|
|
function type_vvvvwci_SomeFunc(type_vvvvwci)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-19 02:17:15 +00:00
|
|
|
if (type_vvvvwci == 3)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-07-19 02:17:15 +00:00
|
|
|
// the vvvvwcj function
|
|
|
|
function vvvvwcj(type_vvvvwcj)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2019-07-19 02:17:15 +00:00
|
|
|
if (isSet(type_vvvvwcj) && type_vvvvwcj.constructor !== Array)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2019-07-19 02:17:15 +00:00
|
|
|
var temp_vvvvwcj = type_vvvvwcj;
|
|
|
|
var type_vvvvwcj = [];
|
|
|
|
type_vvvvwcj.push(temp_vvvvwcj);
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
2019-07-19 02:17:15 +00:00
|
|
|
else if (!isSet(type_vvvvwcj))
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2019-07-19 02:17:15 +00:00
|
|
|
var type_vvvvwcj = [];
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
2019-07-19 02:17:15 +00:00
|
|
|
var type = type_vvvvwcj.some(type_vvvvwcj_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
|
2019-07-19 02:17:15 +00:00
|
|
|
if (jform_vvvvwcjvyh_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');
|
2019-07-19 02:17:15 +00:00
|
|
|
jform_vvvvwcjvyh_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
|
2019-07-19 02:17:15 +00:00
|
|
|
if (!jform_vvvvwcjvyh_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');
|
2019-07-19 02:17:15 +00:00
|
|
|
jform_vvvvwcjvyh_required = true;
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-19 02:17:15 +00:00
|
|
|
// the vvvvwcj Some function
|
|
|
|
function type_vvvvwcj_SomeFunc(type_vvvvwcj)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-19 02:17:15 +00:00
|
|
|
if (type_vvvvwcj == 1)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-07-19 02:17:15 +00:00
|
|
|
// the vvvvwck function
|
|
|
|
function vvvvwck(type_vvvvwck)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2019-07-19 02:17:15 +00:00
|
|
|
if (isSet(type_vvvvwck) && type_vvvvwck.constructor !== Array)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2019-07-19 02:17:15 +00:00
|
|
|
var temp_vvvvwck = type_vvvvwck;
|
|
|
|
var type_vvvvwck = [];
|
|
|
|
type_vvvvwck.push(temp_vvvvwck);
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
2019-07-19 02:17:15 +00:00
|
|
|
else if (!isSet(type_vvvvwck))
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2019-07-19 02:17:15 +00:00
|
|
|
var type_vvvvwck = [];
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
2019-07-19 02:17:15 +00:00
|
|
|
var type = type_vvvvwck.some(type_vvvvwck_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-07-19 02:17:15 +00:00
|
|
|
// the vvvvwck Some function
|
|
|
|
function type_vvvvwck_SomeFunc(type_vvvvwck)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-19 02:17:15 +00:00
|
|
|
if (type_vvvvwck == 2)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-07-19 02:17:15 +00:00
|
|
|
// the vvvvwcl function
|
|
|
|
function vvvvwcl(target_vvvvwcl)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-19 02:17:15 +00:00
|
|
|
if (target_vvvvwcl == 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
|
2019-07-19 02:17:15 +00:00
|
|
|
if (jform_vvvvwclvyi_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');
|
2019-07-19 02:17:15 +00:00
|
|
|
jform_vvvvwclvyi_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
|
2019-07-19 02:17:15 +00:00
|
|
|
if (!jform_vvvvwclvyi_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');
|
2019-07-19 02:17:15 +00:00
|
|
|
jform_vvvvwclvyi_required = true;
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// update required fields
|
|
|
|
function updateFieldRequired(name,status)
|
|
|
|
{
|
|
|
|
var not_required = jQuery('#jform_not_required').val();
|
|
|
|
|
|
|
|
if(status == 1)
|
|
|
|
{
|
|
|
|
if (isSet(not_required) && not_required != 0)
|
|
|
|
{
|
|
|
|
not_required = not_required+','+name;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
not_required = ','+name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (isSet(not_required) && not_required != 0)
|
|
|
|
{
|
|
|
|
not_required = not_required.replace(','+name,'');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
jQuery('#jform_not_required').val(not_required);
|
|
|
|
}
|
|
|
|
|
|
|
|
// the isSet function
|
|
|
|
function isSet(val)
|
|
|
|
{
|
|
|
|
if ((val != undefined) && (val != null) && 0 !== val.length){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|