Added Captcha field type. Started adding the crowdin integration.
This commit is contained in:
@ -9,24 +9,21 @@
|
||||
*/
|
||||
|
||||
// Some Global Values
|
||||
jform_vvvvwbwwax_required = false;
|
||||
jform_vvvvwbxway_required = false;
|
||||
jform_vvvvwbywaz_required = false;
|
||||
jform_vvvvwbzwba_required = false;
|
||||
jform_vvvvwcawbb_required = false;
|
||||
jform_vvvvwcbwbc_required = false;
|
||||
jform_vvvvwbxwba_required = false;
|
||||
jform_vvvvwbywbb_required = false;
|
||||
jform_vvvvwbzwbc_required = false;
|
||||
jform_vvvvwcawbd_required = false;
|
||||
jform_vvvvwcbwbe_required = false;
|
||||
jform_vvvvwccwbf_required = false;
|
||||
|
||||
// Initial Script
|
||||
jQuery(document).ready(function()
|
||||
{
|
||||
var location_vvvvwbw = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvwbw(location_vvvvwbw);
|
||||
|
||||
var location_vvvvwbx = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvwbx(location_vvvvwbx);
|
||||
|
||||
var type_vvvvwby = jQuery("#jform_type").val();
|
||||
vvvvwby(type_vvvvwby);
|
||||
var location_vvvvwby = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvwby(location_vvvvwby);
|
||||
|
||||
var type_vvvvwbz = jQuery("#jform_type").val();
|
||||
vvvvwbz(type_vvvvwbz);
|
||||
@ -34,130 +31,77 @@ jQuery(document).ready(function()
|
||||
var type_vvvvwca = jQuery("#jform_type").val();
|
||||
vvvvwca(type_vvvvwca);
|
||||
|
||||
var target_vvvvwcb = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcb(target_vvvvwcb);
|
||||
var type_vvvvwcb = jQuery("#jform_type").val();
|
||||
vvvvwcb(type_vvvvwcb);
|
||||
|
||||
var target_vvvvwcc = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcc(target_vvvvwcc);
|
||||
});
|
||||
|
||||
// the vvvvwbw function
|
||||
function vvvvwbw(location_vvvvwbw)
|
||||
// the vvvvwbx function
|
||||
function vvvvwbx(location_vvvvwbx)
|
||||
{
|
||||
// set the function logic
|
||||
if (location_vvvvwbw == 1)
|
||||
if (location_vvvvwbx == 1)
|
||||
{
|
||||
jQuery('#jform_admin_view').closest('.control-group').show();
|
||||
// add required attribute to admin_view field
|
||||
if (jform_vvvvwbwwax_required)
|
||||
if (jform_vvvvwbxwba_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_vvvvwbwwax_required = false;
|
||||
jform_vvvvwbxwba_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_admin_view').closest('.control-group').hide();
|
||||
// remove required attribute from admin_view field
|
||||
if (!jform_vvvvwbwwax_required)
|
||||
if (!jform_vvvvwbxwba_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_vvvvwbwwax_required = true;
|
||||
jform_vvvvwbxwba_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwbx function
|
||||
function vvvvwbx(location_vvvvwbx)
|
||||
// the vvvvwby function
|
||||
function vvvvwby(location_vvvvwby)
|
||||
{
|
||||
// set the function logic
|
||||
if (location_vvvvwbx == 2)
|
||||
if (location_vvvvwby == 2)
|
||||
{
|
||||
jQuery('#jform_site_view').closest('.control-group').show();
|
||||
// add required attribute to site_view field
|
||||
if (jform_vvvvwbxway_required)
|
||||
if (jform_vvvvwbywbb_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_vvvvwbxway_required = false;
|
||||
jform_vvvvwbywbb_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_site_view').closest('.control-group').hide();
|
||||
// remove required attribute from site_view field
|
||||
if (!jform_vvvvwbxway_required)
|
||||
if (!jform_vvvvwbywbb_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_vvvvwbxway_required = true;
|
||||
jform_vvvvwbywbb_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwby function
|
||||
function vvvvwby(type_vvvvwby)
|
||||
{
|
||||
if (isSet(type_vvvvwby) && type_vvvvwby.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwby = type_vvvvwby;
|
||||
var type_vvvvwby = [];
|
||||
type_vvvvwby.push(temp_vvvvwby);
|
||||
}
|
||||
else if (!isSet(type_vvvvwby))
|
||||
{
|
||||
var type_vvvvwby = [];
|
||||
}
|
||||
var type = type_vvvvwby.some(type_vvvvwby_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (type)
|
||||
{
|
||||
jQuery('#jform_url').closest('.control-group').show();
|
||||
// add required attribute to url field
|
||||
if (jform_vvvvwbywaz_required)
|
||||
{
|
||||
updateFieldRequired('url',0);
|
||||
jQuery('#jform_url').prop('required','required');
|
||||
jQuery('#jform_url').attr('aria-required',true);
|
||||
jQuery('#jform_url').addClass('required');
|
||||
jform_vvvvwbywaz_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_url').closest('.control-group').hide();
|
||||
// remove required attribute from url field
|
||||
if (!jform_vvvvwbywaz_required)
|
||||
{
|
||||
updateFieldRequired('url',1);
|
||||
jQuery('#jform_url').removeAttr('required');
|
||||
jQuery('#jform_url').removeAttr('aria-required');
|
||||
jQuery('#jform_url').removeClass('required');
|
||||
jform_vvvvwbywaz_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwby Some function
|
||||
function type_vvvvwby_SomeFunc(type_vvvvwby)
|
||||
{
|
||||
// set the function logic
|
||||
if (type_vvvvwby == 3)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwbz function
|
||||
function vvvvwbz(type_vvvvwbz)
|
||||
{
|
||||
@ -177,28 +121,28 @@ function vvvvwbz(type_vvvvwbz)
|
||||
// set this function logic
|
||||
if (type)
|
||||
{
|
||||
jQuery('#jform_article').closest('.control-group').show();
|
||||
// add required attribute to article field
|
||||
if (jform_vvvvwbzwba_required)
|
||||
jQuery('#jform_url').closest('.control-group').show();
|
||||
// add required attribute to url field
|
||||
if (jform_vvvvwbzwbc_required)
|
||||
{
|
||||
updateFieldRequired('article',0);
|
||||
jQuery('#jform_article').prop('required','required');
|
||||
jQuery('#jform_article').attr('aria-required',true);
|
||||
jQuery('#jform_article').addClass('required');
|
||||
jform_vvvvwbzwba_required = false;
|
||||
updateFieldRequired('url',0);
|
||||
jQuery('#jform_url').prop('required','required');
|
||||
jQuery('#jform_url').attr('aria-required',true);
|
||||
jQuery('#jform_url').addClass('required');
|
||||
jform_vvvvwbzwbc_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_article').closest('.control-group').hide();
|
||||
// remove required attribute from article field
|
||||
if (!jform_vvvvwbzwba_required)
|
||||
jQuery('#jform_url').closest('.control-group').hide();
|
||||
// remove required attribute from url field
|
||||
if (!jform_vvvvwbzwbc_required)
|
||||
{
|
||||
updateFieldRequired('article',1);
|
||||
jQuery('#jform_article').removeAttr('required');
|
||||
jQuery('#jform_article').removeAttr('aria-required');
|
||||
jQuery('#jform_article').removeClass('required');
|
||||
jform_vvvvwbzwba_required = true;
|
||||
updateFieldRequired('url',1);
|
||||
jQuery('#jform_url').removeAttr('required');
|
||||
jQuery('#jform_url').removeAttr('aria-required');
|
||||
jQuery('#jform_url').removeClass('required');
|
||||
jform_vvvvwbzwbc_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -207,7 +151,7 @@ function vvvvwbz(type_vvvvwbz)
|
||||
function type_vvvvwbz_SomeFunc(type_vvvvwbz)
|
||||
{
|
||||
// set the function logic
|
||||
if (type_vvvvwbz == 1)
|
||||
if (type_vvvvwbz == 3)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
@ -233,28 +177,28 @@ function vvvvwca(type_vvvvwca)
|
||||
// set this function logic
|
||||
if (type)
|
||||
{
|
||||
jQuery('#jform_content-lbl').closest('.control-group').show();
|
||||
// add required attribute to content field
|
||||
if (jform_vvvvwcawbb_required)
|
||||
jQuery('#jform_article').closest('.control-group').show();
|
||||
// add required attribute to article field
|
||||
if (jform_vvvvwcawbd_required)
|
||||
{
|
||||
updateFieldRequired('content',0);
|
||||
jQuery('#jform_content').prop('required','required');
|
||||
jQuery('#jform_content').attr('aria-required',true);
|
||||
jQuery('#jform_content').addClass('required');
|
||||
jform_vvvvwcawbb_required = false;
|
||||
updateFieldRequired('article',0);
|
||||
jQuery('#jform_article').prop('required','required');
|
||||
jQuery('#jform_article').attr('aria-required',true);
|
||||
jQuery('#jform_article').addClass('required');
|
||||
jform_vvvvwcawbd_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_content-lbl').closest('.control-group').hide();
|
||||
// remove required attribute from content field
|
||||
if (!jform_vvvvwcawbb_required)
|
||||
jQuery('#jform_article').closest('.control-group').hide();
|
||||
// remove required attribute from article field
|
||||
if (!jform_vvvvwcawbd_required)
|
||||
{
|
||||
updateFieldRequired('content',1);
|
||||
jQuery('#jform_content').removeAttr('required');
|
||||
jQuery('#jform_content').removeAttr('aria-required');
|
||||
jQuery('#jform_content').removeClass('required');
|
||||
jform_vvvvwcawbb_required = true;
|
||||
updateFieldRequired('article',1);
|
||||
jQuery('#jform_article').removeAttr('required');
|
||||
jQuery('#jform_article').removeAttr('aria-required');
|
||||
jQuery('#jform_article').removeClass('required');
|
||||
jform_vvvvwcawbd_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -263,7 +207,7 @@ function vvvvwca(type_vvvvwca)
|
||||
function type_vvvvwca_SomeFunc(type_vvvvwca)
|
||||
{
|
||||
// set the function logic
|
||||
if (type_vvvvwca == 2)
|
||||
if (type_vvvvwca == 1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
@ -271,33 +215,89 @@ function type_vvvvwca_SomeFunc(type_vvvvwca)
|
||||
}
|
||||
|
||||
// the vvvvwcb function
|
||||
function vvvvwcb(target_vvvvwcb)
|
||||
function vvvvwcb(type_vvvvwcb)
|
||||
{
|
||||
if (isSet(type_vvvvwcb) && type_vvvvwcb.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcb = type_vvvvwcb;
|
||||
var type_vvvvwcb = [];
|
||||
type_vvvvwcb.push(temp_vvvvwcb);
|
||||
}
|
||||
else if (!isSet(type_vvvvwcb))
|
||||
{
|
||||
var type_vvvvwcb = [];
|
||||
}
|
||||
var type = type_vvvvwcb.some(type_vvvvwcb_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (type)
|
||||
{
|
||||
jQuery('#jform_content-lbl').closest('.control-group').show();
|
||||
// add required attribute to content field
|
||||
if (jform_vvvvwcbwbe_required)
|
||||
{
|
||||
updateFieldRequired('content',0);
|
||||
jQuery('#jform_content').prop('required','required');
|
||||
jQuery('#jform_content').attr('aria-required',true);
|
||||
jQuery('#jform_content').addClass('required');
|
||||
jform_vvvvwcbwbe_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_content-lbl').closest('.control-group').hide();
|
||||
// remove required attribute from content field
|
||||
if (!jform_vvvvwcbwbe_required)
|
||||
{
|
||||
updateFieldRequired('content',1);
|
||||
jQuery('#jform_content').removeAttr('required');
|
||||
jQuery('#jform_content').removeAttr('aria-required');
|
||||
jQuery('#jform_content').removeClass('required');
|
||||
jform_vvvvwcbwbe_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcb Some function
|
||||
function type_vvvvwcb_SomeFunc(type_vvvvwcb)
|
||||
{
|
||||
// set the function logic
|
||||
if (target_vvvvwcb == 1)
|
||||
if (type_vvvvwcb == 2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcc function
|
||||
function vvvvwcc(target_vvvvwcc)
|
||||
{
|
||||
// set the function logic
|
||||
if (target_vvvvwcc == 1)
|
||||
{
|
||||
jQuery('#jform_groups').closest('.control-group').show();
|
||||
// add required attribute to groups field
|
||||
if (jform_vvvvwcbwbc_required)
|
||||
if (jform_vvvvwccwbf_required)
|
||||
{
|
||||
updateFieldRequired('groups',0);
|
||||
jQuery('#jform_groups').prop('required','required');
|
||||
jQuery('#jform_groups').attr('aria-required',true);
|
||||
jQuery('#jform_groups').addClass('required');
|
||||
jform_vvvvwcbwbc_required = false;
|
||||
jform_vvvvwccwbf_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_groups').closest('.control-group').hide();
|
||||
// remove required attribute from groups field
|
||||
if (!jform_vvvvwcbwbc_required)
|
||||
if (!jform_vvvvwccwbf_required)
|
||||
{
|
||||
updateFieldRequired('groups',1);
|
||||
jQuery('#jform_groups').removeAttr('required');
|
||||
jQuery('#jform_groups').removeAttr('aria-required');
|
||||
jQuery('#jform_groups').removeClass('required');
|
||||
jform_vvvvwcbwbc_required = true;
|
||||
jform_vvvvwccwbf_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user