2018-05-18 06:28:27 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
|
|
|
* @author Llewellyn van der Merwe <http://www.joomlacomponentbuilder.com>
|
|
|
|
* @github Joomla Component Builder <https://github.com/vdm-io/Joomla-Component-Builder>
|
2019-02-23 13:28:54 +00:00
|
|
|
* @copyright Copyright (C) 2015 - 2019 Vast Development Method. All rights reserved.
|
2018-05-18 06:28:27 +00:00
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
2018-02-15 00:42:39 +00:00
|
|
|
|
|
|
|
// Some Global Values
|
2019-11-09 12:49:20 +00:00
|
|
|
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;
|
2018-02-15 00:42:39 +00:00
|
|
|
|
|
|
|
// Initial Script
|
|
|
|
jQuery(document).ready(function()
|
|
|
|
{
|
2019-10-16 20:34:36 +00:00
|
|
|
var protocol_vvvvwde = jQuery("#jform_protocol").val();
|
|
|
|
vvvvwde(protocol_vvvvwde);
|
2019-08-08 15:35:58 +00:00
|
|
|
|
2019-10-16 20:34:36 +00:00
|
|
|
var protocol_vvvvwdf = jQuery("#jform_protocol").val();
|
2019-11-09 12:49:20 +00:00
|
|
|
vvvvwdf(protocol_vvvvwdf);
|
|
|
|
|
|
|
|
var protocol_vvvvwdg = jQuery("#jform_protocol").val();
|
|
|
|
var authentication_vvvvwdg = jQuery("#jform_authentication").val();
|
|
|
|
vvvvwdg(protocol_vvvvwdg,authentication_vvvvwdg);
|
2018-03-09 03:26:44 +00:00
|
|
|
|
2019-11-09 12:49:20 +00:00
|
|
|
var protocol_vvvvwdi = jQuery("#jform_protocol").val();
|
|
|
|
var authentication_vvvvwdi = jQuery("#jform_authentication").val();
|
|
|
|
vvvvwdi(protocol_vvvvwdi,authentication_vvvvwdi);
|
2019-07-15 20:00:46 +00:00
|
|
|
|
2019-11-09 12:49:20 +00:00
|
|
|
var protocol_vvvvwdk = jQuery("#jform_protocol").val();
|
|
|
|
var authentication_vvvvwdk = jQuery("#jform_authentication").val();
|
|
|
|
vvvvwdk(protocol_vvvvwdk,authentication_vvvvwdk);
|
2019-07-15 20:00:46 +00:00
|
|
|
|
2019-11-09 12:49:20 +00:00
|
|
|
var protocol_vvvvwdm = jQuery("#jform_protocol").val();
|
|
|
|
var authentication_vvvvwdm = jQuery("#jform_authentication").val();
|
|
|
|
vvvvwdm(protocol_vvvvwdm,authentication_vvvvwdm);
|
2018-02-15 00:42:39 +00:00
|
|
|
});
|
|
|
|
|
2019-11-09 12:49:20 +00:00
|
|
|
// the vvvvwde function
|
|
|
|
function vvvvwde(protocol_vvvvwde)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
if (isSet(protocol_vvvvwde) && protocol_vvvvwde.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
var temp_vvvvwde = protocol_vvvvwde;
|
|
|
|
var protocol_vvvvwde = [];
|
|
|
|
protocol_vvvvwde.push(temp_vvvvwde);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-11-09 12:49:20 +00:00
|
|
|
else if (!isSet(protocol_vvvvwde))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
var protocol_vvvvwde = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-11-09 12:49:20 +00:00
|
|
|
var protocol = protocol_vvvvwde.some(protocol_vvvvwde_SomeFunc);
|
2018-02-15 00:42:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
// set this function logic
|
|
|
|
if (protocol)
|
|
|
|
{
|
|
|
|
jQuery('#jform_authentication').closest('.control-group').show();
|
2018-09-10 11:04:52 +00:00
|
|
|
// add required attribute to authentication field
|
2019-11-09 12:49:20 +00:00
|
|
|
if (jform_vvvvwdevyj_required)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('authentication',0);
|
|
|
|
jQuery('#jform_authentication').prop('required','required');
|
|
|
|
jQuery('#jform_authentication').attr('aria-required',true);
|
|
|
|
jQuery('#jform_authentication').addClass('required');
|
2019-11-09 12:49:20 +00:00
|
|
|
jform_vvvvwdevyj_required = false;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
jQuery('#jform_host').closest('.control-group').show();
|
2018-09-10 11:04:52 +00:00
|
|
|
// add required attribute to host field
|
2019-11-09 12:49:20 +00:00
|
|
|
if (jform_vvvvwdevyk_required)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('host',0);
|
|
|
|
jQuery('#jform_host').prop('required','required');
|
|
|
|
jQuery('#jform_host').attr('aria-required',true);
|
|
|
|
jQuery('#jform_host').addClass('required');
|
2019-11-09 12:49:20 +00:00
|
|
|
jform_vvvvwdevyk_required = false;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
jQuery('#jform_port').closest('.control-group').show();
|
2018-09-10 11:04:52 +00:00
|
|
|
// add required attribute to port field
|
2019-11-09 12:49:20 +00:00
|
|
|
if (jform_vvvvwdevyl_required)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('port',0);
|
|
|
|
jQuery('#jform_port').prop('required','required');
|
|
|
|
jQuery('#jform_port').attr('aria-required',true);
|
|
|
|
jQuery('#jform_port').addClass('required');
|
2019-11-09 12:49:20 +00:00
|
|
|
jform_vvvvwdevyl_required = false;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
jQuery('#jform_path').closest('.control-group').show();
|
2018-09-10 11:04:52 +00:00
|
|
|
// add required attribute to path field
|
2019-11-09 12:49:20 +00:00
|
|
|
if (jform_vvvvwdevym_required)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('path',0);
|
|
|
|
jQuery('#jform_path').prop('required','required');
|
|
|
|
jQuery('#jform_path').attr('aria-required',true);
|
|
|
|
jQuery('#jform_path').addClass('required');
|
2019-11-09 12:49:20 +00:00
|
|
|
jform_vvvvwdevym_required = false;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
jQuery('.note_ssh_security').closest('.control-group').show();
|
|
|
|
jQuery('#jform_username').closest('.control-group').show();
|
2018-09-10 11:04:52 +00:00
|
|
|
// add required attribute to username field
|
2019-11-09 12:49:20 +00:00
|
|
|
if (jform_vvvvwdevyn_required)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('username',0);
|
|
|
|
jQuery('#jform_username').prop('required','required');
|
|
|
|
jQuery('#jform_username').attr('aria-required',true);
|
|
|
|
jQuery('#jform_username').addClass('required');
|
2019-11-09 12:49:20 +00:00
|
|
|
jform_vvvvwdevyn_required = false;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_authentication').closest('.control-group').hide();
|
2018-09-10 11:04:52 +00:00
|
|
|
// remove required attribute from authentication field
|
2019-11-09 12:49:20 +00:00
|
|
|
if (!jform_vvvvwdevyj_required)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('authentication',1);
|
|
|
|
jQuery('#jform_authentication').removeAttr('required');
|
|
|
|
jQuery('#jform_authentication').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_authentication').removeClass('required');
|
2019-11-09 12:49:20 +00:00
|
|
|
jform_vvvvwdevyj_required = true;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
jQuery('#jform_host').closest('.control-group').hide();
|
2018-09-10 11:04:52 +00:00
|
|
|
// remove required attribute from host field
|
2019-11-09 12:49:20 +00:00
|
|
|
if (!jform_vvvvwdevyk_required)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('host',1);
|
|
|
|
jQuery('#jform_host').removeAttr('required');
|
|
|
|
jQuery('#jform_host').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_host').removeClass('required');
|
2019-11-09 12:49:20 +00:00
|
|
|
jform_vvvvwdevyk_required = true;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
jQuery('#jform_port').closest('.control-group').hide();
|
2018-09-10 11:04:52 +00:00
|
|
|
// remove required attribute from port field
|
2019-11-09 12:49:20 +00:00
|
|
|
if (!jform_vvvvwdevyl_required)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('port',1);
|
|
|
|
jQuery('#jform_port').removeAttr('required');
|
|
|
|
jQuery('#jform_port').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_port').removeClass('required');
|
2019-11-09 12:49:20 +00:00
|
|
|
jform_vvvvwdevyl_required = true;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
jQuery('#jform_path').closest('.control-group').hide();
|
2018-09-10 11:04:52 +00:00
|
|
|
// remove required attribute from path field
|
2019-11-09 12:49:20 +00:00
|
|
|
if (!jform_vvvvwdevym_required)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('path',1);
|
|
|
|
jQuery('#jform_path').removeAttr('required');
|
|
|
|
jQuery('#jform_path').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_path').removeClass('required');
|
2019-11-09 12:49:20 +00:00
|
|
|
jform_vvvvwdevym_required = true;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
jQuery('.note_ssh_security').closest('.control-group').hide();
|
|
|
|
jQuery('#jform_username').closest('.control-group').hide();
|
2018-09-10 11:04:52 +00:00
|
|
|
// remove required attribute from username field
|
2019-11-09 12:49:20 +00:00
|
|
|
if (!jform_vvvvwdevyn_required)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('username',1);
|
|
|
|
jQuery('#jform_username').removeAttr('required');
|
|
|
|
jQuery('#jform_username').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_username').removeClass('required');
|
2019-11-09 12:49:20 +00:00
|
|
|
jform_vvvvwdevyn_required = true;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-09 12:49:20 +00:00
|
|
|
// the vvvvwde Some function
|
|
|
|
function protocol_vvvvwde_SomeFunc(protocol_vvvvwde)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-11-09 12:49:20 +00:00
|
|
|
if (protocol_vvvvwde == 2)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-11-09 12:49:20 +00:00
|
|
|
// the vvvvwdf function
|
|
|
|
function vvvvwdf(protocol_vvvvwdf)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
if (isSet(protocol_vvvvwdf) && protocol_vvvvwdf.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
var temp_vvvvwdf = protocol_vvvvwdf;
|
|
|
|
var protocol_vvvvwdf = [];
|
|
|
|
protocol_vvvvwdf.push(temp_vvvvwdf);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-11-09 12:49:20 +00:00
|
|
|
else if (!isSet(protocol_vvvvwdf))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
var protocol_vvvvwdf = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-11-09 12:49:20 +00:00
|
|
|
var protocol = protocol_vvvvwdf.some(protocol_vvvvwdf_SomeFunc);
|
2018-02-15 00:42:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
// set this function logic
|
|
|
|
if (protocol)
|
|
|
|
{
|
|
|
|
jQuery('.note_ftp_signature').closest('.control-group').show();
|
|
|
|
jQuery('#jform_signature').closest('.control-group').show();
|
2018-09-10 11:04:52 +00:00
|
|
|
// add required attribute to signature field
|
2019-11-09 12:49:20 +00:00
|
|
|
if (jform_vvvvwdfvyo_required)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('signature',0);
|
|
|
|
jQuery('#jform_signature').prop('required','required');
|
|
|
|
jQuery('#jform_signature').attr('aria-required',true);
|
|
|
|
jQuery('#jform_signature').addClass('required');
|
2019-11-09 12:49:20 +00:00
|
|
|
jform_vvvvwdfvyo_required = false;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('.note_ftp_signature').closest('.control-group').hide();
|
|
|
|
jQuery('#jform_signature').closest('.control-group').hide();
|
2018-09-10 11:04:52 +00:00
|
|
|
// remove required attribute from signature field
|
2019-11-09 12:49:20 +00:00
|
|
|
if (!jform_vvvvwdfvyo_required)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('signature',1);
|
|
|
|
jQuery('#jform_signature').removeAttr('required');
|
|
|
|
jQuery('#jform_signature').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_signature').removeClass('required');
|
2019-11-09 12:49:20 +00:00
|
|
|
jform_vvvvwdfvyo_required = true;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-09 12:49:20 +00:00
|
|
|
// the vvvvwdf Some function
|
|
|
|
function protocol_vvvvwdf_SomeFunc(protocol_vvvvwdf)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-11-09 12:49:20 +00:00
|
|
|
if (protocol_vvvvwdf == 1)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-11-09 12:49:20 +00:00
|
|
|
// the vvvvwdg function
|
|
|
|
function vvvvwdg(protocol_vvvvwdg,authentication_vvvvwdg)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
if (isSet(protocol_vvvvwdg) && protocol_vvvvwdg.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
var temp_vvvvwdg = protocol_vvvvwdg;
|
|
|
|
var protocol_vvvvwdg = [];
|
|
|
|
protocol_vvvvwdg.push(temp_vvvvwdg);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-11-09 12:49:20 +00:00
|
|
|
else if (!isSet(protocol_vvvvwdg))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
var protocol_vvvvwdg = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-11-09 12:49:20 +00:00
|
|
|
var protocol = protocol_vvvvwdg.some(protocol_vvvvwdg_SomeFunc);
|
2018-02-15 00:42:39 +00:00
|
|
|
|
2019-11-09 12:49:20 +00:00
|
|
|
if (isSet(authentication_vvvvwdg) && authentication_vvvvwdg.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
var temp_vvvvwdg = authentication_vvvvwdg;
|
|
|
|
var authentication_vvvvwdg = [];
|
|
|
|
authentication_vvvvwdg.push(temp_vvvvwdg);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-11-09 12:49:20 +00:00
|
|
|
else if (!isSet(authentication_vvvvwdg))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
var authentication_vvvvwdg = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-11-09 12:49:20 +00:00
|
|
|
var authentication = authentication_vvvvwdg.some(authentication_vvvvwdg_SomeFunc);
|
2018-02-15 00:42:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
// set this function logic
|
|
|
|
if (protocol && authentication)
|
|
|
|
{
|
|
|
|
jQuery('#jform_password').closest('.control-group').show();
|
2018-09-10 11:04:52 +00:00
|
|
|
// add required attribute to password field
|
2019-11-09 12:49:20 +00:00
|
|
|
if (jform_vvvvwdgvyp_required)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('password',0);
|
|
|
|
jQuery('#jform_password').prop('required','required');
|
|
|
|
jQuery('#jform_password').attr('aria-required',true);
|
|
|
|
jQuery('#jform_password').addClass('required');
|
2019-11-09 12:49:20 +00:00
|
|
|
jform_vvvvwdgvyp_required = false;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_password').closest('.control-group').hide();
|
2018-09-10 11:04:52 +00:00
|
|
|
// remove required attribute from password field
|
2019-11-09 12:49:20 +00:00
|
|
|
if (!jform_vvvvwdgvyp_required)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('password',1);
|
|
|
|
jQuery('#jform_password').removeAttr('required');
|
|
|
|
jQuery('#jform_password').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_password').removeClass('required');
|
2019-11-09 12:49:20 +00:00
|
|
|
jform_vvvvwdgvyp_required = true;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-09 12:49:20 +00:00
|
|
|
// the vvvvwdg Some function
|
|
|
|
function protocol_vvvvwdg_SomeFunc(protocol_vvvvwdg)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-11-09 12:49:20 +00:00
|
|
|
if (protocol_vvvvwdg == 2)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-11-09 12:49:20 +00:00
|
|
|
// the vvvvwdg Some function
|
|
|
|
function authentication_vvvvwdg_SomeFunc(authentication_vvvvwdg)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-11-09 12:49:20 +00:00
|
|
|
if (authentication_vvvvwdg == 1 || authentication_vvvvwdg == 3 || authentication_vvvvwdg == 5)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-11-09 12:49:20 +00:00
|
|
|
// the vvvvwdi function
|
|
|
|
function vvvvwdi(protocol_vvvvwdi,authentication_vvvvwdi)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
if (isSet(protocol_vvvvwdi) && protocol_vvvvwdi.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
var temp_vvvvwdi = protocol_vvvvwdi;
|
|
|
|
var protocol_vvvvwdi = [];
|
|
|
|
protocol_vvvvwdi.push(temp_vvvvwdi);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-11-09 12:49:20 +00:00
|
|
|
else if (!isSet(protocol_vvvvwdi))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
var protocol_vvvvwdi = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-11-09 12:49:20 +00:00
|
|
|
var protocol = protocol_vvvvwdi.some(protocol_vvvvwdi_SomeFunc);
|
2018-02-15 00:42:39 +00:00
|
|
|
|
2019-11-09 12:49:20 +00:00
|
|
|
if (isSet(authentication_vvvvwdi) && authentication_vvvvwdi.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
var temp_vvvvwdi = authentication_vvvvwdi;
|
|
|
|
var authentication_vvvvwdi = [];
|
|
|
|
authentication_vvvvwdi.push(temp_vvvvwdi);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-11-09 12:49:20 +00:00
|
|
|
else if (!isSet(authentication_vvvvwdi))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
var authentication_vvvvwdi = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-11-09 12:49:20 +00:00
|
|
|
var authentication = authentication_vvvvwdi.some(authentication_vvvvwdi_SomeFunc);
|
2018-02-15 00:42:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
// set this function logic
|
|
|
|
if (protocol && authentication)
|
|
|
|
{
|
|
|
|
jQuery('#jform_private').closest('.control-group').show();
|
2018-09-10 11:04:52 +00:00
|
|
|
// add required attribute to private field
|
2019-11-09 12:49:20 +00:00
|
|
|
if (jform_vvvvwdivyq_required)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('private',0);
|
|
|
|
jQuery('#jform_private').prop('required','required');
|
|
|
|
jQuery('#jform_private').attr('aria-required',true);
|
|
|
|
jQuery('#jform_private').addClass('required');
|
2019-11-09 12:49:20 +00:00
|
|
|
jform_vvvvwdivyq_required = false;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_private').closest('.control-group').hide();
|
2018-09-10 11:04:52 +00:00
|
|
|
// remove required attribute from private field
|
2019-11-09 12:49:20 +00:00
|
|
|
if (!jform_vvvvwdivyq_required)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('private',1);
|
|
|
|
jQuery('#jform_private').removeAttr('required');
|
|
|
|
jQuery('#jform_private').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_private').removeClass('required');
|
2019-11-09 12:49:20 +00:00
|
|
|
jform_vvvvwdivyq_required = true;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-09 12:49:20 +00:00
|
|
|
// the vvvvwdi Some function
|
|
|
|
function protocol_vvvvwdi_SomeFunc(protocol_vvvvwdi)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-11-09 12:49:20 +00:00
|
|
|
if (protocol_vvvvwdi == 2)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-11-09 12:49:20 +00:00
|
|
|
// the vvvvwdi Some function
|
|
|
|
function authentication_vvvvwdi_SomeFunc(authentication_vvvvwdi)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-11-09 12:49:20 +00:00
|
|
|
if (authentication_vvvvwdi == 2 || authentication_vvvvwdi == 3)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-11-09 12:49:20 +00:00
|
|
|
// the vvvvwdk function
|
|
|
|
function vvvvwdk(protocol_vvvvwdk,authentication_vvvvwdk)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
if (isSet(protocol_vvvvwdk) && protocol_vvvvwdk.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
var temp_vvvvwdk = protocol_vvvvwdk;
|
|
|
|
var protocol_vvvvwdk = [];
|
|
|
|
protocol_vvvvwdk.push(temp_vvvvwdk);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-11-09 12:49:20 +00:00
|
|
|
else if (!isSet(protocol_vvvvwdk))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
var protocol_vvvvwdk = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-11-09 12:49:20 +00:00
|
|
|
var protocol = protocol_vvvvwdk.some(protocol_vvvvwdk_SomeFunc);
|
2018-02-15 00:42:39 +00:00
|
|
|
|
2019-11-09 12:49:20 +00:00
|
|
|
if (isSet(authentication_vvvvwdk) && authentication_vvvvwdk.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
var temp_vvvvwdk = authentication_vvvvwdk;
|
|
|
|
var authentication_vvvvwdk = [];
|
|
|
|
authentication_vvvvwdk.push(temp_vvvvwdk);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-11-09 12:49:20 +00:00
|
|
|
else if (!isSet(authentication_vvvvwdk))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
var authentication_vvvvwdk = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-11-09 12:49:20 +00:00
|
|
|
var authentication = authentication_vvvvwdk.some(authentication_vvvvwdk_SomeFunc);
|
2018-02-15 00:42:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
// set this function logic
|
2018-02-27 12:17:38 +00:00
|
|
|
if (protocol && authentication)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2018-02-27 12:17:38 +00:00
|
|
|
jQuery('#jform_private_key').closest('.control-group').show();
|
2018-09-10 11:04:52 +00:00
|
|
|
// add required attribute to private_key field
|
2019-11-09 12:49:20 +00:00
|
|
|
if (jform_vvvvwdkvyr_required)
|
2018-03-06 02:28:44 +00:00
|
|
|
{
|
|
|
|
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');
|
2019-11-09 12:49:20 +00:00
|
|
|
jform_vvvvwdkvyr_required = false;
|
2018-03-06 02:28:44 +00:00
|
|
|
}
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_private_key').closest('.control-group').hide();
|
2018-09-10 11:04:52 +00:00
|
|
|
// remove required attribute from private_key field
|
2019-11-09 12:49:20 +00:00
|
|
|
if (!jform_vvvvwdkvyr_required)
|
2018-03-06 02:28:44 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('private_key',1);
|
|
|
|
jQuery('#jform_private_key').removeAttr('required');
|
|
|
|
jQuery('#jform_private_key').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_private_key').removeClass('required');
|
2019-11-09 12:49:20 +00:00
|
|
|
jform_vvvvwdkvyr_required = true;
|
2018-03-06 02:28:44 +00:00
|
|
|
}
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-09 12:49:20 +00:00
|
|
|
// the vvvvwdk Some function
|
|
|
|
function protocol_vvvvwdk_SomeFunc(protocol_vvvvwdk)
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-11-09 12:49:20 +00:00
|
|
|
if (protocol_vvvvwdk == 2)
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-11-09 12:49:20 +00:00
|
|
|
// the vvvvwdk Some function
|
|
|
|
function authentication_vvvvwdk_SomeFunc(authentication_vvvvwdk)
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-11-09 12:49:20 +00:00
|
|
|
if (authentication_vvvvwdk == 4 || authentication_vvvvwdk == 5)
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-11-09 12:49:20 +00:00
|
|
|
// the vvvvwdm function
|
|
|
|
function vvvvwdm(protocol_vvvvwdm,authentication_vvvvwdm)
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
if (isSet(protocol_vvvvwdm) && protocol_vvvvwdm.constructor !== Array)
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
var temp_vvvvwdm = protocol_vvvvwdm;
|
|
|
|
var protocol_vvvvwdm = [];
|
|
|
|
protocol_vvvvwdm.push(temp_vvvvwdm);
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
2019-11-09 12:49:20 +00:00
|
|
|
else if (!isSet(protocol_vvvvwdm))
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
var protocol_vvvvwdm = [];
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
2019-11-09 12:49:20 +00:00
|
|
|
var protocol = protocol_vvvvwdm.some(protocol_vvvvwdm_SomeFunc);
|
2018-02-15 00:42:39 +00:00
|
|
|
|
2019-11-09 12:49:20 +00:00
|
|
|
if (isSet(authentication_vvvvwdm) && authentication_vvvvwdm.constructor !== Array)
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
var temp_vvvvwdm = authentication_vvvvwdm;
|
|
|
|
var authentication_vvvvwdm = [];
|
|
|
|
authentication_vvvvwdm.push(temp_vvvvwdm);
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
2019-11-09 12:49:20 +00:00
|
|
|
else if (!isSet(authentication_vvvvwdm))
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
2019-11-09 12:49:20 +00:00
|
|
|
var authentication_vvvvwdm = [];
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
2019-11-09 12:49:20 +00:00
|
|
|
var authentication = authentication_vvvvwdm.some(authentication_vvvvwdm_SomeFunc);
|
2018-02-27 12:17:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
// set this function logic
|
|
|
|
if (protocol && authentication)
|
|
|
|
{
|
2018-02-15 00:42:39 +00:00
|
|
|
jQuery('#jform_secret').closest('.control-group').show();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_secret').closest('.control-group').hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-09 12:49:20 +00:00
|
|
|
// the vvvvwdm Some function
|
|
|
|
function protocol_vvvvwdm_SomeFunc(protocol_vvvvwdm)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-11-09 12:49:20 +00:00
|
|
|
if (protocol_vvvvwdm == 2)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-11-09 12:49:20 +00:00
|
|
|
// the vvvvwdm Some function
|
|
|
|
function authentication_vvvvwdm_SomeFunc(authentication_vvvvwdm)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-11-09 12:49:20 +00:00
|
|
|
if (authentication_vvvvwdm == 2 || authentication_vvvvwdm == 3 || authentication_vvvvwdm == 4 || authentication_vvvvwdm == 5)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// update required fields
|
|
|
|
function updateFieldRequired(name,status)
|
|
|
|
{
|
|
|
|
var not_required = jQuery('#jform_not_required').val();
|
|
|
|
|
|
|
|
if(status == 1)
|
|
|
|
{
|
|
|
|
if (isSet(not_required) && not_required != 0)
|
|
|
|
{
|
|
|
|
not_required = not_required+','+name;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
not_required = ','+name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (isSet(not_required) && not_required != 0)
|
|
|
|
{
|
|
|
|
not_required = not_required.replace(','+name,'');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
jQuery('#jform_not_required').val(not_required);
|
|
|
|
}
|
|
|
|
|
|
|
|
// the isSet function
|
|
|
|
function isSet(val)
|
|
|
|
{
|
|
|
|
if ((val != undefined) && (val != null) && 0 !== val.length){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|