Added Captcha field type. Started adding the crowdin integration.
This commit is contained in:
@ -9,180 +9,42 @@
|
||||
*/
|
||||
|
||||
// Some Global Values
|
||||
jform_vvvvwbmwan_required = false;
|
||||
jform_vvvvwbmwao_required = false;
|
||||
jform_vvvvwbmwap_required = false;
|
||||
jform_vvvvwbmwaq_required = false;
|
||||
jform_vvvvwbmwar_required = false;
|
||||
jform_vvvvwbnwaq_required = false;
|
||||
jform_vvvvwbnwar_required = false;
|
||||
jform_vvvvwbnwas_required = false;
|
||||
jform_vvvvwbowat_required = false;
|
||||
jform_vvvvwbqwau_required = false;
|
||||
jform_vvvvwbswav_required = false;
|
||||
jform_vvvvwbnwat_required = false;
|
||||
jform_vvvvwbnwau_required = false;
|
||||
jform_vvvvwbowav_required = false;
|
||||
jform_vvvvwbpwaw_required = false;
|
||||
jform_vvvvwbrwax_required = false;
|
||||
jform_vvvvwbtway_required = false;
|
||||
|
||||
// Initial Script
|
||||
jQuery(document).ready(function()
|
||||
{
|
||||
var protocol_vvvvwbm = jQuery("#jform_protocol").val();
|
||||
vvvvwbm(protocol_vvvvwbm);
|
||||
|
||||
var protocol_vvvvwbn = jQuery("#jform_protocol").val();
|
||||
vvvvwbn(protocol_vvvvwbn);
|
||||
|
||||
var protocol_vvvvwbo = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwbo = jQuery("#jform_authentication").val();
|
||||
vvvvwbo(protocol_vvvvwbo,authentication_vvvvwbo);
|
||||
vvvvwbo(protocol_vvvvwbo);
|
||||
|
||||
var protocol_vvvvwbq = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwbq = jQuery("#jform_authentication").val();
|
||||
vvvvwbq(protocol_vvvvwbq,authentication_vvvvwbq);
|
||||
var protocol_vvvvwbp = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwbp = jQuery("#jform_authentication").val();
|
||||
vvvvwbp(protocol_vvvvwbp,authentication_vvvvwbp);
|
||||
|
||||
var protocol_vvvvwbs = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwbs = jQuery("#jform_authentication").val();
|
||||
vvvvwbs(protocol_vvvvwbs,authentication_vvvvwbs);
|
||||
var protocol_vvvvwbr = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwbr = jQuery("#jform_authentication").val();
|
||||
vvvvwbr(protocol_vvvvwbr,authentication_vvvvwbr);
|
||||
|
||||
var protocol_vvvvwbu = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwbu = jQuery("#jform_authentication").val();
|
||||
vvvvwbu(protocol_vvvvwbu,authentication_vvvvwbu);
|
||||
var protocol_vvvvwbt = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwbt = jQuery("#jform_authentication").val();
|
||||
vvvvwbt(protocol_vvvvwbt,authentication_vvvvwbt);
|
||||
|
||||
var protocol_vvvvwbv = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwbv = jQuery("#jform_authentication").val();
|
||||
vvvvwbv(protocol_vvvvwbv,authentication_vvvvwbv);
|
||||
});
|
||||
|
||||
// the vvvvwbm function
|
||||
function vvvvwbm(protocol_vvvvwbm)
|
||||
{
|
||||
if (isSet(protocol_vvvvwbm) && protocol_vvvvwbm.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwbm = protocol_vvvvwbm;
|
||||
var protocol_vvvvwbm = [];
|
||||
protocol_vvvvwbm.push(temp_vvvvwbm);
|
||||
}
|
||||
else if (!isSet(protocol_vvvvwbm))
|
||||
{
|
||||
var protocol_vvvvwbm = [];
|
||||
}
|
||||
var protocol = protocol_vvvvwbm.some(protocol_vvvvwbm_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (protocol)
|
||||
{
|
||||
jQuery('#jform_authentication').closest('.control-group').show();
|
||||
// add required attribute to authentication field
|
||||
if (jform_vvvvwbmwan_required)
|
||||
{
|
||||
updateFieldRequired('authentication',0);
|
||||
jQuery('#jform_authentication').prop('required','required');
|
||||
jQuery('#jform_authentication').attr('aria-required',true);
|
||||
jQuery('#jform_authentication').addClass('required');
|
||||
jform_vvvvwbmwan_required = false;
|
||||
}
|
||||
jQuery('#jform_host').closest('.control-group').show();
|
||||
// add required attribute to host field
|
||||
if (jform_vvvvwbmwao_required)
|
||||
{
|
||||
updateFieldRequired('host',0);
|
||||
jQuery('#jform_host').prop('required','required');
|
||||
jQuery('#jform_host').attr('aria-required',true);
|
||||
jQuery('#jform_host').addClass('required');
|
||||
jform_vvvvwbmwao_required = false;
|
||||
}
|
||||
jQuery('#jform_port').closest('.control-group').show();
|
||||
// add required attribute to port field
|
||||
if (jform_vvvvwbmwap_required)
|
||||
{
|
||||
updateFieldRequired('port',0);
|
||||
jQuery('#jform_port').prop('required','required');
|
||||
jQuery('#jform_port').attr('aria-required',true);
|
||||
jQuery('#jform_port').addClass('required');
|
||||
jform_vvvvwbmwap_required = false;
|
||||
}
|
||||
jQuery('#jform_path').closest('.control-group').show();
|
||||
// add required attribute to path field
|
||||
if (jform_vvvvwbmwaq_required)
|
||||
{
|
||||
updateFieldRequired('path',0);
|
||||
jQuery('#jform_path').prop('required','required');
|
||||
jQuery('#jform_path').attr('aria-required',true);
|
||||
jQuery('#jform_path').addClass('required');
|
||||
jform_vvvvwbmwaq_required = false;
|
||||
}
|
||||
jQuery('.note_ssh_security').closest('.control-group').show();
|
||||
jQuery('#jform_username').closest('.control-group').show();
|
||||
// add required attribute to username field
|
||||
if (jform_vvvvwbmwar_required)
|
||||
{
|
||||
updateFieldRequired('username',0);
|
||||
jQuery('#jform_username').prop('required','required');
|
||||
jQuery('#jform_username').attr('aria-required',true);
|
||||
jQuery('#jform_username').addClass('required');
|
||||
jform_vvvvwbmwar_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_authentication').closest('.control-group').hide();
|
||||
// remove required attribute from authentication field
|
||||
if (!jform_vvvvwbmwan_required)
|
||||
{
|
||||
updateFieldRequired('authentication',1);
|
||||
jQuery('#jform_authentication').removeAttr('required');
|
||||
jQuery('#jform_authentication').removeAttr('aria-required');
|
||||
jQuery('#jform_authentication').removeClass('required');
|
||||
jform_vvvvwbmwan_required = true;
|
||||
}
|
||||
jQuery('#jform_host').closest('.control-group').hide();
|
||||
// remove required attribute from host field
|
||||
if (!jform_vvvvwbmwao_required)
|
||||
{
|
||||
updateFieldRequired('host',1);
|
||||
jQuery('#jform_host').removeAttr('required');
|
||||
jQuery('#jform_host').removeAttr('aria-required');
|
||||
jQuery('#jform_host').removeClass('required');
|
||||
jform_vvvvwbmwao_required = true;
|
||||
}
|
||||
jQuery('#jform_port').closest('.control-group').hide();
|
||||
// remove required attribute from port field
|
||||
if (!jform_vvvvwbmwap_required)
|
||||
{
|
||||
updateFieldRequired('port',1);
|
||||
jQuery('#jform_port').removeAttr('required');
|
||||
jQuery('#jform_port').removeAttr('aria-required');
|
||||
jQuery('#jform_port').removeClass('required');
|
||||
jform_vvvvwbmwap_required = true;
|
||||
}
|
||||
jQuery('#jform_path').closest('.control-group').hide();
|
||||
// remove required attribute from path field
|
||||
if (!jform_vvvvwbmwaq_required)
|
||||
{
|
||||
updateFieldRequired('path',1);
|
||||
jQuery('#jform_path').removeAttr('required');
|
||||
jQuery('#jform_path').removeAttr('aria-required');
|
||||
jQuery('#jform_path').removeClass('required');
|
||||
jform_vvvvwbmwaq_required = true;
|
||||
}
|
||||
jQuery('.note_ssh_security').closest('.control-group').hide();
|
||||
jQuery('#jform_username').closest('.control-group').hide();
|
||||
// remove required attribute from username field
|
||||
if (!jform_vvvvwbmwar_required)
|
||||
{
|
||||
updateFieldRequired('username',1);
|
||||
jQuery('#jform_username').removeAttr('required');
|
||||
jQuery('#jform_username').removeAttr('aria-required');
|
||||
jQuery('#jform_username').removeClass('required');
|
||||
jform_vvvvwbmwar_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwbm Some function
|
||||
function protocol_vvvvwbm_SomeFunc(protocol_vvvvwbm)
|
||||
{
|
||||
// set the function logic
|
||||
if (protocol_vvvvwbm == 2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwbn function
|
||||
function vvvvwbn(protocol_vvvvwbn)
|
||||
{
|
||||
@ -202,31 +64,111 @@ function vvvvwbn(protocol_vvvvwbn)
|
||||
// set this function logic
|
||||
if (protocol)
|
||||
{
|
||||
jQuery('.note_ftp_signature').closest('.control-group').show();
|
||||
jQuery('#jform_signature').closest('.control-group').show();
|
||||
// add required attribute to signature field
|
||||
jQuery('#jform_authentication').closest('.control-group').show();
|
||||
// add required attribute to authentication field
|
||||
if (jform_vvvvwbnwaq_required)
|
||||
{
|
||||
updateFieldRequired('authentication',0);
|
||||
jQuery('#jform_authentication').prop('required','required');
|
||||
jQuery('#jform_authentication').attr('aria-required',true);
|
||||
jQuery('#jform_authentication').addClass('required');
|
||||
jform_vvvvwbnwaq_required = false;
|
||||
}
|
||||
jQuery('#jform_host').closest('.control-group').show();
|
||||
// add required attribute to host field
|
||||
if (jform_vvvvwbnwar_required)
|
||||
{
|
||||
updateFieldRequired('host',0);
|
||||
jQuery('#jform_host').prop('required','required');
|
||||
jQuery('#jform_host').attr('aria-required',true);
|
||||
jQuery('#jform_host').addClass('required');
|
||||
jform_vvvvwbnwar_required = false;
|
||||
}
|
||||
jQuery('#jform_port').closest('.control-group').show();
|
||||
// add required attribute to port field
|
||||
if (jform_vvvvwbnwas_required)
|
||||
{
|
||||
updateFieldRequired('signature',0);
|
||||
jQuery('#jform_signature').prop('required','required');
|
||||
jQuery('#jform_signature').attr('aria-required',true);
|
||||
jQuery('#jform_signature').addClass('required');
|
||||
updateFieldRequired('port',0);
|
||||
jQuery('#jform_port').prop('required','required');
|
||||
jQuery('#jform_port').attr('aria-required',true);
|
||||
jQuery('#jform_port').addClass('required');
|
||||
jform_vvvvwbnwas_required = false;
|
||||
}
|
||||
jQuery('#jform_path').closest('.control-group').show();
|
||||
// add required attribute to path field
|
||||
if (jform_vvvvwbnwat_required)
|
||||
{
|
||||
updateFieldRequired('path',0);
|
||||
jQuery('#jform_path').prop('required','required');
|
||||
jQuery('#jform_path').attr('aria-required',true);
|
||||
jQuery('#jform_path').addClass('required');
|
||||
jform_vvvvwbnwat_required = false;
|
||||
}
|
||||
jQuery('.note_ssh_security').closest('.control-group').show();
|
||||
jQuery('#jform_username').closest('.control-group').show();
|
||||
// add required attribute to username field
|
||||
if (jform_vvvvwbnwau_required)
|
||||
{
|
||||
updateFieldRequired('username',0);
|
||||
jQuery('#jform_username').prop('required','required');
|
||||
jQuery('#jform_username').attr('aria-required',true);
|
||||
jQuery('#jform_username').addClass('required');
|
||||
jform_vvvvwbnwau_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('.note_ftp_signature').closest('.control-group').hide();
|
||||
jQuery('#jform_signature').closest('.control-group').hide();
|
||||
// remove required attribute from signature field
|
||||
jQuery('#jform_authentication').closest('.control-group').hide();
|
||||
// remove required attribute from authentication field
|
||||
if (!jform_vvvvwbnwaq_required)
|
||||
{
|
||||
updateFieldRequired('authentication',1);
|
||||
jQuery('#jform_authentication').removeAttr('required');
|
||||
jQuery('#jform_authentication').removeAttr('aria-required');
|
||||
jQuery('#jform_authentication').removeClass('required');
|
||||
jform_vvvvwbnwaq_required = true;
|
||||
}
|
||||
jQuery('#jform_host').closest('.control-group').hide();
|
||||
// remove required attribute from host field
|
||||
if (!jform_vvvvwbnwar_required)
|
||||
{
|
||||
updateFieldRequired('host',1);
|
||||
jQuery('#jform_host').removeAttr('required');
|
||||
jQuery('#jform_host').removeAttr('aria-required');
|
||||
jQuery('#jform_host').removeClass('required');
|
||||
jform_vvvvwbnwar_required = true;
|
||||
}
|
||||
jQuery('#jform_port').closest('.control-group').hide();
|
||||
// remove required attribute from port field
|
||||
if (!jform_vvvvwbnwas_required)
|
||||
{
|
||||
updateFieldRequired('signature',1);
|
||||
jQuery('#jform_signature').removeAttr('required');
|
||||
jQuery('#jform_signature').removeAttr('aria-required');
|
||||
jQuery('#jform_signature').removeClass('required');
|
||||
updateFieldRequired('port',1);
|
||||
jQuery('#jform_port').removeAttr('required');
|
||||
jQuery('#jform_port').removeAttr('aria-required');
|
||||
jQuery('#jform_port').removeClass('required');
|
||||
jform_vvvvwbnwas_required = true;
|
||||
}
|
||||
jQuery('#jform_path').closest('.control-group').hide();
|
||||
// remove required attribute from path field
|
||||
if (!jform_vvvvwbnwat_required)
|
||||
{
|
||||
updateFieldRequired('path',1);
|
||||
jQuery('#jform_path').removeAttr('required');
|
||||
jQuery('#jform_path').removeAttr('aria-required');
|
||||
jQuery('#jform_path').removeClass('required');
|
||||
jform_vvvvwbnwat_required = true;
|
||||
}
|
||||
jQuery('.note_ssh_security').closest('.control-group').hide();
|
||||
jQuery('#jform_username').closest('.control-group').hide();
|
||||
// remove required attribute from username field
|
||||
if (!jform_vvvvwbnwau_required)
|
||||
{
|
||||
updateFieldRequired('username',1);
|
||||
jQuery('#jform_username').removeAttr('required');
|
||||
jQuery('#jform_username').removeAttr('aria-required');
|
||||
jQuery('#jform_username').removeClass('required');
|
||||
jform_vvvvwbnwau_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -234,7 +176,7 @@ function vvvvwbn(protocol_vvvvwbn)
|
||||
function protocol_vvvvwbn_SomeFunc(protocol_vvvvwbn)
|
||||
{
|
||||
// set the function logic
|
||||
if (protocol_vvvvwbn == 1)
|
||||
if (protocol_vvvvwbn == 2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
@ -242,7 +184,7 @@ function protocol_vvvvwbn_SomeFunc(protocol_vvvvwbn)
|
||||
}
|
||||
|
||||
// the vvvvwbo function
|
||||
function vvvvwbo(protocol_vvvvwbo,authentication_vvvvwbo)
|
||||
function vvvvwbo(protocol_vvvvwbo)
|
||||
{
|
||||
if (isSet(protocol_vvvvwbo) && protocol_vvvvwbo.constructor !== Array)
|
||||
{
|
||||
@ -256,44 +198,34 @@ function vvvvwbo(protocol_vvvvwbo,authentication_vvvvwbo)
|
||||
}
|
||||
var protocol = protocol_vvvvwbo.some(protocol_vvvvwbo_SomeFunc);
|
||||
|
||||
if (isSet(authentication_vvvvwbo) && authentication_vvvvwbo.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwbo = authentication_vvvvwbo;
|
||||
var authentication_vvvvwbo = [];
|
||||
authentication_vvvvwbo.push(temp_vvvvwbo);
|
||||
}
|
||||
else if (!isSet(authentication_vvvvwbo))
|
||||
{
|
||||
var authentication_vvvvwbo = [];
|
||||
}
|
||||
var authentication = authentication_vvvvwbo.some(authentication_vvvvwbo_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (protocol && authentication)
|
||||
if (protocol)
|
||||
{
|
||||
jQuery('#jform_password').closest('.control-group').show();
|
||||
// add required attribute to password field
|
||||
if (jform_vvvvwbowat_required)
|
||||
jQuery('.note_ftp_signature').closest('.control-group').show();
|
||||
jQuery('#jform_signature').closest('.control-group').show();
|
||||
// add required attribute to signature field
|
||||
if (jform_vvvvwbowav_required)
|
||||
{
|
||||
updateFieldRequired('password',0);
|
||||
jQuery('#jform_password').prop('required','required');
|
||||
jQuery('#jform_password').attr('aria-required',true);
|
||||
jQuery('#jform_password').addClass('required');
|
||||
jform_vvvvwbowat_required = false;
|
||||
updateFieldRequired('signature',0);
|
||||
jQuery('#jform_signature').prop('required','required');
|
||||
jQuery('#jform_signature').attr('aria-required',true);
|
||||
jQuery('#jform_signature').addClass('required');
|
||||
jform_vvvvwbowav_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_password').closest('.control-group').hide();
|
||||
// remove required attribute from password field
|
||||
if (!jform_vvvvwbowat_required)
|
||||
jQuery('.note_ftp_signature').closest('.control-group').hide();
|
||||
jQuery('#jform_signature').closest('.control-group').hide();
|
||||
// remove required attribute from signature field
|
||||
if (!jform_vvvvwbowav_required)
|
||||
{
|
||||
updateFieldRequired('password',1);
|
||||
jQuery('#jform_password').removeAttr('required');
|
||||
jQuery('#jform_password').removeAttr('aria-required');
|
||||
jQuery('#jform_password').removeClass('required');
|
||||
jform_vvvvwbowat_required = true;
|
||||
updateFieldRequired('signature',1);
|
||||
jQuery('#jform_signature').removeAttr('required');
|
||||
jQuery('#jform_signature').removeAttr('aria-required');
|
||||
jQuery('#jform_signature').removeClass('required');
|
||||
jform_vvvvwbowav_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -302,50 +234,118 @@ function vvvvwbo(protocol_vvvvwbo,authentication_vvvvwbo)
|
||||
function protocol_vvvvwbo_SomeFunc(protocol_vvvvwbo)
|
||||
{
|
||||
// set the function logic
|
||||
if (protocol_vvvvwbo == 2)
|
||||
if (protocol_vvvvwbo == 1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwbo Some function
|
||||
function authentication_vvvvwbo_SomeFunc(authentication_vvvvwbo)
|
||||
// the vvvvwbp function
|
||||
function vvvvwbp(protocol_vvvvwbp,authentication_vvvvwbp)
|
||||
{
|
||||
if (isSet(protocol_vvvvwbp) && protocol_vvvvwbp.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwbp = protocol_vvvvwbp;
|
||||
var protocol_vvvvwbp = [];
|
||||
protocol_vvvvwbp.push(temp_vvvvwbp);
|
||||
}
|
||||
else if (!isSet(protocol_vvvvwbp))
|
||||
{
|
||||
var protocol_vvvvwbp = [];
|
||||
}
|
||||
var protocol = protocol_vvvvwbp.some(protocol_vvvvwbp_SomeFunc);
|
||||
|
||||
if (isSet(authentication_vvvvwbp) && authentication_vvvvwbp.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwbp = authentication_vvvvwbp;
|
||||
var authentication_vvvvwbp = [];
|
||||
authentication_vvvvwbp.push(temp_vvvvwbp);
|
||||
}
|
||||
else if (!isSet(authentication_vvvvwbp))
|
||||
{
|
||||
var authentication_vvvvwbp = [];
|
||||
}
|
||||
var authentication = authentication_vvvvwbp.some(authentication_vvvvwbp_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (protocol && authentication)
|
||||
{
|
||||
jQuery('#jform_password').closest('.control-group').show();
|
||||
// add required attribute to password field
|
||||
if (jform_vvvvwbpwaw_required)
|
||||
{
|
||||
updateFieldRequired('password',0);
|
||||
jQuery('#jform_password').prop('required','required');
|
||||
jQuery('#jform_password').attr('aria-required',true);
|
||||
jQuery('#jform_password').addClass('required');
|
||||
jform_vvvvwbpwaw_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_password').closest('.control-group').hide();
|
||||
// remove required attribute from password field
|
||||
if (!jform_vvvvwbpwaw_required)
|
||||
{
|
||||
updateFieldRequired('password',1);
|
||||
jQuery('#jform_password').removeAttr('required');
|
||||
jQuery('#jform_password').removeAttr('aria-required');
|
||||
jQuery('#jform_password').removeClass('required');
|
||||
jform_vvvvwbpwaw_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwbp Some function
|
||||
function protocol_vvvvwbp_SomeFunc(protocol_vvvvwbp)
|
||||
{
|
||||
// set the function logic
|
||||
if (authentication_vvvvwbo == 1 || authentication_vvvvwbo == 3 || authentication_vvvvwbo == 5)
|
||||
if (protocol_vvvvwbp == 2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwbq function
|
||||
function vvvvwbq(protocol_vvvvwbq,authentication_vvvvwbq)
|
||||
// the vvvvwbp Some function
|
||||
function authentication_vvvvwbp_SomeFunc(authentication_vvvvwbp)
|
||||
{
|
||||
if (isSet(protocol_vvvvwbq) && protocol_vvvvwbq.constructor !== Array)
|
||||
// set the function logic
|
||||
if (authentication_vvvvwbp == 1 || authentication_vvvvwbp == 3 || authentication_vvvvwbp == 5)
|
||||
{
|
||||
var temp_vvvvwbq = protocol_vvvvwbq;
|
||||
var protocol_vvvvwbq = [];
|
||||
protocol_vvvvwbq.push(temp_vvvvwbq);
|
||||
return true;
|
||||
}
|
||||
else if (!isSet(protocol_vvvvwbq))
|
||||
{
|
||||
var protocol_vvvvwbq = [];
|
||||
}
|
||||
var protocol = protocol_vvvvwbq.some(protocol_vvvvwbq_SomeFunc);
|
||||
return false;
|
||||
}
|
||||
|
||||
if (isSet(authentication_vvvvwbq) && authentication_vvvvwbq.constructor !== Array)
|
||||
// the vvvvwbr function
|
||||
function vvvvwbr(protocol_vvvvwbr,authentication_vvvvwbr)
|
||||
{
|
||||
if (isSet(protocol_vvvvwbr) && protocol_vvvvwbr.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwbq = authentication_vvvvwbq;
|
||||
var authentication_vvvvwbq = [];
|
||||
authentication_vvvvwbq.push(temp_vvvvwbq);
|
||||
var temp_vvvvwbr = protocol_vvvvwbr;
|
||||
var protocol_vvvvwbr = [];
|
||||
protocol_vvvvwbr.push(temp_vvvvwbr);
|
||||
}
|
||||
else if (!isSet(authentication_vvvvwbq))
|
||||
else if (!isSet(protocol_vvvvwbr))
|
||||
{
|
||||
var authentication_vvvvwbq = [];
|
||||
var protocol_vvvvwbr = [];
|
||||
}
|
||||
var authentication = authentication_vvvvwbq.some(authentication_vvvvwbq_SomeFunc);
|
||||
var protocol = protocol_vvvvwbr.some(protocol_vvvvwbr_SomeFunc);
|
||||
|
||||
if (isSet(authentication_vvvvwbr) && authentication_vvvvwbr.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwbr = authentication_vvvvwbr;
|
||||
var authentication_vvvvwbr = [];
|
||||
authentication_vvvvwbr.push(temp_vvvvwbr);
|
||||
}
|
||||
else if (!isSet(authentication_vvvvwbr))
|
||||
{
|
||||
var authentication_vvvvwbr = [];
|
||||
}
|
||||
var authentication = authentication_vvvvwbr.some(authentication_vvvvwbr_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
@ -353,78 +353,78 @@ function vvvvwbq(protocol_vvvvwbq,authentication_vvvvwbq)
|
||||
{
|
||||
jQuery('#jform_private').closest('.control-group').show();
|
||||
// add required attribute to private field
|
||||
if (jform_vvvvwbqwau_required)
|
||||
if (jform_vvvvwbrwax_required)
|
||||
{
|
||||
updateFieldRequired('private',0);
|
||||
jQuery('#jform_private').prop('required','required');
|
||||
jQuery('#jform_private').attr('aria-required',true);
|
||||
jQuery('#jform_private').addClass('required');
|
||||
jform_vvvvwbqwau_required = false;
|
||||
jform_vvvvwbrwax_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_private').closest('.control-group').hide();
|
||||
// remove required attribute from private field
|
||||
if (!jform_vvvvwbqwau_required)
|
||||
if (!jform_vvvvwbrwax_required)
|
||||
{
|
||||
updateFieldRequired('private',1);
|
||||
jQuery('#jform_private').removeAttr('required');
|
||||
jQuery('#jform_private').removeAttr('aria-required');
|
||||
jQuery('#jform_private').removeClass('required');
|
||||
jform_vvvvwbqwau_required = true;
|
||||
jform_vvvvwbrwax_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwbq Some function
|
||||
function protocol_vvvvwbq_SomeFunc(protocol_vvvvwbq)
|
||||
// the vvvvwbr Some function
|
||||
function protocol_vvvvwbr_SomeFunc(protocol_vvvvwbr)
|
||||
{
|
||||
// set the function logic
|
||||
if (protocol_vvvvwbq == 2)
|
||||
if (protocol_vvvvwbr == 2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwbq Some function
|
||||
function authentication_vvvvwbq_SomeFunc(authentication_vvvvwbq)
|
||||
// the vvvvwbr Some function
|
||||
function authentication_vvvvwbr_SomeFunc(authentication_vvvvwbr)
|
||||
{
|
||||
// set the function logic
|
||||
if (authentication_vvvvwbq == 2 || authentication_vvvvwbq == 3)
|
||||
if (authentication_vvvvwbr == 2 || authentication_vvvvwbr == 3)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwbs function
|
||||
function vvvvwbs(protocol_vvvvwbs,authentication_vvvvwbs)
|
||||
// the vvvvwbt function
|
||||
function vvvvwbt(protocol_vvvvwbt,authentication_vvvvwbt)
|
||||
{
|
||||
if (isSet(protocol_vvvvwbs) && protocol_vvvvwbs.constructor !== Array)
|
||||
if (isSet(protocol_vvvvwbt) && protocol_vvvvwbt.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwbs = protocol_vvvvwbs;
|
||||
var protocol_vvvvwbs = [];
|
||||
protocol_vvvvwbs.push(temp_vvvvwbs);
|
||||
var temp_vvvvwbt = protocol_vvvvwbt;
|
||||
var protocol_vvvvwbt = [];
|
||||
protocol_vvvvwbt.push(temp_vvvvwbt);
|
||||
}
|
||||
else if (!isSet(protocol_vvvvwbs))
|
||||
else if (!isSet(protocol_vvvvwbt))
|
||||
{
|
||||
var protocol_vvvvwbs = [];
|
||||
var protocol_vvvvwbt = [];
|
||||
}
|
||||
var protocol = protocol_vvvvwbs.some(protocol_vvvvwbs_SomeFunc);
|
||||
var protocol = protocol_vvvvwbt.some(protocol_vvvvwbt_SomeFunc);
|
||||
|
||||
if (isSet(authentication_vvvvwbs) && authentication_vvvvwbs.constructor !== Array)
|
||||
if (isSet(authentication_vvvvwbt) && authentication_vvvvwbt.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwbs = authentication_vvvvwbs;
|
||||
var authentication_vvvvwbs = [];
|
||||
authentication_vvvvwbs.push(temp_vvvvwbs);
|
||||
var temp_vvvvwbt = authentication_vvvvwbt;
|
||||
var authentication_vvvvwbt = [];
|
||||
authentication_vvvvwbt.push(temp_vvvvwbt);
|
||||
}
|
||||
else if (!isSet(authentication_vvvvwbs))
|
||||
else if (!isSet(authentication_vvvvwbt))
|
||||
{
|
||||
var authentication_vvvvwbs = [];
|
||||
var authentication_vvvvwbt = [];
|
||||
}
|
||||
var authentication = authentication_vvvvwbs.some(authentication_vvvvwbs_SomeFunc);
|
||||
var authentication = authentication_vvvvwbt.some(authentication_vvvvwbt_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
@ -432,78 +432,78 @@ function vvvvwbs(protocol_vvvvwbs,authentication_vvvvwbs)
|
||||
{
|
||||
jQuery('#jform_private_key').closest('.control-group').show();
|
||||
// add required attribute to private_key field
|
||||
if (jform_vvvvwbswav_required)
|
||||
if (jform_vvvvwbtway_required)
|
||||
{
|
||||
updateFieldRequired('private_key',0);
|
||||
jQuery('#jform_private_key').prop('required','required');
|
||||
jQuery('#jform_private_key').attr('aria-required',true);
|
||||
jQuery('#jform_private_key').addClass('required');
|
||||
jform_vvvvwbswav_required = false;
|
||||
jform_vvvvwbtway_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_private_key').closest('.control-group').hide();
|
||||
// remove required attribute from private_key field
|
||||
if (!jform_vvvvwbswav_required)
|
||||
if (!jform_vvvvwbtway_required)
|
||||
{
|
||||
updateFieldRequired('private_key',1);
|
||||
jQuery('#jform_private_key').removeAttr('required');
|
||||
jQuery('#jform_private_key').removeAttr('aria-required');
|
||||
jQuery('#jform_private_key').removeClass('required');
|
||||
jform_vvvvwbswav_required = true;
|
||||
jform_vvvvwbtway_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwbs Some function
|
||||
function protocol_vvvvwbs_SomeFunc(protocol_vvvvwbs)
|
||||
// the vvvvwbt Some function
|
||||
function protocol_vvvvwbt_SomeFunc(protocol_vvvvwbt)
|
||||
{
|
||||
// set the function logic
|
||||
if (protocol_vvvvwbs == 2)
|
||||
if (protocol_vvvvwbt == 2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwbs Some function
|
||||
function authentication_vvvvwbs_SomeFunc(authentication_vvvvwbs)
|
||||
// the vvvvwbt Some function
|
||||
function authentication_vvvvwbt_SomeFunc(authentication_vvvvwbt)
|
||||
{
|
||||
// set the function logic
|
||||
if (authentication_vvvvwbs == 4 || authentication_vvvvwbs == 5)
|
||||
if (authentication_vvvvwbt == 4 || authentication_vvvvwbt == 5)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwbu function
|
||||
function vvvvwbu(protocol_vvvvwbu,authentication_vvvvwbu)
|
||||
// the vvvvwbv function
|
||||
function vvvvwbv(protocol_vvvvwbv,authentication_vvvvwbv)
|
||||
{
|
||||
if (isSet(protocol_vvvvwbu) && protocol_vvvvwbu.constructor !== Array)
|
||||
if (isSet(protocol_vvvvwbv) && protocol_vvvvwbv.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwbu = protocol_vvvvwbu;
|
||||
var protocol_vvvvwbu = [];
|
||||
protocol_vvvvwbu.push(temp_vvvvwbu);
|
||||
var temp_vvvvwbv = protocol_vvvvwbv;
|
||||
var protocol_vvvvwbv = [];
|
||||
protocol_vvvvwbv.push(temp_vvvvwbv);
|
||||
}
|
||||
else if (!isSet(protocol_vvvvwbu))
|
||||
else if (!isSet(protocol_vvvvwbv))
|
||||
{
|
||||
var protocol_vvvvwbu = [];
|
||||
var protocol_vvvvwbv = [];
|
||||
}
|
||||
var protocol = protocol_vvvvwbu.some(protocol_vvvvwbu_SomeFunc);
|
||||
var protocol = protocol_vvvvwbv.some(protocol_vvvvwbv_SomeFunc);
|
||||
|
||||
if (isSet(authentication_vvvvwbu) && authentication_vvvvwbu.constructor !== Array)
|
||||
if (isSet(authentication_vvvvwbv) && authentication_vvvvwbv.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwbu = authentication_vvvvwbu;
|
||||
var authentication_vvvvwbu = [];
|
||||
authentication_vvvvwbu.push(temp_vvvvwbu);
|
||||
var temp_vvvvwbv = authentication_vvvvwbv;
|
||||
var authentication_vvvvwbv = [];
|
||||
authentication_vvvvwbv.push(temp_vvvvwbv);
|
||||
}
|
||||
else if (!isSet(authentication_vvvvwbu))
|
||||
else if (!isSet(authentication_vvvvwbv))
|
||||
{
|
||||
var authentication_vvvvwbu = [];
|
||||
var authentication_vvvvwbv = [];
|
||||
}
|
||||
var authentication = authentication_vvvvwbu.some(authentication_vvvvwbu_SomeFunc);
|
||||
var authentication = authentication_vvvvwbv.some(authentication_vvvvwbv_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
@ -517,22 +517,22 @@ function vvvvwbu(protocol_vvvvwbu,authentication_vvvvwbu)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwbu Some function
|
||||
function protocol_vvvvwbu_SomeFunc(protocol_vvvvwbu)
|
||||
// the vvvvwbv Some function
|
||||
function protocol_vvvvwbv_SomeFunc(protocol_vvvvwbv)
|
||||
{
|
||||
// set the function logic
|
||||
if (protocol_vvvvwbu == 2)
|
||||
if (protocol_vvvvwbv == 2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwbu Some function
|
||||
function authentication_vvvvwbu_SomeFunc(authentication_vvvvwbu)
|
||||
// the vvvvwbv Some function
|
||||
function authentication_vvvvwbv_SomeFunc(authentication_vvvvwbv)
|
||||
{
|
||||
// set the function logic
|
||||
if (authentication_vvvvwbu == 2 || authentication_vvvvwbu == 3 || authentication_vvvvwbu == 4 || authentication_vvvvwbu == 5)
|
||||
if (authentication_vvvvwbv == 2 || authentication_vvvvwbv == 3 || authentication_vvvvwbv == 4 || authentication_vvvvwbv == 5)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user