Removing repetable fields from site view, custom admin view, and admin view. Also updated the compiler, removed permissions on fields to speedup page load in admin and joomla component views

This commit is contained in:
2017-10-12 02:50:14 +02:00
parent c484306d21
commit 39e1e5f078
331 changed files with 4920 additions and 8617 deletions

View File

@ -23,42 +23,42 @@
/-----------------------------------------------------------------------------------------------------------------------------*/
// Some Global Values
jform_vvvvvysvyw_required = false;
jform_vvvvvytvyv_required = false;
// Initial Script
jQuery(document).ready(function()
{
var add_php_view_vvvvvys = jQuery("#jform_add_php_view input[type='radio']:checked").val();
vvvvvys(add_php_view_vvvvvys);
var add_php_view_vvvvvyt = jQuery("#jform_add_php_view input[type='radio']:checked").val();
vvvvvyt(add_php_view_vvvvvyt);
});
// the vvvvvys function
function vvvvvys(add_php_view_vvvvvys)
// the vvvvvyt function
function vvvvvyt(add_php_view_vvvvvyt)
{
// set the function logic
if (add_php_view_vvvvvys == 1)
if (add_php_view_vvvvvyt == 1)
{
jQuery('#jform_php_view').closest('.control-group').show();
if (jform_vvvvvysvyw_required)
if (jform_vvvvvytvyv_required)
{
updateFieldRequired('php_view',0);
jQuery('#jform_php_view').prop('required','required');
jQuery('#jform_php_view').attr('aria-required',true);
jQuery('#jform_php_view').addClass('required');
jform_vvvvvysvyw_required = false;
jform_vvvvvytvyv_required = false;
}
}
else
{
jQuery('#jform_php_view').closest('.control-group').hide();
if (!jform_vvvvvysvyw_required)
if (!jform_vvvvvytvyv_required)
{
updateFieldRequired('php_view',1);
jQuery('#jform_php_view').removeAttr('required');
jQuery('#jform_php_view').removeAttr('aria-required');
jQuery('#jform_php_view').removeClass('required');
jform_vvvvvysvyw_required = true;
jform_vvvvvytvyv_required = true;
}
}
}