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-07-28 21:48:42 +00:00
|
|
|
jform_vvvvwcovxx_required = false;
|
|
|
|
jform_vvvvwcovxy_required = false;
|
|
|
|
jform_vvvvwcovxz_required = false;
|
|
|
|
jform_vvvvwcovya_required = false;
|
|
|
|
jform_vvvvwcovyb_required = false;
|
|
|
|
jform_vvvvwcpvyc_required = false;
|
|
|
|
jform_vvvvwcqvyd_required = false;
|
|
|
|
jform_vvvvwcsvye_required = false;
|
|
|
|
jform_vvvvwcuvyf_required = false;
|
2018-02-15 00:42:39 +00:00
|
|
|
|
|
|
|
// Initial Script
|
|
|
|
jQuery(document).ready(function()
|
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
var protocol_vvvvwco = jQuery("#jform_protocol").val();
|
|
|
|
vvvvwco(protocol_vvvvwco);
|
2019-07-15 20:00:46 +00:00
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
var protocol_vvvvwcp = jQuery("#jform_protocol").val();
|
|
|
|
vvvvwcp(protocol_vvvvwcp);
|
2018-02-27 12:17:38 +00:00
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
var protocol_vvvvwcq = jQuery("#jform_protocol").val();
|
|
|
|
var authentication_vvvvwcq = jQuery("#jform_authentication").val();
|
|
|
|
vvvvwcq(protocol_vvvvwcq,authentication_vvvvwcq);
|
2018-03-09 03:26:44 +00:00
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
var protocol_vvvvwcs = jQuery("#jform_protocol").val();
|
|
|
|
var authentication_vvvvwcs = jQuery("#jform_authentication").val();
|
|
|
|
vvvvwcs(protocol_vvvvwcs,authentication_vvvvwcs);
|
2019-07-15 20:00:46 +00:00
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
var protocol_vvvvwcu = jQuery("#jform_protocol").val();
|
|
|
|
var authentication_vvvvwcu = jQuery("#jform_authentication").val();
|
|
|
|
vvvvwcu(protocol_vvvvwcu,authentication_vvvvwcu);
|
2019-07-15 20:00:46 +00:00
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
var protocol_vvvvwcw = jQuery("#jform_protocol").val();
|
|
|
|
var authentication_vvvvwcw = jQuery("#jform_authentication").val();
|
|
|
|
vvvvwcw(protocol_vvvvwcw,authentication_vvvvwcw);
|
2018-02-15 00:42:39 +00:00
|
|
|
});
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvwco function
|
|
|
|
function vvvvwco(protocol_vvvvwco)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
if (isSet(protocol_vvvvwco) && protocol_vvvvwco.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
var temp_vvvvwco = protocol_vvvvwco;
|
|
|
|
var protocol_vvvvwco = [];
|
|
|
|
protocol_vvvvwco.push(temp_vvvvwco);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-07-28 21:48:42 +00:00
|
|
|
else if (!isSet(protocol_vvvvwco))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
var protocol_vvvvwco = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-07-28 21:48:42 +00:00
|
|
|
var protocol = protocol_vvvvwco.some(protocol_vvvvwco_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-07-28 21:48:42 +00:00
|
|
|
if (jform_vvvvwcovxx_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-07-28 21:48:42 +00:00
|
|
|
jform_vvvvwcovxx_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-07-28 21:48:42 +00:00
|
|
|
if (jform_vvvvwcovxy_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-07-28 21:48:42 +00:00
|
|
|
jform_vvvvwcovxy_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-07-28 21:48:42 +00:00
|
|
|
if (jform_vvvvwcovxz_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-07-28 21:48:42 +00:00
|
|
|
jform_vvvvwcovxz_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-07-28 21:48:42 +00:00
|
|
|
if (jform_vvvvwcovya_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-07-28 21:48:42 +00:00
|
|
|
jform_vvvvwcovya_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-07-28 21:48:42 +00:00
|
|
|
if (jform_vvvvwcovyb_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-07-28 21:48:42 +00:00
|
|
|
jform_vvvvwcovyb_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-07-28 21:48:42 +00:00
|
|
|
if (!jform_vvvvwcovxx_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-07-28 21:48:42 +00:00
|
|
|
jform_vvvvwcovxx_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-07-28 21:48:42 +00:00
|
|
|
if (!jform_vvvvwcovxy_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-07-28 21:48:42 +00:00
|
|
|
jform_vvvvwcovxy_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-07-28 21:48:42 +00:00
|
|
|
if (!jform_vvvvwcovxz_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-07-28 21:48:42 +00:00
|
|
|
jform_vvvvwcovxz_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-07-28 21:48:42 +00:00
|
|
|
if (!jform_vvvvwcovya_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-07-28 21:48:42 +00:00
|
|
|
jform_vvvvwcovya_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-07-28 21:48:42 +00:00
|
|
|
if (!jform_vvvvwcovyb_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-07-28 21:48:42 +00:00
|
|
|
jform_vvvvwcovyb_required = true;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvwco Some function
|
|
|
|
function protocol_vvvvwco_SomeFunc(protocol_vvvvwco)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-28 21:48:42 +00:00
|
|
|
if (protocol_vvvvwco == 2)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvwcp function
|
|
|
|
function vvvvwcp(protocol_vvvvwcp)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
if (isSet(protocol_vvvvwcp) && protocol_vvvvwcp.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
var temp_vvvvwcp = protocol_vvvvwcp;
|
|
|
|
var protocol_vvvvwcp = [];
|
|
|
|
protocol_vvvvwcp.push(temp_vvvvwcp);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-07-28 21:48:42 +00:00
|
|
|
else if (!isSet(protocol_vvvvwcp))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
var protocol_vvvvwcp = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-07-28 21:48:42 +00:00
|
|
|
var protocol = protocol_vvvvwcp.some(protocol_vvvvwcp_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-07-28 21:48:42 +00:00
|
|
|
if (jform_vvvvwcpvyc_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-07-28 21:48:42 +00:00
|
|
|
jform_vvvvwcpvyc_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-07-28 21:48:42 +00:00
|
|
|
if (!jform_vvvvwcpvyc_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-07-28 21:48:42 +00:00
|
|
|
jform_vvvvwcpvyc_required = true;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvwcp Some function
|
|
|
|
function protocol_vvvvwcp_SomeFunc(protocol_vvvvwcp)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-28 21:48:42 +00:00
|
|
|
if (protocol_vvvvwcp == 1)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvwcq function
|
|
|
|
function vvvvwcq(protocol_vvvvwcq,authentication_vvvvwcq)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
if (isSet(protocol_vvvvwcq) && protocol_vvvvwcq.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
var temp_vvvvwcq = protocol_vvvvwcq;
|
|
|
|
var protocol_vvvvwcq = [];
|
|
|
|
protocol_vvvvwcq.push(temp_vvvvwcq);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-07-28 21:48:42 +00:00
|
|
|
else if (!isSet(protocol_vvvvwcq))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
var protocol_vvvvwcq = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-07-28 21:48:42 +00:00
|
|
|
var protocol = protocol_vvvvwcq.some(protocol_vvvvwcq_SomeFunc);
|
2018-02-15 00:42:39 +00:00
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
if (isSet(authentication_vvvvwcq) && authentication_vvvvwcq.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
var temp_vvvvwcq = authentication_vvvvwcq;
|
|
|
|
var authentication_vvvvwcq = [];
|
|
|
|
authentication_vvvvwcq.push(temp_vvvvwcq);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-07-28 21:48:42 +00:00
|
|
|
else if (!isSet(authentication_vvvvwcq))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
var authentication_vvvvwcq = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-07-28 21:48:42 +00:00
|
|
|
var authentication = authentication_vvvvwcq.some(authentication_vvvvwcq_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-07-28 21:48:42 +00:00
|
|
|
if (jform_vvvvwcqvyd_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-07-28 21:48:42 +00:00
|
|
|
jform_vvvvwcqvyd_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-07-28 21:48:42 +00:00
|
|
|
if (!jform_vvvvwcqvyd_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-07-28 21:48:42 +00:00
|
|
|
jform_vvvvwcqvyd_required = true;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvwcq Some function
|
|
|
|
function protocol_vvvvwcq_SomeFunc(protocol_vvvvwcq)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-28 21:48:42 +00:00
|
|
|
if (protocol_vvvvwcq == 2)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvwcq Some function
|
|
|
|
function authentication_vvvvwcq_SomeFunc(authentication_vvvvwcq)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-28 21:48:42 +00:00
|
|
|
if (authentication_vvvvwcq == 1 || authentication_vvvvwcq == 3 || authentication_vvvvwcq == 5)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvwcs function
|
|
|
|
function vvvvwcs(protocol_vvvvwcs,authentication_vvvvwcs)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
if (isSet(protocol_vvvvwcs) && protocol_vvvvwcs.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
var temp_vvvvwcs = protocol_vvvvwcs;
|
|
|
|
var protocol_vvvvwcs = [];
|
|
|
|
protocol_vvvvwcs.push(temp_vvvvwcs);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-07-28 21:48:42 +00:00
|
|
|
else if (!isSet(protocol_vvvvwcs))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
var protocol_vvvvwcs = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-07-28 21:48:42 +00:00
|
|
|
var protocol = protocol_vvvvwcs.some(protocol_vvvvwcs_SomeFunc);
|
2018-02-15 00:42:39 +00:00
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
if (isSet(authentication_vvvvwcs) && authentication_vvvvwcs.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
var temp_vvvvwcs = authentication_vvvvwcs;
|
|
|
|
var authentication_vvvvwcs = [];
|
|
|
|
authentication_vvvvwcs.push(temp_vvvvwcs);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-07-28 21:48:42 +00:00
|
|
|
else if (!isSet(authentication_vvvvwcs))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
var authentication_vvvvwcs = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-07-28 21:48:42 +00:00
|
|
|
var authentication = authentication_vvvvwcs.some(authentication_vvvvwcs_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-07-28 21:48:42 +00:00
|
|
|
if (jform_vvvvwcsvye_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-07-28 21:48:42 +00:00
|
|
|
jform_vvvvwcsvye_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-07-28 21:48:42 +00:00
|
|
|
if (!jform_vvvvwcsvye_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-07-28 21:48:42 +00:00
|
|
|
jform_vvvvwcsvye_required = true;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvwcs Some function
|
|
|
|
function protocol_vvvvwcs_SomeFunc(protocol_vvvvwcs)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-28 21:48:42 +00:00
|
|
|
if (protocol_vvvvwcs == 2)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvwcs Some function
|
|
|
|
function authentication_vvvvwcs_SomeFunc(authentication_vvvvwcs)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-28 21:48:42 +00:00
|
|
|
if (authentication_vvvvwcs == 2 || authentication_vvvvwcs == 3)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvwcu function
|
|
|
|
function vvvvwcu(protocol_vvvvwcu,authentication_vvvvwcu)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
if (isSet(protocol_vvvvwcu) && protocol_vvvvwcu.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
var temp_vvvvwcu = protocol_vvvvwcu;
|
|
|
|
var protocol_vvvvwcu = [];
|
|
|
|
protocol_vvvvwcu.push(temp_vvvvwcu);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-07-28 21:48:42 +00:00
|
|
|
else if (!isSet(protocol_vvvvwcu))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
var protocol_vvvvwcu = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-07-28 21:48:42 +00:00
|
|
|
var protocol = protocol_vvvvwcu.some(protocol_vvvvwcu_SomeFunc);
|
2018-02-15 00:42:39 +00:00
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
if (isSet(authentication_vvvvwcu) && authentication_vvvvwcu.constructor !== Array)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
var temp_vvvvwcu = authentication_vvvvwcu;
|
|
|
|
var authentication_vvvvwcu = [];
|
|
|
|
authentication_vvvvwcu.push(temp_vvvvwcu);
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-07-28 21:48:42 +00:00
|
|
|
else if (!isSet(authentication_vvvvwcu))
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
var authentication_vvvvwcu = [];
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
2019-07-28 21:48:42 +00:00
|
|
|
var authentication = authentication_vvvvwcu.some(authentication_vvvvwcu_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-07-28 21:48:42 +00:00
|
|
|
if (jform_vvvvwcuvyf_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-07-28 21:48:42 +00:00
|
|
|
jform_vvvvwcuvyf_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-07-28 21:48:42 +00:00
|
|
|
if (!jform_vvvvwcuvyf_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-07-28 21:48:42 +00:00
|
|
|
jform_vvvvwcuvyf_required = true;
|
2018-03-06 02:28:44 +00:00
|
|
|
}
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvwcu Some function
|
|
|
|
function protocol_vvvvwcu_SomeFunc(protocol_vvvvwcu)
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-28 21:48:42 +00:00
|
|
|
if (protocol_vvvvwcu == 2)
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvwcu Some function
|
|
|
|
function authentication_vvvvwcu_SomeFunc(authentication_vvvvwcu)
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-28 21:48:42 +00:00
|
|
|
if (authentication_vvvvwcu == 4 || authentication_vvvvwcu == 5)
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvwcw function
|
|
|
|
function vvvvwcw(protocol_vvvvwcw,authentication_vvvvwcw)
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
if (isSet(protocol_vvvvwcw) && protocol_vvvvwcw.constructor !== Array)
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
var temp_vvvvwcw = protocol_vvvvwcw;
|
|
|
|
var protocol_vvvvwcw = [];
|
|
|
|
protocol_vvvvwcw.push(temp_vvvvwcw);
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
2019-07-28 21:48:42 +00:00
|
|
|
else if (!isSet(protocol_vvvvwcw))
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
var protocol_vvvvwcw = [];
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
2019-07-28 21:48:42 +00:00
|
|
|
var protocol = protocol_vvvvwcw.some(protocol_vvvvwcw_SomeFunc);
|
2018-02-15 00:42:39 +00:00
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
if (isSet(authentication_vvvvwcw) && authentication_vvvvwcw.constructor !== Array)
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
var temp_vvvvwcw = authentication_vvvvwcw;
|
|
|
|
var authentication_vvvvwcw = [];
|
|
|
|
authentication_vvvvwcw.push(temp_vvvvwcw);
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
2019-07-28 21:48:42 +00:00
|
|
|
else if (!isSet(authentication_vvvvwcw))
|
2018-02-27 12:17:38 +00:00
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
var authentication_vvvvwcw = [];
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
2019-07-28 21:48:42 +00:00
|
|
|
var authentication = authentication_vvvvwcw.some(authentication_vvvvwcw_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-07-28 21:48:42 +00:00
|
|
|
// the vvvvwcw Some function
|
|
|
|
function protocol_vvvvwcw_SomeFunc(protocol_vvvvwcw)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-28 21:48:42 +00:00
|
|
|
if (protocol_vvvvwcw == 2)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvwcw Some function
|
|
|
|
function authentication_vvvvwcw_SomeFunc(authentication_vvvvwcw)
|
2018-02-15 00:42:39 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-28 21:48:42 +00:00
|
|
|
if (authentication_vvvvwcw == 2 || authentication_vvvvwcw == 3 || authentication_vvvvwcw == 4 || authentication_vvvvwcw == 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;
|
|
|
|
}
|