Stable Release of version 2.10.5

This commit is contained in:
2019-11-09 14:49:20 +02:00
parent 04c080d460
commit 1a18f5a386
19 changed files with 1624 additions and 1586 deletions

View File

@ -9,180 +9,42 @@
*/
// Some Global Values
jform_vvvvwddvyj_required = false;
jform_vvvvwddvyk_required = false;
jform_vvvvwddvyl_required = false;
jform_vvvvwddvym_required = false;
jform_vvvvwddvyn_required = false;
jform_vvvvwdevyo_required = false;
jform_vvvvwdfvyp_required = false;
jform_vvvvwdhvyq_required = false;
jform_vvvvwdjvyr_required = false;
jform_vvvvwdevyj_required = false;
jform_vvvvwdevyk_required = false;
jform_vvvvwdevyl_required = false;
jform_vvvvwdevym_required = false;
jform_vvvvwdevyn_required = false;
jform_vvvvwdfvyo_required = false;
jform_vvvvwdgvyp_required = false;
jform_vvvvwdivyq_required = false;
jform_vvvvwdkvyr_required = false;
// Initial Script
jQuery(document).ready(function()
{
var protocol_vvvvwdd = jQuery("#jform_protocol").val();
vvvvwdd(protocol_vvvvwdd);
var protocol_vvvvwde = jQuery("#jform_protocol").val();
vvvvwde(protocol_vvvvwde);
var protocol_vvvvwdf = jQuery("#jform_protocol").val();
var authentication_vvvvwdf = jQuery("#jform_authentication").val();
vvvvwdf(protocol_vvvvwdf,authentication_vvvvwdf);
vvvvwdf(protocol_vvvvwdf);
var protocol_vvvvwdh = jQuery("#jform_protocol").val();
var authentication_vvvvwdh = jQuery("#jform_authentication").val();
vvvvwdh(protocol_vvvvwdh,authentication_vvvvwdh);
var protocol_vvvvwdg = jQuery("#jform_protocol").val();
var authentication_vvvvwdg = jQuery("#jform_authentication").val();
vvvvwdg(protocol_vvvvwdg,authentication_vvvvwdg);
var protocol_vvvvwdj = jQuery("#jform_protocol").val();
var authentication_vvvvwdj = jQuery("#jform_authentication").val();
vvvvwdj(protocol_vvvvwdj,authentication_vvvvwdj);
var protocol_vvvvwdi = jQuery("#jform_protocol").val();
var authentication_vvvvwdi = jQuery("#jform_authentication").val();
vvvvwdi(protocol_vvvvwdi,authentication_vvvvwdi);
var protocol_vvvvwdl = jQuery("#jform_protocol").val();
var authentication_vvvvwdl = jQuery("#jform_authentication").val();
vvvvwdl(protocol_vvvvwdl,authentication_vvvvwdl);
var protocol_vvvvwdk = jQuery("#jform_protocol").val();
var authentication_vvvvwdk = jQuery("#jform_authentication").val();
vvvvwdk(protocol_vvvvwdk,authentication_vvvvwdk);
var protocol_vvvvwdm = jQuery("#jform_protocol").val();
var authentication_vvvvwdm = jQuery("#jform_authentication").val();
vvvvwdm(protocol_vvvvwdm,authentication_vvvvwdm);
});
// the vvvvwdd function
function vvvvwdd(protocol_vvvvwdd)
{
if (isSet(protocol_vvvvwdd) && protocol_vvvvwdd.constructor !== Array)
{
var temp_vvvvwdd = protocol_vvvvwdd;
var protocol_vvvvwdd = [];
protocol_vvvvwdd.push(temp_vvvvwdd);
}
else if (!isSet(protocol_vvvvwdd))
{
var protocol_vvvvwdd = [];
}
var protocol = protocol_vvvvwdd.some(protocol_vvvvwdd_SomeFunc);
// set this function logic
if (protocol)
{
jQuery('#jform_authentication').closest('.control-group').show();
// add required attribute to authentication field
if (jform_vvvvwddvyj_required)
{
updateFieldRequired('authentication',0);
jQuery('#jform_authentication').prop('required','required');
jQuery('#jform_authentication').attr('aria-required',true);
jQuery('#jform_authentication').addClass('required');
jform_vvvvwddvyj_required = false;
}
jQuery('#jform_host').closest('.control-group').show();
// add required attribute to host field
if (jform_vvvvwddvyk_required)
{
updateFieldRequired('host',0);
jQuery('#jform_host').prop('required','required');
jQuery('#jform_host').attr('aria-required',true);
jQuery('#jform_host').addClass('required');
jform_vvvvwddvyk_required = false;
}
jQuery('#jform_port').closest('.control-group').show();
// add required attribute to port field
if (jform_vvvvwddvyl_required)
{
updateFieldRequired('port',0);
jQuery('#jform_port').prop('required','required');
jQuery('#jform_port').attr('aria-required',true);
jQuery('#jform_port').addClass('required');
jform_vvvvwddvyl_required = false;
}
jQuery('#jform_path').closest('.control-group').show();
// add required attribute to path field
if (jform_vvvvwddvym_required)
{
updateFieldRequired('path',0);
jQuery('#jform_path').prop('required','required');
jQuery('#jform_path').attr('aria-required',true);
jQuery('#jform_path').addClass('required');
jform_vvvvwddvym_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_vvvvwddvyn_required)
{
updateFieldRequired('username',0);
jQuery('#jform_username').prop('required','required');
jQuery('#jform_username').attr('aria-required',true);
jQuery('#jform_username').addClass('required');
jform_vvvvwddvyn_required = false;
}
}
else
{
jQuery('#jform_authentication').closest('.control-group').hide();
// remove required attribute from authentication field
if (!jform_vvvvwddvyj_required)
{
updateFieldRequired('authentication',1);
jQuery('#jform_authentication').removeAttr('required');
jQuery('#jform_authentication').removeAttr('aria-required');
jQuery('#jform_authentication').removeClass('required');
jform_vvvvwddvyj_required = true;
}
jQuery('#jform_host').closest('.control-group').hide();
// remove required attribute from host field
if (!jform_vvvvwddvyk_required)
{
updateFieldRequired('host',1);
jQuery('#jform_host').removeAttr('required');
jQuery('#jform_host').removeAttr('aria-required');
jQuery('#jform_host').removeClass('required');
jform_vvvvwddvyk_required = true;
}
jQuery('#jform_port').closest('.control-group').hide();
// remove required attribute from port field
if (!jform_vvvvwddvyl_required)
{
updateFieldRequired('port',1);
jQuery('#jform_port').removeAttr('required');
jQuery('#jform_port').removeAttr('aria-required');
jQuery('#jform_port').removeClass('required');
jform_vvvvwddvyl_required = true;
}
jQuery('#jform_path').closest('.control-group').hide();
// remove required attribute from path field
if (!jform_vvvvwddvym_required)
{
updateFieldRequired('path',1);
jQuery('#jform_path').removeAttr('required');
jQuery('#jform_path').removeAttr('aria-required');
jQuery('#jform_path').removeClass('required');
jform_vvvvwddvym_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_vvvvwddvyn_required)
{
updateFieldRequired('username',1);
jQuery('#jform_username').removeAttr('required');
jQuery('#jform_username').removeAttr('aria-required');
jQuery('#jform_username').removeClass('required');
jform_vvvvwddvyn_required = true;
}
}
}
// the vvvvwdd Some function
function protocol_vvvvwdd_SomeFunc(protocol_vvvvwdd)
{
// set the function logic
if (protocol_vvvvwdd == 2)
{
return true;
}
return false;
}
// the vvvvwde function
function vvvvwde(protocol_vvvvwde)
{
@ -202,30 +64,110 @@ function vvvvwde(protocol_vvvvwde)
// 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
if (jform_vvvvwdevyo_required)
jQuery('#jform_authentication').closest('.control-group').show();
// add required attribute to authentication field
if (jform_vvvvwdevyj_required)
{
updateFieldRequired('signature',0);
jQuery('#jform_signature').prop('required','required');
jQuery('#jform_signature').attr('aria-required',true);
jQuery('#jform_signature').addClass('required');
jform_vvvvwdevyo_required = false;
updateFieldRequired('authentication',0);
jQuery('#jform_authentication').prop('required','required');
jQuery('#jform_authentication').attr('aria-required',true);
jQuery('#jform_authentication').addClass('required');
jform_vvvvwdevyj_required = false;
}
jQuery('#jform_host').closest('.control-group').show();
// add required attribute to host field
if (jform_vvvvwdevyk_required)
{
updateFieldRequired('host',0);
jQuery('#jform_host').prop('required','required');
jQuery('#jform_host').attr('aria-required',true);
jQuery('#jform_host').addClass('required');
jform_vvvvwdevyk_required = false;
}
jQuery('#jform_port').closest('.control-group').show();
// add required attribute to port field
if (jform_vvvvwdevyl_required)
{
updateFieldRequired('port',0);
jQuery('#jform_port').prop('required','required');
jQuery('#jform_port').attr('aria-required',true);
jQuery('#jform_port').addClass('required');
jform_vvvvwdevyl_required = false;
}
jQuery('#jform_path').closest('.control-group').show();
// add required attribute to path field
if (jform_vvvvwdevym_required)
{
updateFieldRequired('path',0);
jQuery('#jform_path').prop('required','required');
jQuery('#jform_path').attr('aria-required',true);
jQuery('#jform_path').addClass('required');
jform_vvvvwdevym_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_vvvvwdevyn_required)
{
updateFieldRequired('username',0);
jQuery('#jform_username').prop('required','required');
jQuery('#jform_username').attr('aria-required',true);
jQuery('#jform_username').addClass('required');
jform_vvvvwdevyn_required = false;
}
}
else
{
jQuery('.note_ftp_signature').closest('.control-group').hide();
jQuery('#jform_signature').closest('.control-group').hide();
// remove required attribute from signature field
if (!jform_vvvvwdevyo_required)
jQuery('#jform_authentication').closest('.control-group').hide();
// remove required attribute from authentication field
if (!jform_vvvvwdevyj_required)
{
updateFieldRequired('signature',1);
jQuery('#jform_signature').removeAttr('required');
jQuery('#jform_signature').removeAttr('aria-required');
jQuery('#jform_signature').removeClass('required');
jform_vvvvwdevyo_required = true;
updateFieldRequired('authentication',1);
jQuery('#jform_authentication').removeAttr('required');
jQuery('#jform_authentication').removeAttr('aria-required');
jQuery('#jform_authentication').removeClass('required');
jform_vvvvwdevyj_required = true;
}
jQuery('#jform_host').closest('.control-group').hide();
// remove required attribute from host field
if (!jform_vvvvwdevyk_required)
{
updateFieldRequired('host',1);
jQuery('#jform_host').removeAttr('required');
jQuery('#jform_host').removeAttr('aria-required');
jQuery('#jform_host').removeClass('required');
jform_vvvvwdevyk_required = true;
}
jQuery('#jform_port').closest('.control-group').hide();
// remove required attribute from port field
if (!jform_vvvvwdevyl_required)
{
updateFieldRequired('port',1);
jQuery('#jform_port').removeAttr('required');
jQuery('#jform_port').removeAttr('aria-required');
jQuery('#jform_port').removeClass('required');
jform_vvvvwdevyl_required = true;
}
jQuery('#jform_path').closest('.control-group').hide();
// remove required attribute from path field
if (!jform_vvvvwdevym_required)
{
updateFieldRequired('path',1);
jQuery('#jform_path').removeAttr('required');
jQuery('#jform_path').removeAttr('aria-required');
jQuery('#jform_path').removeClass('required');
jform_vvvvwdevym_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_vvvvwdevyn_required)
{
updateFieldRequired('username',1);
jQuery('#jform_username').removeAttr('required');
jQuery('#jform_username').removeAttr('aria-required');
jQuery('#jform_username').removeClass('required');
jform_vvvvwdevyn_required = true;
}
}
}
@ -234,7 +176,7 @@ function vvvvwde(protocol_vvvvwde)
function protocol_vvvvwde_SomeFunc(protocol_vvvvwde)
{
// set the function logic
if (protocol_vvvvwde == 1)
if (protocol_vvvvwde == 2)
{
return true;
}
@ -242,7 +184,7 @@ function protocol_vvvvwde_SomeFunc(protocol_vvvvwde)
}
// the vvvvwdf function
function vvvvwdf(protocol_vvvvwdf,authentication_vvvvwdf)
function vvvvwdf(protocol_vvvvwdf)
{
if (isSet(protocol_vvvvwdf) && protocol_vvvvwdf.constructor !== Array)
{
@ -256,44 +198,34 @@ function vvvvwdf(protocol_vvvvwdf,authentication_vvvvwdf)
}
var protocol = protocol_vvvvwdf.some(protocol_vvvvwdf_SomeFunc);
if (isSet(authentication_vvvvwdf) && authentication_vvvvwdf.constructor !== Array)
{
var temp_vvvvwdf = authentication_vvvvwdf;
var authentication_vvvvwdf = [];
authentication_vvvvwdf.push(temp_vvvvwdf);
}
else if (!isSet(authentication_vvvvwdf))
{
var authentication_vvvvwdf = [];
}
var authentication = authentication_vvvvwdf.some(authentication_vvvvwdf_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_vvvvwdfvyp_required)
jQuery('.note_ftp_signature').closest('.control-group').show();
jQuery('#jform_signature').closest('.control-group').show();
// add required attribute to signature field
if (jform_vvvvwdfvyo_required)
{
updateFieldRequired('password',0);
jQuery('#jform_password').prop('required','required');
jQuery('#jform_password').attr('aria-required',true);
jQuery('#jform_password').addClass('required');
jform_vvvvwdfvyp_required = false;
updateFieldRequired('signature',0);
jQuery('#jform_signature').prop('required','required');
jQuery('#jform_signature').attr('aria-required',true);
jQuery('#jform_signature').addClass('required');
jform_vvvvwdfvyo_required = false;
}
}
else
{
jQuery('#jform_password').closest('.control-group').hide();
// remove required attribute from password field
if (!jform_vvvvwdfvyp_required)
jQuery('.note_ftp_signature').closest('.control-group').hide();
jQuery('#jform_signature').closest('.control-group').hide();
// remove required attribute from signature field
if (!jform_vvvvwdfvyo_required)
{
updateFieldRequired('password',1);
jQuery('#jform_password').removeAttr('required');
jQuery('#jform_password').removeAttr('aria-required');
jQuery('#jform_password').removeClass('required');
jform_vvvvwdfvyp_required = true;
updateFieldRequired('signature',1);
jQuery('#jform_signature').removeAttr('required');
jQuery('#jform_signature').removeAttr('aria-required');
jQuery('#jform_signature').removeClass('required');
jform_vvvvwdfvyo_required = true;
}
}
}
@ -302,50 +234,118 @@ function vvvvwdf(protocol_vvvvwdf,authentication_vvvvwdf)
function protocol_vvvvwdf_SomeFunc(protocol_vvvvwdf)
{
// set the function logic
if (protocol_vvvvwdf == 2)
if (protocol_vvvvwdf == 1)
{
return true;
}
return false;
}
// the vvvvwdf Some function
function authentication_vvvvwdf_SomeFunc(authentication_vvvvwdf)
// the vvvvwdg function
function vvvvwdg(protocol_vvvvwdg,authentication_vvvvwdg)
{
if (isSet(protocol_vvvvwdg) && protocol_vvvvwdg.constructor !== Array)
{
var temp_vvvvwdg = protocol_vvvvwdg;
var protocol_vvvvwdg = [];
protocol_vvvvwdg.push(temp_vvvvwdg);
}
else if (!isSet(protocol_vvvvwdg))
{
var protocol_vvvvwdg = [];
}
var protocol = protocol_vvvvwdg.some(protocol_vvvvwdg_SomeFunc);
if (isSet(authentication_vvvvwdg) && authentication_vvvvwdg.constructor !== Array)
{
var temp_vvvvwdg = authentication_vvvvwdg;
var authentication_vvvvwdg = [];
authentication_vvvvwdg.push(temp_vvvvwdg);
}
else if (!isSet(authentication_vvvvwdg))
{
var authentication_vvvvwdg = [];
}
var authentication = authentication_vvvvwdg.some(authentication_vvvvwdg_SomeFunc);
// set this function logic
if (protocol && authentication)
{
jQuery('#jform_password').closest('.control-group').show();
// add required attribute to password field
if (jform_vvvvwdgvyp_required)
{
updateFieldRequired('password',0);
jQuery('#jform_password').prop('required','required');
jQuery('#jform_password').attr('aria-required',true);
jQuery('#jform_password').addClass('required');
jform_vvvvwdgvyp_required = false;
}
}
else
{
jQuery('#jform_password').closest('.control-group').hide();
// remove required attribute from password field
if (!jform_vvvvwdgvyp_required)
{
updateFieldRequired('password',1);
jQuery('#jform_password').removeAttr('required');
jQuery('#jform_password').removeAttr('aria-required');
jQuery('#jform_password').removeClass('required');
jform_vvvvwdgvyp_required = true;
}
}
}
// the vvvvwdg Some function
function protocol_vvvvwdg_SomeFunc(protocol_vvvvwdg)
{
// set the function logic
if (authentication_vvvvwdf == 1 || authentication_vvvvwdf == 3 || authentication_vvvvwdf == 5)
if (protocol_vvvvwdg == 2)
{
return true;
}
return false;
}
// the vvvvwdh function
function vvvvwdh(protocol_vvvvwdh,authentication_vvvvwdh)
// the vvvvwdg Some function
function authentication_vvvvwdg_SomeFunc(authentication_vvvvwdg)
{
if (isSet(protocol_vvvvwdh) && protocol_vvvvwdh.constructor !== Array)
// set the function logic
if (authentication_vvvvwdg == 1 || authentication_vvvvwdg == 3 || authentication_vvvvwdg == 5)
{
var temp_vvvvwdh = protocol_vvvvwdh;
var protocol_vvvvwdh = [];
protocol_vvvvwdh.push(temp_vvvvwdh);
return true;
}
else if (!isSet(protocol_vvvvwdh))
{
var protocol_vvvvwdh = [];
}
var protocol = protocol_vvvvwdh.some(protocol_vvvvwdh_SomeFunc);
return false;
}
if (isSet(authentication_vvvvwdh) && authentication_vvvvwdh.constructor !== Array)
// the vvvvwdi function
function vvvvwdi(protocol_vvvvwdi,authentication_vvvvwdi)
{
if (isSet(protocol_vvvvwdi) && protocol_vvvvwdi.constructor !== Array)
{
var temp_vvvvwdh = authentication_vvvvwdh;
var authentication_vvvvwdh = [];
authentication_vvvvwdh.push(temp_vvvvwdh);
var temp_vvvvwdi = protocol_vvvvwdi;
var protocol_vvvvwdi = [];
protocol_vvvvwdi.push(temp_vvvvwdi);
}
else if (!isSet(authentication_vvvvwdh))
else if (!isSet(protocol_vvvvwdi))
{
var authentication_vvvvwdh = [];
var protocol_vvvvwdi = [];
}
var authentication = authentication_vvvvwdh.some(authentication_vvvvwdh_SomeFunc);
var protocol = protocol_vvvvwdi.some(protocol_vvvvwdi_SomeFunc);
if (isSet(authentication_vvvvwdi) && authentication_vvvvwdi.constructor !== Array)
{
var temp_vvvvwdi = authentication_vvvvwdi;
var authentication_vvvvwdi = [];
authentication_vvvvwdi.push(temp_vvvvwdi);
}
else if (!isSet(authentication_vvvvwdi))
{
var authentication_vvvvwdi = [];
}
var authentication = authentication_vvvvwdi.some(authentication_vvvvwdi_SomeFunc);
// set this function logic
@ -353,78 +353,78 @@ function vvvvwdh(protocol_vvvvwdh,authentication_vvvvwdh)
{
jQuery('#jform_private').closest('.control-group').show();
// add required attribute to private field
if (jform_vvvvwdhvyq_required)
if (jform_vvvvwdivyq_required)
{
updateFieldRequired('private',0);
jQuery('#jform_private').prop('required','required');
jQuery('#jform_private').attr('aria-required',true);
jQuery('#jform_private').addClass('required');
jform_vvvvwdhvyq_required = false;
jform_vvvvwdivyq_required = false;
}
}
else
{
jQuery('#jform_private').closest('.control-group').hide();
// remove required attribute from private field
if (!jform_vvvvwdhvyq_required)
if (!jform_vvvvwdivyq_required)
{
updateFieldRequired('private',1);
jQuery('#jform_private').removeAttr('required');
jQuery('#jform_private').removeAttr('aria-required');
jQuery('#jform_private').removeClass('required');
jform_vvvvwdhvyq_required = true;
jform_vvvvwdivyq_required = true;
}
}
}
// the vvvvwdh Some function
function protocol_vvvvwdh_SomeFunc(protocol_vvvvwdh)
// the vvvvwdi Some function
function protocol_vvvvwdi_SomeFunc(protocol_vvvvwdi)
{
// set the function logic
if (protocol_vvvvwdh == 2)
if (protocol_vvvvwdi == 2)
{
return true;
}
return false;
}
// the vvvvwdh Some function
function authentication_vvvvwdh_SomeFunc(authentication_vvvvwdh)
// the vvvvwdi Some function
function authentication_vvvvwdi_SomeFunc(authentication_vvvvwdi)
{
// set the function logic
if (authentication_vvvvwdh == 2 || authentication_vvvvwdh == 3)
if (authentication_vvvvwdi == 2 || authentication_vvvvwdi == 3)
{
return true;
}
return false;
}
// the vvvvwdj function
function vvvvwdj(protocol_vvvvwdj,authentication_vvvvwdj)
// the vvvvwdk function
function vvvvwdk(protocol_vvvvwdk,authentication_vvvvwdk)
{
if (isSet(protocol_vvvvwdj) && protocol_vvvvwdj.constructor !== Array)
if (isSet(protocol_vvvvwdk) && protocol_vvvvwdk.constructor !== Array)
{
var temp_vvvvwdj = protocol_vvvvwdj;
var protocol_vvvvwdj = [];
protocol_vvvvwdj.push(temp_vvvvwdj);
var temp_vvvvwdk = protocol_vvvvwdk;
var protocol_vvvvwdk = [];
protocol_vvvvwdk.push(temp_vvvvwdk);
}
else if (!isSet(protocol_vvvvwdj))
else if (!isSet(protocol_vvvvwdk))
{
var protocol_vvvvwdj = [];
var protocol_vvvvwdk = [];
}
var protocol = protocol_vvvvwdj.some(protocol_vvvvwdj_SomeFunc);
var protocol = protocol_vvvvwdk.some(protocol_vvvvwdk_SomeFunc);
if (isSet(authentication_vvvvwdj) && authentication_vvvvwdj.constructor !== Array)
if (isSet(authentication_vvvvwdk) && authentication_vvvvwdk.constructor !== Array)
{
var temp_vvvvwdj = authentication_vvvvwdj;
var authentication_vvvvwdj = [];
authentication_vvvvwdj.push(temp_vvvvwdj);
var temp_vvvvwdk = authentication_vvvvwdk;
var authentication_vvvvwdk = [];
authentication_vvvvwdk.push(temp_vvvvwdk);
}
else if (!isSet(authentication_vvvvwdj))
else if (!isSet(authentication_vvvvwdk))
{
var authentication_vvvvwdj = [];
var authentication_vvvvwdk = [];
}
var authentication = authentication_vvvvwdj.some(authentication_vvvvwdj_SomeFunc);
var authentication = authentication_vvvvwdk.some(authentication_vvvvwdk_SomeFunc);
// set this function logic
@ -432,78 +432,78 @@ function vvvvwdj(protocol_vvvvwdj,authentication_vvvvwdj)
{
jQuery('#jform_private_key').closest('.control-group').show();
// add required attribute to private_key field
if (jform_vvvvwdjvyr_required)
if (jform_vvvvwdkvyr_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_vvvvwdjvyr_required = false;
jform_vvvvwdkvyr_required = false;
}
}
else
{
jQuery('#jform_private_key').closest('.control-group').hide();
// remove required attribute from private_key field
if (!jform_vvvvwdjvyr_required)
if (!jform_vvvvwdkvyr_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_vvvvwdjvyr_required = true;
jform_vvvvwdkvyr_required = true;
}
}
}
// the vvvvwdj Some function
function protocol_vvvvwdj_SomeFunc(protocol_vvvvwdj)
// the vvvvwdk Some function
function protocol_vvvvwdk_SomeFunc(protocol_vvvvwdk)
{
// set the function logic
if (protocol_vvvvwdj == 2)
if (protocol_vvvvwdk == 2)
{
return true;
}
return false;
}
// the vvvvwdj Some function
function authentication_vvvvwdj_SomeFunc(authentication_vvvvwdj)
// the vvvvwdk Some function
function authentication_vvvvwdk_SomeFunc(authentication_vvvvwdk)
{
// set the function logic
if (authentication_vvvvwdj == 4 || authentication_vvvvwdj == 5)
if (authentication_vvvvwdk == 4 || authentication_vvvvwdk == 5)
{
return true;
}
return false;
}
// the vvvvwdl function
function vvvvwdl(protocol_vvvvwdl,authentication_vvvvwdl)
// the vvvvwdm function
function vvvvwdm(protocol_vvvvwdm,authentication_vvvvwdm)
{
if (isSet(protocol_vvvvwdl) && protocol_vvvvwdl.constructor !== Array)
if (isSet(protocol_vvvvwdm) && protocol_vvvvwdm.constructor !== Array)
{
var temp_vvvvwdl = protocol_vvvvwdl;
var protocol_vvvvwdl = [];
protocol_vvvvwdl.push(temp_vvvvwdl);
var temp_vvvvwdm = protocol_vvvvwdm;
var protocol_vvvvwdm = [];
protocol_vvvvwdm.push(temp_vvvvwdm);
}
else if (!isSet(protocol_vvvvwdl))
else if (!isSet(protocol_vvvvwdm))
{
var protocol_vvvvwdl = [];
var protocol_vvvvwdm = [];
}
var protocol = protocol_vvvvwdl.some(protocol_vvvvwdl_SomeFunc);
var protocol = protocol_vvvvwdm.some(protocol_vvvvwdm_SomeFunc);
if (isSet(authentication_vvvvwdl) && authentication_vvvvwdl.constructor !== Array)
if (isSet(authentication_vvvvwdm) && authentication_vvvvwdm.constructor !== Array)
{
var temp_vvvvwdl = authentication_vvvvwdl;
var authentication_vvvvwdl = [];
authentication_vvvvwdl.push(temp_vvvvwdl);
var temp_vvvvwdm = authentication_vvvvwdm;
var authentication_vvvvwdm = [];
authentication_vvvvwdm.push(temp_vvvvwdm);
}
else if (!isSet(authentication_vvvvwdl))
else if (!isSet(authentication_vvvvwdm))
{
var authentication_vvvvwdl = [];
var authentication_vvvvwdm = [];
}
var authentication = authentication_vvvvwdl.some(authentication_vvvvwdl_SomeFunc);
var authentication = authentication_vvvvwdm.some(authentication_vvvvwdm_SomeFunc);
// set this function logic
@ -517,22 +517,22 @@ function vvvvwdl(protocol_vvvvwdl,authentication_vvvvwdl)
}
}
// the vvvvwdl Some function
function protocol_vvvvwdl_SomeFunc(protocol_vvvvwdl)
// the vvvvwdm Some function
function protocol_vvvvwdm_SomeFunc(protocol_vvvvwdm)
{
// set the function logic
if (protocol_vvvvwdl == 2)
if (protocol_vvvvwdm == 2)
{
return true;
}
return false;
}
// the vvvvwdl Some function
function authentication_vvvvwdl_SomeFunc(authentication_vvvvwdl)
// the vvvvwdm Some function
function authentication_vvvvwdm_SomeFunc(authentication_vvvvwdm)
{
// set the function logic
if (authentication_vvvvwdl == 2 || authentication_vvvvwdl == 3 || authentication_vvvvwdl == 4 || authentication_vvvvwdl == 5)
if (authentication_vvvvwdm == 2 || authentication_vvvvwdm == 3 || authentication_vvvvwdm == 4 || authentication_vvvvwdm == 5)
{
return true;
}