Release of v5.1.1-beta1

Add JCB new package engine.
This commit is contained in:
2025-06-18 19:49:35 +00:00
parent 3b502eb09b
commit 70718936b4
464 changed files with 34151 additions and 13973 deletions

View File

@ -9,24 +9,32 @@
*/
// Some Global Values
jform_vvvvwccvxm_required = false;
jform_vvvvwccvxn_required = false;
jform_vvvvwccvxo_required = false;
jform_vvvvwccvxp_required = false;
jform_vvvvwbyvxj_required = false;
jform_vvvvwbyvxk_required = false;
jform_vvvvwbyvxl_required = false;
jform_vvvvwbyvxm_required = false;
jform_vvvvwbyvxn_required = false;
jform_vvvvwbzvxo_required = false;
jform_vvvvwcavxp_required = false;
jform_vvvvwccvxq_required = false;
jform_vvvvwcdvxr_required = false;
jform_vvvvwcevxs_required = false;
jform_vvvvwcgvxt_required = false;
jform_vvvvwcivxu_required = false;
jform_vvvvwcevxr_required = false;
// Initial Script
document.addEventListener('DOMContentLoaded', function()
{
var protocol_vvvvwcc = jQuery("#jform_protocol").val();
vvvvwcc(protocol_vvvvwcc);
var protocol_vvvvwby = jQuery("#jform_protocol").val();
vvvvwby(protocol_vvvvwby);
var protocol_vvvvwcd = jQuery("#jform_protocol").val();
vvvvwcd(protocol_vvvvwcd);
var protocol_vvvvwbz = jQuery("#jform_protocol").val();
vvvvwbz(protocol_vvvvwbz);
var protocol_vvvvwca = jQuery("#jform_protocol").val();
var authentication_vvvvwca = jQuery("#jform_authentication").val();
vvvvwca(protocol_vvvvwca,authentication_vvvvwca);
var protocol_vvvvwcc = jQuery("#jform_protocol").val();
var authentication_vvvvwcc = jQuery("#jform_authentication").val();
vvvvwcc(protocol_vvvvwcc,authentication_vvvvwcc);
var protocol_vvvvwce = jQuery("#jform_protocol").val();
var authentication_vvvvwce = jQuery("#jform_authentication").val();
@ -35,18 +43,285 @@ document.addEventListener('DOMContentLoaded', function()
var protocol_vvvvwcg = jQuery("#jform_protocol").val();
var authentication_vvvvwcg = jQuery("#jform_authentication").val();
vvvvwcg(protocol_vvvvwcg,authentication_vvvvwcg);
var protocol_vvvvwci = jQuery("#jform_protocol").val();
var authentication_vvvvwci = jQuery("#jform_authentication").val();
vvvvwci(protocol_vvvvwci,authentication_vvvvwci);
var protocol_vvvvwck = jQuery("#jform_protocol").val();
var authentication_vvvvwck = jQuery("#jform_authentication").val();
vvvvwck(protocol_vvvvwck,authentication_vvvvwck);
});
// the vvvvwby function
function vvvvwby(protocol_vvvvwby)
{
if (isSet(protocol_vvvvwby) && protocol_vvvvwby.constructor !== Array)
{
var temp_vvvvwby = protocol_vvvvwby;
var protocol_vvvvwby = [];
protocol_vvvvwby.push(temp_vvvvwby);
}
else if (!isSet(protocol_vvvvwby))
{
var protocol_vvvvwby = [];
}
var protocol = protocol_vvvvwby.some(protocol_vvvvwby_SomeFunc);
// set this function logic
if (protocol)
{
jQuery('#jform_authentication').closest('.control-group').show();
// add required attribute to authentication field
if (jform_vvvvwbyvxj_required)
{
updateFieldRequired('authentication',0);
jQuery('#jform_authentication').prop('required','required');
jQuery('#jform_authentication').attr('aria-required',true);
jQuery('#jform_authentication').addClass('required');
jform_vvvvwbyvxj_required = false;
}
jQuery('#jform_host').closest('.control-group').show();
// add required attribute to host field
if (jform_vvvvwbyvxk_required)
{
updateFieldRequired('host',0);
jQuery('#jform_host').prop('required','required');
jQuery('#jform_host').attr('aria-required',true);
jQuery('#jform_host').addClass('required');
jform_vvvvwbyvxk_required = false;
}
jQuery('#jform_port').closest('.control-group').show();
// add required attribute to port field
if (jform_vvvvwbyvxl_required)
{
updateFieldRequired('port',0);
jQuery('#jform_port').prop('required','required');
jQuery('#jform_port').attr('aria-required',true);
jQuery('#jform_port').addClass('required');
jform_vvvvwbyvxl_required = false;
}
jQuery('#jform_path').closest('.control-group').show();
// add required attribute to path field
if (jform_vvvvwbyvxm_required)
{
updateFieldRequired('path',0);
jQuery('#jform_path').prop('required','required');
jQuery('#jform_path').attr('aria-required',true);
jQuery('#jform_path').addClass('required');
jform_vvvvwbyvxm_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_vvvvwbyvxn_required)
{
updateFieldRequired('username',0);
jQuery('#jform_username').prop('required','required');
jQuery('#jform_username').attr('aria-required',true);
jQuery('#jform_username').addClass('required');
jform_vvvvwbyvxn_required = false;
}
}
else
{
jQuery('#jform_authentication').closest('.control-group').hide();
// remove required attribute from authentication field
if (!jform_vvvvwbyvxj_required)
{
updateFieldRequired('authentication',1);
jQuery('#jform_authentication').removeAttr('required');
jQuery('#jform_authentication').removeAttr('aria-required');
jQuery('#jform_authentication').removeClass('required');
jform_vvvvwbyvxj_required = true;
}
jQuery('#jform_host').closest('.control-group').hide();
// remove required attribute from host field
if (!jform_vvvvwbyvxk_required)
{
updateFieldRequired('host',1);
jQuery('#jform_host').removeAttr('required');
jQuery('#jform_host').removeAttr('aria-required');
jQuery('#jform_host').removeClass('required');
jform_vvvvwbyvxk_required = true;
}
jQuery('#jform_port').closest('.control-group').hide();
// remove required attribute from port field
if (!jform_vvvvwbyvxl_required)
{
updateFieldRequired('port',1);
jQuery('#jform_port').removeAttr('required');
jQuery('#jform_port').removeAttr('aria-required');
jQuery('#jform_port').removeClass('required');
jform_vvvvwbyvxl_required = true;
}
jQuery('#jform_path').closest('.control-group').hide();
// remove required attribute from path field
if (!jform_vvvvwbyvxm_required)
{
updateFieldRequired('path',1);
jQuery('#jform_path').removeAttr('required');
jQuery('#jform_path').removeAttr('aria-required');
jQuery('#jform_path').removeClass('required');
jform_vvvvwbyvxm_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_vvvvwbyvxn_required)
{
updateFieldRequired('username',1);
jQuery('#jform_username').removeAttr('required');
jQuery('#jform_username').removeAttr('aria-required');
jQuery('#jform_username').removeClass('required');
jform_vvvvwbyvxn_required = true;
}
}
}
// the vvvvwby Some function
function protocol_vvvvwby_SomeFunc(protocol_vvvvwby)
{
// set the function logic
if (protocol_vvvvwby == 2)
{
return true;
}
return false;
}
// the vvvvwbz function
function vvvvwbz(protocol_vvvvwbz)
{
if (isSet(protocol_vvvvwbz) && protocol_vvvvwbz.constructor !== Array)
{
var temp_vvvvwbz = protocol_vvvvwbz;
var protocol_vvvvwbz = [];
protocol_vvvvwbz.push(temp_vvvvwbz);
}
else if (!isSet(protocol_vvvvwbz))
{
var protocol_vvvvwbz = [];
}
var protocol = protocol_vvvvwbz.some(protocol_vvvvwbz_SomeFunc);
// 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_vvvvwbzvxo_required)
{
updateFieldRequired('signature',0);
jQuery('#jform_signature').prop('required','required');
jQuery('#jform_signature').attr('aria-required',true);
jQuery('#jform_signature').addClass('required');
jform_vvvvwbzvxo_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_vvvvwbzvxo_required)
{
updateFieldRequired('signature',1);
jQuery('#jform_signature').removeAttr('required');
jQuery('#jform_signature').removeAttr('aria-required');
jQuery('#jform_signature').removeClass('required');
jform_vvvvwbzvxo_required = true;
}
}
}
// the vvvvwbz Some function
function protocol_vvvvwbz_SomeFunc(protocol_vvvvwbz)
{
// set the function logic
if (protocol_vvvvwbz == 1)
{
return true;
}
return false;
}
// the vvvvwca function
function vvvvwca(protocol_vvvvwca,authentication_vvvvwca)
{
if (isSet(protocol_vvvvwca) && protocol_vvvvwca.constructor !== Array)
{
var temp_vvvvwca = protocol_vvvvwca;
var protocol_vvvvwca = [];
protocol_vvvvwca.push(temp_vvvvwca);
}
else if (!isSet(protocol_vvvvwca))
{
var protocol_vvvvwca = [];
}
var protocol = protocol_vvvvwca.some(protocol_vvvvwca_SomeFunc);
if (isSet(authentication_vvvvwca) && authentication_vvvvwca.constructor !== Array)
{
var temp_vvvvwca = authentication_vvvvwca;
var authentication_vvvvwca = [];
authentication_vvvvwca.push(temp_vvvvwca);
}
else if (!isSet(authentication_vvvvwca))
{
var authentication_vvvvwca = [];
}
var authentication = authentication_vvvvwca.some(authentication_vvvvwca_SomeFunc);
// set this function logic
if (protocol && authentication)
{
jQuery('#jform_password').closest('.control-group').show();
// add required attribute to password field
if (jform_vvvvwcavxp_required)
{
updateFieldRequired('password',0);
jQuery('#jform_password').prop('required','required');
jQuery('#jform_password').attr('aria-required',true);
jQuery('#jform_password').addClass('required');
jform_vvvvwcavxp_required = false;
}
}
else
{
jQuery('#jform_password').closest('.control-group').hide();
// remove required attribute from password field
if (!jform_vvvvwcavxp_required)
{
updateFieldRequired('password',1);
jQuery('#jform_password').removeAttr('required');
jQuery('#jform_password').removeAttr('aria-required');
jQuery('#jform_password').removeClass('required');
jform_vvvvwcavxp_required = true;
}
}
}
// the vvvvwca Some function
function protocol_vvvvwca_SomeFunc(protocol_vvvvwca)
{
// set the function logic
if (protocol_vvvvwca == 2)
{
return true;
}
return false;
}
// the vvvvwca Some function
function authentication_vvvvwca_SomeFunc(authentication_vvvvwca)
{
// set the function logic
if (authentication_vvvvwca == 1 || authentication_vvvvwca == 3 || authentication_vvvvwca == 5)
{
return true;
}
return false;
}
// the vvvvwcc function
function vvvvwcc(protocol_vvvvwcc)
function vvvvwcc(protocol_vvvvwcc,authentication_vvvvwcc)
{
if (isSet(protocol_vvvvwcc) && protocol_vvvvwcc.constructor !== Array)
{
@ -60,113 +335,43 @@ function vvvvwcc(protocol_vvvvwcc)
}
var protocol = protocol_vvvvwcc.some(protocol_vvvvwcc_SomeFunc);
if (isSet(authentication_vvvvwcc) && authentication_vvvvwcc.constructor !== Array)
{
var temp_vvvvwcc = authentication_vvvvwcc;
var authentication_vvvvwcc = [];
authentication_vvvvwcc.push(temp_vvvvwcc);
}
else if (!isSet(authentication_vvvvwcc))
{
var authentication_vvvvwcc = [];
}
var authentication = authentication_vvvvwcc.some(authentication_vvvvwcc_SomeFunc);
// set this function logic
if (protocol)
if (protocol && authentication)
{
jQuery('#jform_authentication').closest('.control-group').show();
// add required attribute to authentication field
if (jform_vvvvwccvxm_required)
{
updateFieldRequired('authentication',0);
jQuery('#jform_authentication').prop('required','required');
jQuery('#jform_authentication').attr('aria-required',true);
jQuery('#jform_authentication').addClass('required');
jform_vvvvwccvxm_required = false;
}
jQuery('#jform_host').closest('.control-group').show();
// add required attribute to host field
if (jform_vvvvwccvxn_required)
{
updateFieldRequired('host',0);
jQuery('#jform_host').prop('required','required');
jQuery('#jform_host').attr('aria-required',true);
jQuery('#jform_host').addClass('required');
jform_vvvvwccvxn_required = false;
}
jQuery('#jform_port').closest('.control-group').show();
// add required attribute to port field
if (jform_vvvvwccvxo_required)
{
updateFieldRequired('port',0);
jQuery('#jform_port').prop('required','required');
jQuery('#jform_port').attr('aria-required',true);
jQuery('#jform_port').addClass('required');
jform_vvvvwccvxo_required = false;
}
jQuery('#jform_path').closest('.control-group').show();
// add required attribute to path field
if (jform_vvvvwccvxp_required)
{
updateFieldRequired('path',0);
jQuery('#jform_path').prop('required','required');
jQuery('#jform_path').attr('aria-required',true);
jQuery('#jform_path').addClass('required');
jform_vvvvwccvxp_required = false;
}
jQuery('.note_ssh_security').closest('.control-group').show();
jQuery('#jform_username').closest('.control-group').show();
// add required attribute to username field
jQuery('#jform_private').closest('.control-group').show();
// add required attribute to private field
if (jform_vvvvwccvxq_required)
{
updateFieldRequired('username',0);
jQuery('#jform_username').prop('required','required');
jQuery('#jform_username').attr('aria-required',true);
jQuery('#jform_username').addClass('required');
updateFieldRequired('private',0);
jQuery('#jform_private').prop('required','required');
jQuery('#jform_private').attr('aria-required',true);
jQuery('#jform_private').addClass('required');
jform_vvvvwccvxq_required = false;
}
}
else
{
jQuery('#jform_authentication').closest('.control-group').hide();
// remove required attribute from authentication field
if (!jform_vvvvwccvxm_required)
{
updateFieldRequired('authentication',1);
jQuery('#jform_authentication').removeAttr('required');
jQuery('#jform_authentication').removeAttr('aria-required');
jQuery('#jform_authentication').removeClass('required');
jform_vvvvwccvxm_required = true;
}
jQuery('#jform_host').closest('.control-group').hide();
// remove required attribute from host field
if (!jform_vvvvwccvxn_required)
{
updateFieldRequired('host',1);
jQuery('#jform_host').removeAttr('required');
jQuery('#jform_host').removeAttr('aria-required');
jQuery('#jform_host').removeClass('required');
jform_vvvvwccvxn_required = true;
}
jQuery('#jform_port').closest('.control-group').hide();
// remove required attribute from port field
if (!jform_vvvvwccvxo_required)
{
updateFieldRequired('port',1);
jQuery('#jform_port').removeAttr('required');
jQuery('#jform_port').removeAttr('aria-required');
jQuery('#jform_port').removeClass('required');
jform_vvvvwccvxo_required = true;
}
jQuery('#jform_path').closest('.control-group').hide();
// remove required attribute from path field
if (!jform_vvvvwccvxp_required)
{
updateFieldRequired('path',1);
jQuery('#jform_path').removeAttr('required');
jQuery('#jform_path').removeAttr('aria-required');
jQuery('#jform_path').removeClass('required');
jform_vvvvwccvxp_required = true;
}
jQuery('.note_ssh_security').closest('.control-group').hide();
jQuery('#jform_username').closest('.control-group').hide();
// remove required attribute from username field
jQuery('#jform_private').closest('.control-group').hide();
// remove required attribute from private field
if (!jform_vvvvwccvxq_required)
{
updateFieldRequired('username',1);
jQuery('#jform_username').removeAttr('required');
jQuery('#jform_username').removeAttr('aria-required');
jQuery('#jform_username').removeClass('required');
updateFieldRequired('private',1);
jQuery('#jform_private').removeAttr('required');
jQuery('#jform_private').removeAttr('aria-required');
jQuery('#jform_private').removeClass('required');
jform_vvvvwccvxq_required = true;
}
}
@ -183,58 +388,11 @@ function protocol_vvvvwcc_SomeFunc(protocol_vvvvwcc)
return false;
}
// the vvvvwcd function
function vvvvwcd(protocol_vvvvwcd)
{
if (isSet(protocol_vvvvwcd) && protocol_vvvvwcd.constructor !== Array)
{
var temp_vvvvwcd = protocol_vvvvwcd;
var protocol_vvvvwcd = [];
protocol_vvvvwcd.push(temp_vvvvwcd);
}
else if (!isSet(protocol_vvvvwcd))
{
var protocol_vvvvwcd = [];
}
var protocol = protocol_vvvvwcd.some(protocol_vvvvwcd_SomeFunc);
// 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_vvvvwcdvxr_required)
{
updateFieldRequired('signature',0);
jQuery('#jform_signature').prop('required','required');
jQuery('#jform_signature').attr('aria-required',true);
jQuery('#jform_signature').addClass('required');
jform_vvvvwcdvxr_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_vvvvwcdvxr_required)
{
updateFieldRequired('signature',1);
jQuery('#jform_signature').removeAttr('required');
jQuery('#jform_signature').removeAttr('aria-required');
jQuery('#jform_signature').removeClass('required');
jform_vvvvwcdvxr_required = true;
}
}
}
// the vvvvwcd Some function
function protocol_vvvvwcd_SomeFunc(protocol_vvvvwcd)
// the vvvvwcc Some function
function authentication_vvvvwcc_SomeFunc(authentication_vvvvwcc)
{
// set the function logic
if (protocol_vvvvwcd == 1)
if (authentication_vvvvwcc == 2 || authentication_vvvvwcc == 3)
{
return true;
}
@ -272,28 +430,28 @@ function vvvvwce(protocol_vvvvwce,authentication_vvvvwce)
// set this function logic
if (protocol && authentication)
{
jQuery('#jform_password').closest('.control-group').show();
// add required attribute to password field
if (jform_vvvvwcevxs_required)
jQuery('#jform_private_key').closest('.control-group').show();
// add required attribute to private_key field
if (jform_vvvvwcevxr_required)
{
updateFieldRequired('password',0);
jQuery('#jform_password').prop('required','required');
jQuery('#jform_password').attr('aria-required',true);
jQuery('#jform_password').addClass('required');
jform_vvvvwcevxs_required = false;
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_vvvvwcevxr_required = false;
}
}
else
{
jQuery('#jform_password').closest('.control-group').hide();
// remove required attribute from password field
if (!jform_vvvvwcevxs_required)
jQuery('#jform_private_key').closest('.control-group').hide();
// remove required attribute from private_key field
if (!jform_vvvvwcevxr_required)
{
updateFieldRequired('password',1);
jQuery('#jform_password').removeAttr('required');
jQuery('#jform_password').removeAttr('aria-required');
jQuery('#jform_password').removeClass('required');
jform_vvvvwcevxs_required = true;
updateFieldRequired('private_key',1);
jQuery('#jform_private_key').removeAttr('required');
jQuery('#jform_private_key').removeAttr('aria-required');
jQuery('#jform_private_key').removeClass('required');
jform_vvvvwcevxr_required = true;
}
}
}
@ -313,7 +471,7 @@ function protocol_vvvvwce_SomeFunc(protocol_vvvvwce)
function authentication_vvvvwce_SomeFunc(authentication_vvvvwce)
{
// set the function logic
if (authentication_vvvvwce == 1 || authentication_vvvvwce == 3 || authentication_vvvvwce == 5)
if (authentication_vvvvwce == 4 || authentication_vvvvwce == 5)
{
return true;
}
@ -351,29 +509,11 @@ function vvvvwcg(protocol_vvvvwcg,authentication_vvvvwcg)
// set this function logic
if (protocol && authentication)
{
jQuery('#jform_private').closest('.control-group').show();
// add required attribute to private field
if (jform_vvvvwcgvxt_required)
{
updateFieldRequired('private',0);
jQuery('#jform_private').prop('required','required');
jQuery('#jform_private').attr('aria-required',true);
jQuery('#jform_private').addClass('required');
jform_vvvvwcgvxt_required = false;
}
jQuery('#jform_secret').closest('.control-group').show();
}
else
{
jQuery('#jform_private').closest('.control-group').hide();
// remove required attribute from private field
if (!jform_vvvvwcgvxt_required)
{
updateFieldRequired('private',1);
jQuery('#jform_private').removeAttr('required');
jQuery('#jform_private').removeAttr('aria-required');
jQuery('#jform_private').removeClass('required');
jform_vvvvwcgvxt_required = true;
}
jQuery('#jform_secret').closest('.control-group').hide();
}
}
@ -392,147 +532,7 @@ function protocol_vvvvwcg_SomeFunc(protocol_vvvvwcg)
function authentication_vvvvwcg_SomeFunc(authentication_vvvvwcg)
{
// set the function logic
if (authentication_vvvvwcg == 2 || authentication_vvvvwcg == 3)
{
return true;
}
return false;
}
// the vvvvwci function
function vvvvwci(protocol_vvvvwci,authentication_vvvvwci)
{
if (isSet(protocol_vvvvwci) && protocol_vvvvwci.constructor !== Array)
{
var temp_vvvvwci = protocol_vvvvwci;
var protocol_vvvvwci = [];
protocol_vvvvwci.push(temp_vvvvwci);
}
else if (!isSet(protocol_vvvvwci))
{
var protocol_vvvvwci = [];
}
var protocol = protocol_vvvvwci.some(protocol_vvvvwci_SomeFunc);
if (isSet(authentication_vvvvwci) && authentication_vvvvwci.constructor !== Array)
{
var temp_vvvvwci = authentication_vvvvwci;
var authentication_vvvvwci = [];
authentication_vvvvwci.push(temp_vvvvwci);
}
else if (!isSet(authentication_vvvvwci))
{
var authentication_vvvvwci = [];
}
var authentication = authentication_vvvvwci.some(authentication_vvvvwci_SomeFunc);
// set this function logic
if (protocol && authentication)
{
jQuery('#jform_private_key').closest('.control-group').show();
// add required attribute to private_key field
if (jform_vvvvwcivxu_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_vvvvwcivxu_required = false;
}
}
else
{
jQuery('#jform_private_key').closest('.control-group').hide();
// remove required attribute from private_key field
if (!jform_vvvvwcivxu_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_vvvvwcivxu_required = true;
}
}
}
// the vvvvwci Some function
function protocol_vvvvwci_SomeFunc(protocol_vvvvwci)
{
// set the function logic
if (protocol_vvvvwci == 2)
{
return true;
}
return false;
}
// the vvvvwci Some function
function authentication_vvvvwci_SomeFunc(authentication_vvvvwci)
{
// set the function logic
if (authentication_vvvvwci == 4 || authentication_vvvvwci == 5)
{
return true;
}
return false;
}
// the vvvvwck function
function vvvvwck(protocol_vvvvwck,authentication_vvvvwck)
{
if (isSet(protocol_vvvvwck) && protocol_vvvvwck.constructor !== Array)
{
var temp_vvvvwck = protocol_vvvvwck;
var protocol_vvvvwck = [];
protocol_vvvvwck.push(temp_vvvvwck);
}
else if (!isSet(protocol_vvvvwck))
{
var protocol_vvvvwck = [];
}
var protocol = protocol_vvvvwck.some(protocol_vvvvwck_SomeFunc);
if (isSet(authentication_vvvvwck) && authentication_vvvvwck.constructor !== Array)
{
var temp_vvvvwck = authentication_vvvvwck;
var authentication_vvvvwck = [];
authentication_vvvvwck.push(temp_vvvvwck);
}
else if (!isSet(authentication_vvvvwck))
{
var authentication_vvvvwck = [];
}
var authentication = authentication_vvvvwck.some(authentication_vvvvwck_SomeFunc);
// set this function logic
if (protocol && authentication)
{
jQuery('#jform_secret').closest('.control-group').show();
}
else
{
jQuery('#jform_secret').closest('.control-group').hide();
}
}
// the vvvvwck Some function
function protocol_vvvvwck_SomeFunc(protocol_vvvvwck)
{
// set the function logic
if (protocol_vvvvwck == 2)
{
return true;
}
return false;
}
// the vvvvwck Some function
function authentication_vvvvwck_SomeFunc(authentication_vvvvwck)
{
// set the function logic
if (authentication_vvvvwck == 2 || authentication_vvvvwck == 3 || authentication_vvvvwck == 4 || authentication_vvvvwck == 5)
if (authentication_vvvvwcg == 2 || authentication_vvvvwcg == 3 || authentication_vvvvwcg == 4 || authentication_vvvvwcg == 5)
{
return true;
}