2021-03-05 03:08:47 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
2022-07-09 15:45:08 +00:00
|
|
|
* @author Llewellyn van der Merwe <https://dev.vdm.io>
|
|
|
|
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
|
2021-03-05 03:08:47 +00:00
|
|
|
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
|
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
2018-02-15 00:42:39 +00:00
|
|
|
// Some Global Values
|
2022-07-09 15:16:21 +00:00
|
|
|
jform_vvvvwdzvyd_required = false;
|
|
|
|
jform_vvvvwdzvye_required = false;
|
|
|
|
jform_vvvvwdzvyf_required = false;
|
|
|
|
jform_vvvvwdzvyg_required = false;
|
|
|
|
jform_vvvvwdzvyh_required = false;
|
|
|
|
jform_vvvvweavyi_required = false;
|
|
|
|
jform_vvvvwebvyj_required = false;
|
|
|
|
jform_vvvvwedvyk_required = false;
|
|
|
|
jform_vvvvwefvyl_required = false;
|
2018-02-15 00:42:39 +00:00
|
|
|
|
|
|
|
// Initial Script
|
|
|
|
jQuery(document).ready(function()
|
|
|
|
{
|
2020-07-07 15:13:04 +00:00
|
|
|
var protocol_vvvvwdz = jQuery("#jform_protocol").val();
|
|
|
|
vvvvwdz(protocol_vvvvwdz);
|
2019-08-08 15:35:58 +00:00
|
|
|
|
2020-07-07 15:13:04 +00:00
|
|
|
var protocol_vvvvwea = jQuery("#jform_protocol").val();
|
2022-07-09 15:16:21 +00:00
|
|
|
vvvvwea(protocol_vvvvwea);
|
|
|
|
|
|
|
|
var protocol_vvvvweb = jQuery("#jform_protocol").val();
|
|
|
|
var authentication_vvvvweb = jQuery("#jform_authentication").val();
|
|
|
|
vvvvweb(protocol_vvvvweb,authentication_vvvvweb);
|
2019-11-09 12:49:20 +00:00
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
var protocol_vvvvwed = jQuery("#jform_protocol").val();
|
|
|
|
var authentication_vvvvwed = jQuery("#jform_authentication").val();
|
|
|
|
vvvvwed(protocol_vvvvwed,authentication_vvvvwed);
|
2018-03-09 03:26:44 +00:00
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
var protocol_vvvvwef = jQuery("#jform_protocol").val();
|
|
|
|
var authentication_vvvvwef = jQuery("#jform_authentication").val();
|
|
|
|
vvvvwef(protocol_vvvvwef,authentication_vvvvwef);
|
2019-07-15 20:00:46 +00:00
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
var protocol_vvvvweh = jQuery("#jform_protocol").val();
|
|
|
|
var authentication_vvvvweh = jQuery("#jform_authentication").val();
|
|
|
|
vvvvweh(protocol_vvvvweh,authentication_vvvvweh);
|
2018-02-15 00:42:39 +00:00
|
|
|
});
|
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
// the vvvvwdz function
|
|
|
|
function vvvvwdz(protocol_vvvvwdz)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
if (isSet(protocol_vvvvwdz) && protocol_vvvvwdz.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
var temp_vvvvwdz = protocol_vvvvwdz;
|
|
|
|
var protocol_vvvvwdz = [];
|
|
|
|
protocol_vvvvwdz.push(temp_vvvvwdz);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2022-07-09 15:16:21 +00:00
|
|
|
else if (!isSet(protocol_vvvvwdz))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
var protocol_vvvvwdz = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2022-07-09 15:16:21 +00:00
|
|
|
var protocol = protocol_vvvvwdz.some(protocol_vvvvwdz_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
|
2022-07-09 15:16:21 +00:00
|
|
|
if (jform_vvvvwdzvyd_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');
|
2022-07-09 15:16:21 +00:00
|
|
|
jform_vvvvwdzvyd_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
|
2022-07-09 15:16:21 +00:00
|
|
|
if (jform_vvvvwdzvye_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');
|
2022-07-09 15:16:21 +00:00
|
|
|
jform_vvvvwdzvye_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
|
2022-07-09 15:16:21 +00:00
|
|
|
if (jform_vvvvwdzvyf_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');
|
2022-07-09 15:16:21 +00:00
|
|
|
jform_vvvvwdzvyf_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
|
2022-07-09 15:16:21 +00:00
|
|
|
if (jform_vvvvwdzvyg_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');
|
2022-07-09 15:16:21 +00:00
|
|
|
jform_vvvvwdzvyg_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
|
2022-07-09 15:16:21 +00:00
|
|
|
if (jform_vvvvwdzvyh_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');
|
2022-07-09 15:16:21 +00:00
|
|
|
jform_vvvvwdzvyh_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
|
2022-07-09 15:16:21 +00:00
|
|
|
if (!jform_vvvvwdzvyd_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');
|
2022-07-09 15:16:21 +00:00
|
|
|
jform_vvvvwdzvyd_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
|
2022-07-09 15:16:21 +00:00
|
|
|
if (!jform_vvvvwdzvye_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');
|
2022-07-09 15:16:21 +00:00
|
|
|
jform_vvvvwdzvye_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
|
2022-07-09 15:16:21 +00:00
|
|
|
if (!jform_vvvvwdzvyf_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');
|
2022-07-09 15:16:21 +00:00
|
|
|
jform_vvvvwdzvyf_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
|
2022-07-09 15:16:21 +00:00
|
|
|
if (!jform_vvvvwdzvyg_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');
|
2022-07-09 15:16:21 +00:00
|
|
|
jform_vvvvwdzvyg_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
|
2022-07-09 15:16:21 +00:00
|
|
|
if (!jform_vvvvwdzvyh_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');
|
2022-07-09 15:16:21 +00:00
|
|
|
jform_vvvvwdzvyh_required = true;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
// the vvvvwdz Some function
|
|
|
|
function protocol_vvvvwdz_SomeFunc(protocol_vvvvwdz)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2022-07-09 15:16:21 +00:00
|
|
|
if (protocol_vvvvwdz == 2)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
// the vvvvwea function
|
|
|
|
function vvvvwea(protocol_vvvvwea)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
if (isSet(protocol_vvvvwea) && protocol_vvvvwea.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
var temp_vvvvwea = protocol_vvvvwea;
|
|
|
|
var protocol_vvvvwea = [];
|
|
|
|
protocol_vvvvwea.push(temp_vvvvwea);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2022-07-09 15:16:21 +00:00
|
|
|
else if (!isSet(protocol_vvvvwea))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
var protocol_vvvvwea = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2022-07-09 15:16:21 +00:00
|
|
|
var protocol = protocol_vvvvwea.some(protocol_vvvvwea_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
|
2022-07-09 15:16:21 +00:00
|
|
|
if (jform_vvvvweavyi_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');
|
2022-07-09 15:16:21 +00:00
|
|
|
jform_vvvvweavyi_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
|
2022-07-09 15:16:21 +00:00
|
|
|
if (!jform_vvvvweavyi_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');
|
2022-07-09 15:16:21 +00:00
|
|
|
jform_vvvvweavyi_required = true;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
// the vvvvwea Some function
|
|
|
|
function protocol_vvvvwea_SomeFunc(protocol_vvvvwea)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2022-07-09 15:16:21 +00:00
|
|
|
if (protocol_vvvvwea == 1)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
// the vvvvweb function
|
|
|
|
function vvvvweb(protocol_vvvvweb,authentication_vvvvweb)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
if (isSet(protocol_vvvvweb) && protocol_vvvvweb.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
var temp_vvvvweb = protocol_vvvvweb;
|
|
|
|
var protocol_vvvvweb = [];
|
|
|
|
protocol_vvvvweb.push(temp_vvvvweb);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2022-07-09 15:16:21 +00:00
|
|
|
else if (!isSet(protocol_vvvvweb))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
var protocol_vvvvweb = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2022-07-09 15:16:21 +00:00
|
|
|
var protocol = protocol_vvvvweb.some(protocol_vvvvweb_SomeFunc);
|
2018-02-15 00:42:39 +00:00
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
if (isSet(authentication_vvvvweb) && authentication_vvvvweb.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
var temp_vvvvweb = authentication_vvvvweb;
|
|
|
|
var authentication_vvvvweb = [];
|
|
|
|
authentication_vvvvweb.push(temp_vvvvweb);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2022-07-09 15:16:21 +00:00
|
|
|
else if (!isSet(authentication_vvvvweb))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
var authentication_vvvvweb = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2022-07-09 15:16:21 +00:00
|
|
|
var authentication = authentication_vvvvweb.some(authentication_vvvvweb_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
|
2022-07-09 15:16:21 +00:00
|
|
|
if (jform_vvvvwebvyj_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');
|
2022-07-09 15:16:21 +00:00
|
|
|
jform_vvvvwebvyj_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
|
2022-07-09 15:16:21 +00:00
|
|
|
if (!jform_vvvvwebvyj_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');
|
2022-07-09 15:16:21 +00:00
|
|
|
jform_vvvvwebvyj_required = true;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
// the vvvvweb Some function
|
|
|
|
function protocol_vvvvweb_SomeFunc(protocol_vvvvweb)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2022-07-09 15:16:21 +00:00
|
|
|
if (protocol_vvvvweb == 2)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
// the vvvvweb Some function
|
|
|
|
function authentication_vvvvweb_SomeFunc(authentication_vvvvweb)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2022-07-09 15:16:21 +00:00
|
|
|
if (authentication_vvvvweb == 1 || authentication_vvvvweb == 3 || authentication_vvvvweb == 5)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
// the vvvvwed function
|
|
|
|
function vvvvwed(protocol_vvvvwed,authentication_vvvvwed)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
if (isSet(protocol_vvvvwed) && protocol_vvvvwed.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
var temp_vvvvwed = protocol_vvvvwed;
|
|
|
|
var protocol_vvvvwed = [];
|
|
|
|
protocol_vvvvwed.push(temp_vvvvwed);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2022-07-09 15:16:21 +00:00
|
|
|
else if (!isSet(protocol_vvvvwed))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
var protocol_vvvvwed = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2022-07-09 15:16:21 +00:00
|
|
|
var protocol = protocol_vvvvwed.some(protocol_vvvvwed_SomeFunc);
|
2018-02-15 00:42:39 +00:00
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
if (isSet(authentication_vvvvwed) && authentication_vvvvwed.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
var temp_vvvvwed = authentication_vvvvwed;
|
|
|
|
var authentication_vvvvwed = [];
|
|
|
|
authentication_vvvvwed.push(temp_vvvvwed);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2022-07-09 15:16:21 +00:00
|
|
|
else if (!isSet(authentication_vvvvwed))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
var authentication_vvvvwed = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2022-07-09 15:16:21 +00:00
|
|
|
var authentication = authentication_vvvvwed.some(authentication_vvvvwed_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
|
2022-07-09 15:16:21 +00:00
|
|
|
if (jform_vvvvwedvyk_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');
|
2022-07-09 15:16:21 +00:00
|
|
|
jform_vvvvwedvyk_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
|
2022-07-09 15:16:21 +00:00
|
|
|
if (!jform_vvvvwedvyk_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');
|
2022-07-09 15:16:21 +00:00
|
|
|
jform_vvvvwedvyk_required = true;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
// the vvvvwed Some function
|
|
|
|
function protocol_vvvvwed_SomeFunc(protocol_vvvvwed)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2022-07-09 15:16:21 +00:00
|
|
|
if (protocol_vvvvwed == 2)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
// the vvvvwed Some function
|
|
|
|
function authentication_vvvvwed_SomeFunc(authentication_vvvvwed)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2022-07-09 15:16:21 +00:00
|
|
|
if (authentication_vvvvwed == 2 || authentication_vvvvwed == 3)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
// the vvvvwef function
|
|
|
|
function vvvvwef(protocol_vvvvwef,authentication_vvvvwef)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
if (isSet(protocol_vvvvwef) && protocol_vvvvwef.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
var temp_vvvvwef = protocol_vvvvwef;
|
|
|
|
var protocol_vvvvwef = [];
|
|
|
|
protocol_vvvvwef.push(temp_vvvvwef);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2022-07-09 15:16:21 +00:00
|
|
|
else if (!isSet(protocol_vvvvwef))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
var protocol_vvvvwef = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2022-07-09 15:16:21 +00:00
|
|
|
var protocol = protocol_vvvvwef.some(protocol_vvvvwef_SomeFunc);
|
2018-02-15 00:42:39 +00:00
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
if (isSet(authentication_vvvvwef) && authentication_vvvvwef.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
var temp_vvvvwef = authentication_vvvvwef;
|
|
|
|
var authentication_vvvvwef = [];
|
|
|
|
authentication_vvvvwef.push(temp_vvvvwef);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2022-07-09 15:16:21 +00:00
|
|
|
else if (!isSet(authentication_vvvvwef))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
var authentication_vvvvwef = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2022-07-09 15:16:21 +00:00
|
|
|
var authentication = authentication_vvvvwef.some(authentication_vvvvwef_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
|
2022-07-09 15:16:21 +00:00
|
|
|
if (jform_vvvvwefvyl_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');
|
2022-07-09 15:16:21 +00:00
|
|
|
jform_vvvvwefvyl_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
|
2022-07-09 15:16:21 +00:00
|
|
|
if (!jform_vvvvwefvyl_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');
|
2022-07-09 15:16:21 +00:00
|
|
|
jform_vvvvwefvyl_required = true;
|
2018-03-06 02:28:44 +00:00
|
|
|
}
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
// the vvvvwef Some function
|
|
|
|
function protocol_vvvvwef_SomeFunc(protocol_vvvvwef)
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2022-07-09 15:16:21 +00:00
|
|
|
if (protocol_vvvvwef == 2)
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
// the vvvvwef Some function
|
|
|
|
function authentication_vvvvwef_SomeFunc(authentication_vvvvwef)
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2022-07-09 15:16:21 +00:00
|
|
|
if (authentication_vvvvwef == 4 || authentication_vvvvwef == 5)
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
// the vvvvweh function
|
|
|
|
function vvvvweh(protocol_vvvvweh,authentication_vvvvweh)
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
if (isSet(protocol_vvvvweh) && protocol_vvvvweh.constructor !== Array)
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
var temp_vvvvweh = protocol_vvvvweh;
|
|
|
|
var protocol_vvvvweh = [];
|
|
|
|
protocol_vvvvweh.push(temp_vvvvweh);
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
2022-07-09 15:16:21 +00:00
|
|
|
else if (!isSet(protocol_vvvvweh))
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
var protocol_vvvvweh = [];
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
2022-07-09 15:16:21 +00:00
|
|
|
var protocol = protocol_vvvvweh.some(protocol_vvvvweh_SomeFunc);
|
2018-02-15 00:42:39 +00:00
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
if (isSet(authentication_vvvvweh) && authentication_vvvvweh.constructor !== Array)
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
var temp_vvvvweh = authentication_vvvvweh;
|
|
|
|
var authentication_vvvvweh = [];
|
|
|
|
authentication_vvvvweh.push(temp_vvvvweh);
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
2022-07-09 15:16:21 +00:00
|
|
|
else if (!isSet(authentication_vvvvweh))
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
2022-07-09 15:16:21 +00:00
|
|
|
var authentication_vvvvweh = [];
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
2022-07-09 15:16:21 +00:00
|
|
|
var authentication = authentication_vvvvweh.some(authentication_vvvvweh_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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
// the vvvvweh Some function
|
|
|
|
function protocol_vvvvweh_SomeFunc(protocol_vvvvweh)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2022-07-09 15:16:21 +00:00
|
|
|
if (protocol_vvvvweh == 2)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-07-09 15:16:21 +00:00
|
|
|
// the vvvvweh Some function
|
|
|
|
function authentication_vvvvweh_SomeFunc(authentication_vvvvweh)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2022-07-09 15:16:21 +00:00
|
|
|
if (authentication_vvvvweh == 2 || authentication_vvvvweh == 3 || authentication_vvvvweh == 4 || authentication_vvvvweh == 5)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-02-27 21:05:28 +00:00
|
|
|
// update fields required
|
|
|
|
function updateFieldRequired(name, status) {
|
|
|
|
// check if not_required exist
|
|
|
|
if (jQuery('#jform_not_required').length > 0) {
|
|
|
|
var not_required = jQuery('#jform_not_required').val().split(",");
|
2018-02-15 00:42:39 +00:00
|
|
|
|
2020-02-27 21:05:28 +00:00
|
|
|
if(status == 1)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2020-02-27 21:05:28 +00:00
|
|
|
not_required.push(name);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-02-27 21:05:28 +00:00
|
|
|
not_required = removeFieldFromNotRequired(not_required, name);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2020-02-27 21:05:28 +00:00
|
|
|
|
|
|
|
jQuery('#jform_not_required').val(fixNotRequiredArray(not_required).toString());
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2020-02-27 21:05:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// remove field from not_required
|
|
|
|
function removeFieldFromNotRequired(array, what) {
|
|
|
|
return array.filter(function(element){
|
|
|
|
return element !== what;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// fix not required array
|
|
|
|
function fixNotRequiredArray(array) {
|
|
|
|
var seen = {};
|
|
|
|
return removeEmptyFromNotRequiredArray(array).filter(function(item) {
|
|
|
|
return seen.hasOwnProperty(item) ? false : (seen[item] = true);
|
|
|
|
});
|
|
|
|
}
|
2018-02-15 00:42:39 +00:00
|
|
|
|
2020-02-27 21:05:28 +00:00
|
|
|
// remove empty from not_required array
|
|
|
|
function removeEmptyFromNotRequiredArray(array) {
|
|
|
|
return array.filter(function (el) {
|
|
|
|
// remove ( 一_一) as well - lol
|
|
|
|
return (el.length > 0 && '一_一' !== el);
|
|
|
|
});
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// the isSet function
|
|
|
|
function isSet(val)
|
|
|
|
{
|
|
|
|
if ((val != undefined) && (val != null) && 0 !== val.length){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2021-03-05 03:08:47 +00:00
|
|
|
}
|