Updated the compiler to now add GUI placeholders, resolved gh-451 so we now have easy roundtrip development beyond the original custom-code implementation. Added the files, folders, url option, and added the install fields to the new plugin area. gh-436

This commit is contained in:
2019-07-28 23:48:42 +02:00
parent affaeb72f8
commit 4581b310de
93 changed files with 9364 additions and 3232 deletions

View File

@ -9,112 +9,112 @@
*/
// Some Global Values
jform_vvvvwcgvye_required = false;
jform_vvvvwchvyf_required = false;
jform_vvvvwcivyg_required = false;
jform_vvvvwcjvyh_required = false;
jform_vvvvwclvyi_required = false;
jform_vvvvwcyvyh_required = false;
jform_vvvvwczvyi_required = false;
jform_vvvvwdavyj_required = false;
jform_vvvvwdbvyk_required = false;
jform_vvvvwddvyl_required = false;
// Initial Script
jQuery(document).ready(function()
{
var location_vvvvwcg = jQuery("#jform_location input[type='radio']:checked").val();
vvvvwcg(location_vvvvwcg);
var location_vvvvwcy = jQuery("#jform_location input[type='radio']:checked").val();
vvvvwcy(location_vvvvwcy);
var location_vvvvwch = jQuery("#jform_location input[type='radio']:checked").val();
vvvvwch(location_vvvvwch);
var location_vvvvwcz = jQuery("#jform_location input[type='radio']:checked").val();
vvvvwcz(location_vvvvwcz);
var type_vvvvwci = jQuery("#jform_type").val();
vvvvwci(type_vvvvwci);
var type_vvvvwda = jQuery("#jform_type").val();
vvvvwda(type_vvvvwda);
var type_vvvvwcj = jQuery("#jform_type").val();
vvvvwcj(type_vvvvwcj);
var type_vvvvwdb = jQuery("#jform_type").val();
vvvvwdb(type_vvvvwdb);
var type_vvvvwck = jQuery("#jform_type").val();
vvvvwck(type_vvvvwck);
var type_vvvvwdc = jQuery("#jform_type").val();
vvvvwdc(type_vvvvwdc);
var target_vvvvwcl = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcl(target_vvvvwcl);
var target_vvvvwdd = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwdd(target_vvvvwdd);
});
// the vvvvwcg function
function vvvvwcg(location_vvvvwcg)
// the vvvvwcy function
function vvvvwcy(location_vvvvwcy)
{
// set the function logic
if (location_vvvvwcg == 1)
if (location_vvvvwcy == 1)
{
jQuery('#jform_admin_view').closest('.control-group').show();
// add required attribute to admin_view field
if (jform_vvvvwcgvye_required)
if (jform_vvvvwcyvyh_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_vvvvwcgvye_required = false;
jform_vvvvwcyvyh_required = false;
}
}
else
{
jQuery('#jform_admin_view').closest('.control-group').hide();
// remove required attribute from admin_view field
if (!jform_vvvvwcgvye_required)
if (!jform_vvvvwcyvyh_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_vvvvwcgvye_required = true;
jform_vvvvwcyvyh_required = true;
}
}
}
// the vvvvwch function
function vvvvwch(location_vvvvwch)
// the vvvvwcz function
function vvvvwcz(location_vvvvwcz)
{
// set the function logic
if (location_vvvvwch == 2)
if (location_vvvvwcz == 2)
{
jQuery('#jform_site_view').closest('.control-group').show();
// add required attribute to site_view field
if (jform_vvvvwchvyf_required)
if (jform_vvvvwczvyi_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_vvvvwchvyf_required = false;
jform_vvvvwczvyi_required = false;
}
}
else
{
jQuery('#jform_site_view').closest('.control-group').hide();
// remove required attribute from site_view field
if (!jform_vvvvwchvyf_required)
if (!jform_vvvvwczvyi_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_vvvvwchvyf_required = true;
jform_vvvvwczvyi_required = true;
}
}
}
// the vvvvwci function
function vvvvwci(type_vvvvwci)
// the vvvvwda function
function vvvvwda(type_vvvvwda)
{
if (isSet(type_vvvvwci) && type_vvvvwci.constructor !== Array)
if (isSet(type_vvvvwda) && type_vvvvwda.constructor !== Array)
{
var temp_vvvvwci = type_vvvvwci;
var type_vvvvwci = [];
type_vvvvwci.push(temp_vvvvwci);
var temp_vvvvwda = type_vvvvwda;
var type_vvvvwda = [];
type_vvvvwda.push(temp_vvvvwda);
}
else if (!isSet(type_vvvvwci))
else if (!isSet(type_vvvvwda))
{
var type_vvvvwci = [];
var type_vvvvwda = [];
}
var type = type_vvvvwci.some(type_vvvvwci_SomeFunc);
var type = type_vvvvwda.some(type_vvvvwda_SomeFunc);
// set this function logic
@ -122,55 +122,55 @@ function vvvvwci(type_vvvvwci)
{
jQuery('#jform_url').closest('.control-group').show();
// add required attribute to url field
if (jform_vvvvwcivyg_required)
if (jform_vvvvwdavyj_required)
{
updateFieldRequired('url',0);
jQuery('#jform_url').prop('required','required');
jQuery('#jform_url').attr('aria-required',true);
jQuery('#jform_url').addClass('required');
jform_vvvvwcivyg_required = false;
jform_vvvvwdavyj_required = false;
}
}
else
{
jQuery('#jform_url').closest('.control-group').hide();
// remove required attribute from url field
if (!jform_vvvvwcivyg_required)
if (!jform_vvvvwdavyj_required)
{
updateFieldRequired('url',1);
jQuery('#jform_url').removeAttr('required');
jQuery('#jform_url').removeAttr('aria-required');
jQuery('#jform_url').removeClass('required');
jform_vvvvwcivyg_required = true;
jform_vvvvwdavyj_required = true;
}
}
}
// the vvvvwci Some function
function type_vvvvwci_SomeFunc(type_vvvvwci)
// the vvvvwda Some function
function type_vvvvwda_SomeFunc(type_vvvvwda)
{
// set the function logic
if (type_vvvvwci == 3)
if (type_vvvvwda == 3)
{
return true;
}
return false;
}
// the vvvvwcj function
function vvvvwcj(type_vvvvwcj)
// the vvvvwdb function
function vvvvwdb(type_vvvvwdb)
{
if (isSet(type_vvvvwcj) && type_vvvvwcj.constructor !== Array)
if (isSet(type_vvvvwdb) && type_vvvvwdb.constructor !== Array)
{
var temp_vvvvwcj = type_vvvvwcj;
var type_vvvvwcj = [];
type_vvvvwcj.push(temp_vvvvwcj);
var temp_vvvvwdb = type_vvvvwdb;
var type_vvvvwdb = [];
type_vvvvwdb.push(temp_vvvvwdb);
}
else if (!isSet(type_vvvvwcj))
else if (!isSet(type_vvvvwdb))
{
var type_vvvvwcj = [];
var type_vvvvwdb = [];
}
var type = type_vvvvwcj.some(type_vvvvwcj_SomeFunc);
var type = type_vvvvwdb.some(type_vvvvwdb_SomeFunc);
// set this function logic
@ -178,55 +178,55 @@ function vvvvwcj(type_vvvvwcj)
{
jQuery('#jform_article').closest('.control-group').show();
// add required attribute to article field
if (jform_vvvvwcjvyh_required)
if (jform_vvvvwdbvyk_required)
{
updateFieldRequired('article',0);
jQuery('#jform_article').prop('required','required');
jQuery('#jform_article').attr('aria-required',true);
jQuery('#jform_article').addClass('required');
jform_vvvvwcjvyh_required = false;
jform_vvvvwdbvyk_required = false;
}
}
else
{
jQuery('#jform_article').closest('.control-group').hide();
// remove required attribute from article field
if (!jform_vvvvwcjvyh_required)
if (!jform_vvvvwdbvyk_required)
{
updateFieldRequired('article',1);
jQuery('#jform_article').removeAttr('required');
jQuery('#jform_article').removeAttr('aria-required');
jQuery('#jform_article').removeClass('required');
jform_vvvvwcjvyh_required = true;
jform_vvvvwdbvyk_required = true;
}
}
}
// the vvvvwcj Some function
function type_vvvvwcj_SomeFunc(type_vvvvwcj)
// the vvvvwdb Some function
function type_vvvvwdb_SomeFunc(type_vvvvwdb)
{
// set the function logic
if (type_vvvvwcj == 1)
if (type_vvvvwdb == 1)
{
return true;
}
return false;
}
// the vvvvwck function
function vvvvwck(type_vvvvwck)
// the vvvvwdc function
function vvvvwdc(type_vvvvwdc)
{
if (isSet(type_vvvvwck) && type_vvvvwck.constructor !== Array)
if (isSet(type_vvvvwdc) && type_vvvvwdc.constructor !== Array)
{
var temp_vvvvwck = type_vvvvwck;
var type_vvvvwck = [];
type_vvvvwck.push(temp_vvvvwck);
var temp_vvvvwdc = type_vvvvwdc;
var type_vvvvwdc = [];
type_vvvvwdc.push(temp_vvvvwdc);
}
else if (!isSet(type_vvvvwck))
else if (!isSet(type_vvvvwdc))
{
var type_vvvvwck = [];
var type_vvvvwdc = [];
}
var type = type_vvvvwck.some(type_vvvvwck_SomeFunc);
var type = type_vvvvwdc.some(type_vvvvwdc_SomeFunc);
// set this function logic
@ -240,45 +240,45 @@ function vvvvwck(type_vvvvwck)
}
}
// the vvvvwck Some function
function type_vvvvwck_SomeFunc(type_vvvvwck)
// the vvvvwdc Some function
function type_vvvvwdc_SomeFunc(type_vvvvwdc)
{
// set the function logic
if (type_vvvvwck == 2)
if (type_vvvvwdc == 2)
{
return true;
}
return false;
}
// the vvvvwcl function
function vvvvwcl(target_vvvvwcl)
// the vvvvwdd function
function vvvvwdd(target_vvvvwdd)
{
// set the function logic
if (target_vvvvwcl == 1)
if (target_vvvvwdd == 1)
{
jQuery('#jform_groups').closest('.control-group').show();
// add required attribute to groups field
if (jform_vvvvwclvyi_required)
if (jform_vvvvwddvyl_required)
{
updateFieldRequired('groups',0);
jQuery('#jform_groups').prop('required','required');
jQuery('#jform_groups').attr('aria-required',true);
jQuery('#jform_groups').addClass('required');
jform_vvvvwclvyi_required = false;
jform_vvvvwddvyl_required = false;
}
}
else
{
jQuery('#jform_groups').closest('.control-group').hide();
// remove required attribute from groups field
if (!jform_vvvvwclvyi_required)
if (!jform_vvvvwddvyl_required)
{
updateFieldRequired('groups',1);
jQuery('#jform_groups').removeAttr('required');
jQuery('#jform_groups').removeAttr('aria-required');
jQuery('#jform_groups').removeClass('required');
jform_vvvvwclvyi_required = true;
jform_vvvvwddvyl_required = true;
}
}
}