Resolved gh-441 to allow fieldtype name prefixing. Resolved gh-443 to allow Alphanumeric+dot in fieldtype name. Fixed gh-446 to insure that JFormRuleInt validates correctly in the admin field realtions. Improved the new plugin area to also have system name and option to add custom header code. gh-436

This commit is contained in:
2019-07-19 04:17:15 +02:00
parent a5ae94b93a
commit affaeb72f8
77 changed files with 4338 additions and 3890 deletions

View File

@ -9,112 +9,112 @@
*/
// Some Global Values
jform_vvvvwcdvyd_required = false;
jform_vvvvwcevye_required = false;
jform_vvvvwcfvyf_required = false;
jform_vvvvwcgvyg_required = false;
jform_vvvvwcivyh_required = false;
jform_vvvvwcgvye_required = false;
jform_vvvvwchvyf_required = false;
jform_vvvvwcivyg_required = false;
jform_vvvvwcjvyh_required = false;
jform_vvvvwclvyi_required = false;
// Initial Script
jQuery(document).ready(function()
{
var location_vvvvwcd = jQuery("#jform_location input[type='radio']:checked").val();
vvvvwcd(location_vvvvwcd);
var location_vvvvwcg = jQuery("#jform_location input[type='radio']:checked").val();
vvvvwcg(location_vvvvwcg);
var location_vvvvwce = jQuery("#jform_location input[type='radio']:checked").val();
vvvvwce(location_vvvvwce);
var location_vvvvwch = jQuery("#jform_location input[type='radio']:checked").val();
vvvvwch(location_vvvvwch);
var type_vvvvwcf = jQuery("#jform_type").val();
vvvvwcf(type_vvvvwcf);
var type_vvvvwci = jQuery("#jform_type").val();
vvvvwci(type_vvvvwci);
var type_vvvvwcg = jQuery("#jform_type").val();
vvvvwcg(type_vvvvwcg);
var type_vvvvwcj = jQuery("#jform_type").val();
vvvvwcj(type_vvvvwcj);
var type_vvvvwch = jQuery("#jform_type").val();
vvvvwch(type_vvvvwch);
var type_vvvvwck = jQuery("#jform_type").val();
vvvvwck(type_vvvvwck);
var target_vvvvwci = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwci(target_vvvvwci);
var target_vvvvwcl = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcl(target_vvvvwcl);
});
// the vvvvwcd function
function vvvvwcd(location_vvvvwcd)
// the vvvvwcg function
function vvvvwcg(location_vvvvwcg)
{
// set the function logic
if (location_vvvvwcd == 1)
if (location_vvvvwcg == 1)
{
jQuery('#jform_admin_view').closest('.control-group').show();
// add required attribute to admin_view field
if (jform_vvvvwcdvyd_required)
if (jform_vvvvwcgvye_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_vvvvwcdvyd_required = false;
jform_vvvvwcgvye_required = false;
}
}
else
{
jQuery('#jform_admin_view').closest('.control-group').hide();
// remove required attribute from admin_view field
if (!jform_vvvvwcdvyd_required)
if (!jform_vvvvwcgvye_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_vvvvwcdvyd_required = true;
jform_vvvvwcgvye_required = true;
}
}
}
// the vvvvwce function
function vvvvwce(location_vvvvwce)
// the vvvvwch function
function vvvvwch(location_vvvvwch)
{
// set the function logic
if (location_vvvvwce == 2)
if (location_vvvvwch == 2)
{
jQuery('#jform_site_view').closest('.control-group').show();
// add required attribute to site_view field
if (jform_vvvvwcevye_required)
if (jform_vvvvwchvyf_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_vvvvwcevye_required = false;
jform_vvvvwchvyf_required = false;
}
}
else
{
jQuery('#jform_site_view').closest('.control-group').hide();
// remove required attribute from site_view field
if (!jform_vvvvwcevye_required)
if (!jform_vvvvwchvyf_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_vvvvwcevye_required = true;
jform_vvvvwchvyf_required = true;
}
}
}
// the vvvvwcf function
function vvvvwcf(type_vvvvwcf)
// the vvvvwci function
function vvvvwci(type_vvvvwci)
{
if (isSet(type_vvvvwcf) && type_vvvvwcf.constructor !== Array)
if (isSet(type_vvvvwci) && type_vvvvwci.constructor !== Array)
{
var temp_vvvvwcf = type_vvvvwcf;
var type_vvvvwcf = [];
type_vvvvwcf.push(temp_vvvvwcf);
var temp_vvvvwci = type_vvvvwci;
var type_vvvvwci = [];
type_vvvvwci.push(temp_vvvvwci);
}
else if (!isSet(type_vvvvwcf))
else if (!isSet(type_vvvvwci))
{
var type_vvvvwcf = [];
var type_vvvvwci = [];
}
var type = type_vvvvwcf.some(type_vvvvwcf_SomeFunc);
var type = type_vvvvwci.some(type_vvvvwci_SomeFunc);
// set this function logic
@ -122,55 +122,55 @@ function vvvvwcf(type_vvvvwcf)
{
jQuery('#jform_url').closest('.control-group').show();
// add required attribute to url field
if (jform_vvvvwcfvyf_required)
if (jform_vvvvwcivyg_required)
{
updateFieldRequired('url',0);
jQuery('#jform_url').prop('required','required');
jQuery('#jform_url').attr('aria-required',true);
jQuery('#jform_url').addClass('required');
jform_vvvvwcfvyf_required = false;
jform_vvvvwcivyg_required = false;
}
}
else
{
jQuery('#jform_url').closest('.control-group').hide();
// remove required attribute from url field
if (!jform_vvvvwcfvyf_required)
if (!jform_vvvvwcivyg_required)
{
updateFieldRequired('url',1);
jQuery('#jform_url').removeAttr('required');
jQuery('#jform_url').removeAttr('aria-required');
jQuery('#jform_url').removeClass('required');
jform_vvvvwcfvyf_required = true;
jform_vvvvwcivyg_required = true;
}
}
}
// the vvvvwcf Some function
function type_vvvvwcf_SomeFunc(type_vvvvwcf)
// the vvvvwci Some function
function type_vvvvwci_SomeFunc(type_vvvvwci)
{
// set the function logic
if (type_vvvvwcf == 3)
if (type_vvvvwci == 3)
{
return true;
}
return false;
}
// the vvvvwcg function
function vvvvwcg(type_vvvvwcg)
// the vvvvwcj function
function vvvvwcj(type_vvvvwcj)
{
if (isSet(type_vvvvwcg) && type_vvvvwcg.constructor !== Array)
if (isSet(type_vvvvwcj) && type_vvvvwcj.constructor !== Array)
{
var temp_vvvvwcg = type_vvvvwcg;
var type_vvvvwcg = [];
type_vvvvwcg.push(temp_vvvvwcg);
var temp_vvvvwcj = type_vvvvwcj;
var type_vvvvwcj = [];
type_vvvvwcj.push(temp_vvvvwcj);
}
else if (!isSet(type_vvvvwcg))
else if (!isSet(type_vvvvwcj))
{
var type_vvvvwcg = [];
var type_vvvvwcj = [];
}
var type = type_vvvvwcg.some(type_vvvvwcg_SomeFunc);
var type = type_vvvvwcj.some(type_vvvvwcj_SomeFunc);
// set this function logic
@ -178,55 +178,55 @@ function vvvvwcg(type_vvvvwcg)
{
jQuery('#jform_article').closest('.control-group').show();
// add required attribute to article field
if (jform_vvvvwcgvyg_required)
if (jform_vvvvwcjvyh_required)
{
updateFieldRequired('article',0);
jQuery('#jform_article').prop('required','required');
jQuery('#jform_article').attr('aria-required',true);
jQuery('#jform_article').addClass('required');
jform_vvvvwcgvyg_required = false;
jform_vvvvwcjvyh_required = false;
}
}
else
{
jQuery('#jform_article').closest('.control-group').hide();
// remove required attribute from article field
if (!jform_vvvvwcgvyg_required)
if (!jform_vvvvwcjvyh_required)
{
updateFieldRequired('article',1);
jQuery('#jform_article').removeAttr('required');
jQuery('#jform_article').removeAttr('aria-required');
jQuery('#jform_article').removeClass('required');
jform_vvvvwcgvyg_required = true;
jform_vvvvwcjvyh_required = true;
}
}
}
// the vvvvwcg Some function
function type_vvvvwcg_SomeFunc(type_vvvvwcg)
// the vvvvwcj Some function
function type_vvvvwcj_SomeFunc(type_vvvvwcj)
{
// set the function logic
if (type_vvvvwcg == 1)
if (type_vvvvwcj == 1)
{
return true;
}
return false;
}
// the vvvvwch function
function vvvvwch(type_vvvvwch)
// the vvvvwck function
function vvvvwck(type_vvvvwck)
{
if (isSet(type_vvvvwch) && type_vvvvwch.constructor !== Array)
if (isSet(type_vvvvwck) && type_vvvvwck.constructor !== Array)
{
var temp_vvvvwch = type_vvvvwch;
var type_vvvvwch = [];
type_vvvvwch.push(temp_vvvvwch);
var temp_vvvvwck = type_vvvvwck;
var type_vvvvwck = [];
type_vvvvwck.push(temp_vvvvwck);
}
else if (!isSet(type_vvvvwch))
else if (!isSet(type_vvvvwck))
{
var type_vvvvwch = [];
var type_vvvvwck = [];
}
var type = type_vvvvwch.some(type_vvvvwch_SomeFunc);
var type = type_vvvvwck.some(type_vvvvwck_SomeFunc);
// set this function logic
@ -240,45 +240,45 @@ function vvvvwch(type_vvvvwch)
}
}
// the vvvvwch Some function
function type_vvvvwch_SomeFunc(type_vvvvwch)
// the vvvvwck Some function
function type_vvvvwck_SomeFunc(type_vvvvwck)
{
// set the function logic
if (type_vvvvwch == 2)
if (type_vvvvwck == 2)
{
return true;
}
return false;
}
// the vvvvwci function
function vvvvwci(target_vvvvwci)
// the vvvvwcl function
function vvvvwcl(target_vvvvwcl)
{
// set the function logic
if (target_vvvvwci == 1)
if (target_vvvvwcl == 1)
{
jQuery('#jform_groups').closest('.control-group').show();
// add required attribute to groups field
if (jform_vvvvwcivyh_required)
if (jform_vvvvwclvyi_required)
{
updateFieldRequired('groups',0);
jQuery('#jform_groups').prop('required','required');
jQuery('#jform_groups').attr('aria-required',true);
jQuery('#jform_groups').addClass('required');
jform_vvvvwcivyh_required = false;
jform_vvvvwclvyi_required = false;
}
}
else
{
jQuery('#jform_groups').closest('.control-group').hide();
// remove required attribute from groups field
if (!jform_vvvvwcivyh_required)
if (!jform_vvvvwclvyi_required)
{
updateFieldRequired('groups',1);
jQuery('#jform_groups').removeAttr('required');
jQuery('#jform_groups').removeAttr('aria-required');
jQuery('#jform_groups').removeClass('required');
jform_vvvvwcivyh_required = true;
jform_vvvvwclvyi_required = true;
}
}
}