2015-11-30 21:30:54 +00:00
|
|
|
/*----------------------------------------------------------------------------------| www.vdm.io |----/
|
|
|
|
Vast Development Method
|
|
|
|
/-------------------------------------------------------------------------------------------------------/
|
|
|
|
|
|
|
|
@version 1.2.9
|
2015-12-01 00:19:11 +00:00
|
|
|
@build 1st December, 2015
|
2015-11-30 21:30:54 +00:00
|
|
|
@created 22nd October, 2015
|
|
|
|
@package Sermon Distributor
|
|
|
|
@subpackage sermon.js
|
|
|
|
@author Llewellyn van der Merwe <https://www.vdm.io/>
|
|
|
|
@copyright Copyright (C) 2015. All Rights Reserved
|
|
|
|
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
____ _____ _____ __ __ __ __ ___ _____ __ __ ____ _____ _ _ ____ _ _ ____
|
|
|
|
(_ _)( _ )( _ )( \/ )( ) /__\ / __)( _ )( \/ )( _ \( _ )( \( )( ___)( \( )(_ _)
|
|
|
|
.-_)( )(_)( )(_)( ) ( )(__ /(__)\ ( (__ )(_)( ) ( )___/ )(_)( ) ( )__) ) ( )(
|
|
|
|
\____) (_____)(_____)(_/\/\_)(____)(__)(__) \___)(_____)(_/\/\_)(__) (_____)(_)\_)(____)(_)\_) (__)
|
|
|
|
|
|
|
|
/------------------------------------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
// Some Global Values
|
2015-12-01 00:24:32 +00:00
|
|
|
jform_mWnyiWrQzD_required = false;
|
|
|
|
jform_USEyiqHsmP_required = false;
|
|
|
|
jform_PuIkmmJLYI_required = false;
|
|
|
|
jform_rZyqFpzhBR_required = false;
|
|
|
|
jform_pwLZOSxoqG_required = false;
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
// Initial Script
|
|
|
|
jQuery(document).ready(function()
|
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
var source_mWnyiWr = jQuery("#jform_source").val();
|
|
|
|
mWnyiWr(source_mWnyiWr);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
var source_qGZCbLd = jQuery("#jform_source").val();
|
|
|
|
var build_qGZCbLd = jQuery("#jform_build input[type='radio']:checked").val();
|
|
|
|
qGZCbLd(source_qGZCbLd,build_qGZCbLd);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
var source_USEyiqH = jQuery("#jform_source").val();
|
|
|
|
var build_USEyiqH = jQuery("#jform_build input[type='radio']:checked").val();
|
|
|
|
USEyiqH(source_USEyiqH,build_USEyiqH);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
var build_PuIkmmJ = jQuery("#jform_build input[type='radio']:checked").val();
|
|
|
|
var source_PuIkmmJ = jQuery("#jform_source").val();
|
|
|
|
PuIkmmJ(build_PuIkmmJ,source_PuIkmmJ);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
var source_rZyqFpz = jQuery("#jform_source").val();
|
|
|
|
rZyqFpz(source_rZyqFpz);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
var source_pwLZOSx = jQuery("#jform_source").val();
|
|
|
|
pwLZOSx(source_pwLZOSx);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
var link_type_hfgQmzf = jQuery("#jform_link_type input[type='radio']:checked").val();
|
|
|
|
hfgQmzf(link_type_hfgQmzf);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
var link_type_bdfNqfg = jQuery("#jform_link_type input[type='radio']:checked").val();
|
|
|
|
bdfNqfg(link_type_bdfNqfg);
|
2015-11-30 21:30:54 +00:00
|
|
|
});
|
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
// the mWnyiWr function
|
|
|
|
function mWnyiWr(source_mWnyiWr)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
if (isSet(source_mWnyiWr) && source_mWnyiWr.constructor !== Array)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
var temp_mWnyiWr = source_mWnyiWr;
|
|
|
|
var source_mWnyiWr = [];
|
|
|
|
source_mWnyiWr.push(temp_mWnyiWr);
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-01 00:24:32 +00:00
|
|
|
else if (!isSet(source_mWnyiWr))
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
var source_mWnyiWr = [];
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-01 00:24:32 +00:00
|
|
|
var source = source_mWnyiWr.some(source_mWnyiWr_SomeFunc);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
// [7979] set this function logic
|
2015-11-30 21:30:54 +00:00
|
|
|
if (source)
|
|
|
|
{
|
|
|
|
jQuery('#jform_build').closest('.control-group').show();
|
2015-12-01 00:24:32 +00:00
|
|
|
if (jform_mWnyiWrQzD_required)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('build',0);
|
|
|
|
jQuery('#jform_build').prop('required','required');
|
|
|
|
jQuery('#jform_build').attr('aria-required',true);
|
|
|
|
jQuery('#jform_build').addClass('required');
|
2015-12-01 00:24:32 +00:00
|
|
|
jform_mWnyiWrQzD_required = false;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_build').closest('.control-group').hide();
|
2015-12-01 00:24:32 +00:00
|
|
|
if (!jform_mWnyiWrQzD_required)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('build',1);
|
|
|
|
jQuery('#jform_build').removeAttr('required');
|
|
|
|
jQuery('#jform_build').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_build').removeClass('required');
|
2015-12-01 00:24:32 +00:00
|
|
|
jform_mWnyiWrQzD_required = true;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
// the mWnyiWr Some function
|
|
|
|
function source_mWnyiWr_SomeFunc(source_mWnyiWr)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
// [7966] set the function logic
|
|
|
|
if (source_mWnyiWr == 2)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
// the qGZCbLd function
|
|
|
|
function qGZCbLd(source_qGZCbLd,build_qGZCbLd)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
if (isSet(source_qGZCbLd) && source_qGZCbLd.constructor !== Array)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
var temp_qGZCbLd = source_qGZCbLd;
|
|
|
|
var source_qGZCbLd = [];
|
|
|
|
source_qGZCbLd.push(temp_qGZCbLd);
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-01 00:24:32 +00:00
|
|
|
else if (!isSet(source_qGZCbLd))
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
var source_qGZCbLd = [];
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-01 00:24:32 +00:00
|
|
|
var source = source_qGZCbLd.some(source_qGZCbLd_SomeFunc);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
if (isSet(build_qGZCbLd) && build_qGZCbLd.constructor !== Array)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
var temp_qGZCbLd = build_qGZCbLd;
|
|
|
|
var build_qGZCbLd = [];
|
|
|
|
build_qGZCbLd.push(temp_qGZCbLd);
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-01 00:24:32 +00:00
|
|
|
else if (!isSet(build_qGZCbLd))
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
var build_qGZCbLd = [];
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-01 00:24:32 +00:00
|
|
|
var build = build_qGZCbLd.some(build_qGZCbLd_SomeFunc);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
// [7979] set this function logic
|
2015-11-30 21:30:54 +00:00
|
|
|
if (source && build)
|
|
|
|
{
|
|
|
|
jQuery('.note_auto_dropbox').closest('.control-group').show();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('.note_auto_dropbox').closest('.control-group').hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
// the qGZCbLd Some function
|
|
|
|
function source_qGZCbLd_SomeFunc(source_qGZCbLd)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
// [7966] set the function logic
|
|
|
|
if (source_qGZCbLd == 2)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
// the qGZCbLd Some function
|
|
|
|
function build_qGZCbLd_SomeFunc(build_qGZCbLd)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
// [7966] set the function logic
|
|
|
|
if (build_qGZCbLd == 2)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
// the USEyiqH function
|
|
|
|
function USEyiqH(source_USEyiqH,build_USEyiqH)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
if (isSet(source_USEyiqH) && source_USEyiqH.constructor !== Array)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
var temp_USEyiqH = source_USEyiqH;
|
|
|
|
var source_USEyiqH = [];
|
|
|
|
source_USEyiqH.push(temp_USEyiqH);
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-01 00:24:32 +00:00
|
|
|
else if (!isSet(source_USEyiqH))
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
var source_USEyiqH = [];
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-01 00:24:32 +00:00
|
|
|
var source = source_USEyiqH.some(source_USEyiqH_SomeFunc);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
if (isSet(build_USEyiqH) && build_USEyiqH.constructor !== Array)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
var temp_USEyiqH = build_USEyiqH;
|
|
|
|
var build_USEyiqH = [];
|
|
|
|
build_USEyiqH.push(temp_USEyiqH);
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-01 00:24:32 +00:00
|
|
|
else if (!isSet(build_USEyiqH))
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
var build_USEyiqH = [];
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-01 00:24:32 +00:00
|
|
|
var build = build_USEyiqH.some(build_USEyiqH_SomeFunc);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
// [7979] set this function logic
|
2015-11-30 21:30:54 +00:00
|
|
|
if (source && build)
|
|
|
|
{
|
|
|
|
jQuery('#jform_manual_files').closest('.control-group').show();
|
2015-12-01 00:24:32 +00:00
|
|
|
if (jform_USEyiqHsmP_required)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('manual_files',0);
|
|
|
|
jQuery('#jform_manual_files').prop('required','required');
|
|
|
|
jQuery('#jform_manual_files').attr('aria-required',true);
|
|
|
|
jQuery('#jform_manual_files').addClass('required');
|
2015-12-01 00:24:32 +00:00
|
|
|
jform_USEyiqHsmP_required = false;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
jQuery('.note_manual_dropbox').closest('.control-group').show();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_manual_files').closest('.control-group').hide();
|
2015-12-01 00:24:32 +00:00
|
|
|
if (!jform_USEyiqHsmP_required)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('manual_files',1);
|
|
|
|
jQuery('#jform_manual_files').removeAttr('required');
|
|
|
|
jQuery('#jform_manual_files').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_manual_files').removeClass('required');
|
2015-12-01 00:24:32 +00:00
|
|
|
jform_USEyiqHsmP_required = true;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
jQuery('.note_manual_dropbox').closest('.control-group').hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
// the USEyiqH Some function
|
|
|
|
function source_USEyiqH_SomeFunc(source_USEyiqH)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
// [7966] set the function logic
|
|
|
|
if (source_USEyiqH == 2)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
// the USEyiqH Some function
|
|
|
|
function build_USEyiqH_SomeFunc(build_USEyiqH)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
// [7966] set the function logic
|
|
|
|
if (build_USEyiqH == 1)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
// the PuIkmmJ function
|
|
|
|
function PuIkmmJ(build_PuIkmmJ,source_PuIkmmJ)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
if (isSet(build_PuIkmmJ) && build_PuIkmmJ.constructor !== Array)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
var temp_PuIkmmJ = build_PuIkmmJ;
|
|
|
|
var build_PuIkmmJ = [];
|
|
|
|
build_PuIkmmJ.push(temp_PuIkmmJ);
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-01 00:24:32 +00:00
|
|
|
else if (!isSet(build_PuIkmmJ))
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
var build_PuIkmmJ = [];
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-01 00:24:32 +00:00
|
|
|
var build = build_PuIkmmJ.some(build_PuIkmmJ_SomeFunc);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
if (isSet(source_PuIkmmJ) && source_PuIkmmJ.constructor !== Array)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
var temp_PuIkmmJ = source_PuIkmmJ;
|
|
|
|
var source_PuIkmmJ = [];
|
|
|
|
source_PuIkmmJ.push(temp_PuIkmmJ);
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-01 00:24:32 +00:00
|
|
|
else if (!isSet(source_PuIkmmJ))
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
var source_PuIkmmJ = [];
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-01 00:24:32 +00:00
|
|
|
var source = source_PuIkmmJ.some(source_PuIkmmJ_SomeFunc);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
// [7979] set this function logic
|
2015-11-30 21:30:54 +00:00
|
|
|
if (build && source)
|
|
|
|
{
|
|
|
|
jQuery('#jform_manual_files').closest('.control-group').show();
|
2015-12-01 00:24:32 +00:00
|
|
|
if (jform_PuIkmmJLYI_required)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('manual_files',0);
|
|
|
|
jQuery('#jform_manual_files').prop('required','required');
|
|
|
|
jQuery('#jform_manual_files').attr('aria-required',true);
|
|
|
|
jQuery('#jform_manual_files').addClass('required');
|
2015-12-01 00:24:32 +00:00
|
|
|
jform_PuIkmmJLYI_required = false;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
jQuery('.note_manual_dropbox').closest('.control-group').show();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_manual_files').closest('.control-group').hide();
|
2015-12-01 00:24:32 +00:00
|
|
|
if (!jform_PuIkmmJLYI_required)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('manual_files',1);
|
|
|
|
jQuery('#jform_manual_files').removeAttr('required');
|
|
|
|
jQuery('#jform_manual_files').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_manual_files').removeClass('required');
|
2015-12-01 00:24:32 +00:00
|
|
|
jform_PuIkmmJLYI_required = true;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
jQuery('.note_manual_dropbox').closest('.control-group').hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
// the PuIkmmJ Some function
|
|
|
|
function build_PuIkmmJ_SomeFunc(build_PuIkmmJ)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
// [7966] set the function logic
|
|
|
|
if (build_PuIkmmJ == 1)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
// the PuIkmmJ Some function
|
|
|
|
function source_PuIkmmJ_SomeFunc(source_PuIkmmJ)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
// [7966] set the function logic
|
|
|
|
if (source_PuIkmmJ == 2)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
// the rZyqFpz function
|
|
|
|
function rZyqFpz(source_rZyqFpz)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
if (isSet(source_rZyqFpz) && source_rZyqFpz.constructor !== Array)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
var temp_rZyqFpz = source_rZyqFpz;
|
|
|
|
var source_rZyqFpz = [];
|
|
|
|
source_rZyqFpz.push(temp_rZyqFpz);
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-01 00:24:32 +00:00
|
|
|
else if (!isSet(source_rZyqFpz))
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
var source_rZyqFpz = [];
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-01 00:24:32 +00:00
|
|
|
var source = source_rZyqFpz.some(source_rZyqFpz_SomeFunc);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
// [7979] set this function logic
|
2015-11-30 21:30:54 +00:00
|
|
|
if (source)
|
|
|
|
{
|
|
|
|
jQuery('#jform_local_files').closest('.control-group').show();
|
2015-12-01 00:24:32 +00:00
|
|
|
if (jform_rZyqFpzhBR_required)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('local_files',0);
|
|
|
|
jQuery('#jform_local_files').prop('required','required');
|
|
|
|
jQuery('#jform_local_files').attr('aria-required',true);
|
|
|
|
jQuery('#jform_local_files').addClass('required');
|
2015-12-01 00:24:32 +00:00
|
|
|
jform_rZyqFpzhBR_required = false;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_local_files').closest('.control-group').hide();
|
2015-12-01 00:24:32 +00:00
|
|
|
if (!jform_rZyqFpzhBR_required)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('local_files',1);
|
|
|
|
jQuery('#jform_local_files').removeAttr('required');
|
|
|
|
jQuery('#jform_local_files').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_local_files').removeClass('required');
|
2015-12-01 00:24:32 +00:00
|
|
|
jform_rZyqFpzhBR_required = true;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
// the rZyqFpz Some function
|
|
|
|
function source_rZyqFpz_SomeFunc(source_rZyqFpz)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
// [7966] set the function logic
|
|
|
|
if (source_rZyqFpz == 1)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
// the pwLZOSx function
|
|
|
|
function pwLZOSx(source_pwLZOSx)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
if (isSet(source_pwLZOSx) && source_pwLZOSx.constructor !== Array)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
var temp_pwLZOSx = source_pwLZOSx;
|
|
|
|
var source_pwLZOSx = [];
|
|
|
|
source_pwLZOSx.push(temp_pwLZOSx);
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-01 00:24:32 +00:00
|
|
|
else if (!isSet(source_pwLZOSx))
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
var source_pwLZOSx = [];
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-01 00:24:32 +00:00
|
|
|
var source = source_pwLZOSx.some(source_pwLZOSx_SomeFunc);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
// [7979] set this function logic
|
2015-11-30 21:30:54 +00:00
|
|
|
if (source)
|
|
|
|
{
|
|
|
|
jQuery('#jform_url').closest('.control-group').show();
|
2015-12-01 00:24:32 +00:00
|
|
|
if (jform_pwLZOSxoqG_required)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('url',0);
|
|
|
|
jQuery('#jform_url').prop('required','required');
|
|
|
|
jQuery('#jform_url').attr('aria-required',true);
|
|
|
|
jQuery('#jform_url').addClass('required');
|
2015-12-01 00:24:32 +00:00
|
|
|
jform_pwLZOSxoqG_required = false;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_url').closest('.control-group').hide();
|
2015-12-01 00:24:32 +00:00
|
|
|
if (!jform_pwLZOSxoqG_required)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('url',1);
|
|
|
|
jQuery('#jform_url').removeAttr('required');
|
|
|
|
jQuery('#jform_url').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_url').removeClass('required');
|
2015-12-01 00:24:32 +00:00
|
|
|
jform_pwLZOSxoqG_required = true;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
// the pwLZOSx Some function
|
|
|
|
function source_pwLZOSx_SomeFunc(source_pwLZOSx)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
// [7966] set the function logic
|
|
|
|
if (source_pwLZOSx == 3)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
// the hfgQmzf function
|
|
|
|
function hfgQmzf(link_type_hfgQmzf)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
// [8001] set the function logic
|
|
|
|
if (link_type_hfgQmzf == 2)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
jQuery('.note_link_directed').closest('.control-group').show();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('.note_link_directed').closest('.control-group').hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-01 00:24:32 +00:00
|
|
|
// the bdfNqfg function
|
|
|
|
function bdfNqfg(link_type_bdfNqfg)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-01 00:24:32 +00:00
|
|
|
// [8001] set the function logic
|
|
|
|
if (link_type_bdfNqfg == 1)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
jQuery('.note_link_encrypted').closest('.control-group').show();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('.note_link_encrypted').closest('.control-group').hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
}
|