2015-12-23 12:44:56 +00:00
|
|
|
/*--------------------------------------------------------------------------------------------------------| www.vdm.io |------/
|
|
|
|
__ __ _ _____ _ _ __ __ _ _ _
|
|
|
|
\ \ / / | | | __ \ | | | | | \/ | | | | | | |
|
|
|
|
\ \ / /_ _ ___| |_ | | | | _____ _____| | ___ _ __ _ __ ___ ___ _ __ | |_ | \ / | ___| |_| |__ ___ __| |
|
|
|
|
\ \/ / _` / __| __| | | | |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __| | |\/| |/ _ \ __| '_ \ / _ \ / _` |
|
|
|
|
\ / (_| \__ \ |_ | |__| | __/\ V / __/ | (_) | |_) | | | | | | __/ | | | |_ | | | | __/ |_| | | | (_) | (_| |
|
|
|
|
\/ \__,_|___/\__| |_____/ \___| \_/ \___|_|\___/| .__/|_| |_| |_|\___|_| |_|\__| |_| |_|\___|\__|_| |_|\___/ \__,_|
|
|
|
|
| |
|
|
|
|
|_|
|
|
|
|
/-------------------------------------------------------------------------------------------------------------------------------/
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2015-12-23 12:44:56 +00:00
|
|
|
@version 1.3.0
|
2016-02-20 18:13:54 +00:00
|
|
|
@build 20th February, 2016
|
2015-11-30 21:30:54 +00:00
|
|
|
@created 22nd October, 2015
|
|
|
|
@package Sermon Distributor
|
|
|
|
@subpackage help_document.js
|
|
|
|
@author Llewellyn van der Merwe <https://www.vdm.io/>
|
|
|
|
@copyright Copyright (C) 2015. All Rights Reserved
|
2015-12-23 12:44:56 +00:00
|
|
|
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
|
|
|
|
A sermon distributor that links to Dropbox.
|
|
|
|
|
|
|
|
/-----------------------------------------------------------------------------------------------------------------------------*/
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
// Some Global Values
|
2016-02-21 00:07:31 +00:00
|
|
|
jform_LRbFdTDVsa_required = false;
|
|
|
|
jform_SVZGybebRw_required = false;
|
|
|
|
jform_ULuYNQgQpE_required = false;
|
|
|
|
jform_HWyJIuCeuW_required = false;
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
// Initial Script
|
|
|
|
jQuery(document).ready(function()
|
|
|
|
{
|
2016-02-21 00:07:31 +00:00
|
|
|
var location_KPuQSWe = jQuery("#jform_location input[type='radio']:checked").val();
|
|
|
|
KPuQSWe(location_KPuQSWe);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2016-02-21 00:07:31 +00:00
|
|
|
var location_exhczAS = jQuery("#jform_location input[type='radio']:checked").val();
|
|
|
|
exhczAS(location_exhczAS);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2016-02-21 00:07:31 +00:00
|
|
|
var type_LRbFdTD = jQuery("#jform_type").val();
|
|
|
|
LRbFdTD(type_LRbFdTD);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2016-02-21 00:07:31 +00:00
|
|
|
var type_SVZGybe = jQuery("#jform_type").val();
|
|
|
|
SVZGybe(type_SVZGybe);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2016-02-21 00:07:31 +00:00
|
|
|
var type_ULuYNQg = jQuery("#jform_type").val();
|
|
|
|
ULuYNQg(type_ULuYNQg);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2016-02-21 00:07:31 +00:00
|
|
|
var target_HWyJIuC = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
HWyJIuC(target_HWyJIuC);
|
2015-11-30 21:30:54 +00:00
|
|
|
});
|
|
|
|
|
2016-02-21 00:07:31 +00:00
|
|
|
// the KPuQSWe function
|
|
|
|
function KPuQSWe(location_KPuQSWe)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2016-02-20 18:13:54 +00:00
|
|
|
// [8696] set the function logic
|
2016-02-21 00:07:31 +00:00
|
|
|
if (location_KPuQSWe == 1)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
jQuery('#jform_admin_view').closest('.control-group').show();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_admin_view').closest('.control-group').hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-21 00:07:31 +00:00
|
|
|
// the exhczAS function
|
|
|
|
function exhczAS(location_exhczAS)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2016-02-20 18:13:54 +00:00
|
|
|
// [8696] set the function logic
|
2016-02-21 00:07:31 +00:00
|
|
|
if (location_exhczAS == 2)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
jQuery('#jform_site_view').closest('.control-group').show();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_site_view').closest('.control-group').hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-21 00:07:31 +00:00
|
|
|
// the LRbFdTD function
|
|
|
|
function LRbFdTD(type_LRbFdTD)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2016-02-21 00:07:31 +00:00
|
|
|
if (isSet(type_LRbFdTD) && type_LRbFdTD.constructor !== Array)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2016-02-21 00:07:31 +00:00
|
|
|
var temp_LRbFdTD = type_LRbFdTD;
|
|
|
|
var type_LRbFdTD = [];
|
|
|
|
type_LRbFdTD.push(temp_LRbFdTD);
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2016-02-21 00:07:31 +00:00
|
|
|
else if (!isSet(type_LRbFdTD))
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2016-02-21 00:07:31 +00:00
|
|
|
var type_LRbFdTD = [];
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2016-02-21 00:07:31 +00:00
|
|
|
var type = type_LRbFdTD.some(type_LRbFdTD_SomeFunc);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
|
2016-02-20 18:13:54 +00:00
|
|
|
// [8674] set this function logic
|
2015-11-30 21:30:54 +00:00
|
|
|
if (type)
|
|
|
|
{
|
|
|
|
jQuery('#jform_url').closest('.control-group').show();
|
2016-02-21 00:07:31 +00:00
|
|
|
if (jform_LRbFdTDVsa_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');
|
2016-02-21 00:07:31 +00:00
|
|
|
jform_LRbFdTDVsa_required = false;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_url').closest('.control-group').hide();
|
2016-02-21 00:07:31 +00:00
|
|
|
if (!jform_LRbFdTDVsa_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');
|
2016-02-21 00:07:31 +00:00
|
|
|
jform_LRbFdTDVsa_required = true;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-21 00:07:31 +00:00
|
|
|
// the LRbFdTD Some function
|
|
|
|
function type_LRbFdTD_SomeFunc(type_LRbFdTD)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2016-02-20 18:13:54 +00:00
|
|
|
// [8661] set the function logic
|
2016-02-21 00:07:31 +00:00
|
|
|
if (type_LRbFdTD == 3)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-02-21 00:07:31 +00:00
|
|
|
// the SVZGybe function
|
|
|
|
function SVZGybe(type_SVZGybe)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2016-02-21 00:07:31 +00:00
|
|
|
if (isSet(type_SVZGybe) && type_SVZGybe.constructor !== Array)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2016-02-21 00:07:31 +00:00
|
|
|
var temp_SVZGybe = type_SVZGybe;
|
|
|
|
var type_SVZGybe = [];
|
|
|
|
type_SVZGybe.push(temp_SVZGybe);
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2016-02-21 00:07:31 +00:00
|
|
|
else if (!isSet(type_SVZGybe))
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2016-02-21 00:07:31 +00:00
|
|
|
var type_SVZGybe = [];
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2016-02-21 00:07:31 +00:00
|
|
|
var type = type_SVZGybe.some(type_SVZGybe_SomeFunc);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
|
2016-02-20 18:13:54 +00:00
|
|
|
// [8674] set this function logic
|
2015-11-30 21:30:54 +00:00
|
|
|
if (type)
|
|
|
|
{
|
|
|
|
jQuery('#jform_article').closest('.control-group').show();
|
2016-02-21 00:07:31 +00:00
|
|
|
if (jform_SVZGybebRw_required)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('article',0);
|
|
|
|
jQuery('#jform_article').prop('required','required');
|
|
|
|
jQuery('#jform_article').attr('aria-required',true);
|
|
|
|
jQuery('#jform_article').addClass('required');
|
2016-02-21 00:07:31 +00:00
|
|
|
jform_SVZGybebRw_required = false;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_article').closest('.control-group').hide();
|
2016-02-21 00:07:31 +00:00
|
|
|
if (!jform_SVZGybebRw_required)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('article',1);
|
|
|
|
jQuery('#jform_article').removeAttr('required');
|
|
|
|
jQuery('#jform_article').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_article').removeClass('required');
|
2016-02-21 00:07:31 +00:00
|
|
|
jform_SVZGybebRw_required = true;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-21 00:07:31 +00:00
|
|
|
// the SVZGybe Some function
|
|
|
|
function type_SVZGybe_SomeFunc(type_SVZGybe)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2016-02-20 18:13:54 +00:00
|
|
|
// [8661] set the function logic
|
2016-02-21 00:07:31 +00:00
|
|
|
if (type_SVZGybe == 1)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-02-21 00:07:31 +00:00
|
|
|
// the ULuYNQg function
|
|
|
|
function ULuYNQg(type_ULuYNQg)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2016-02-21 00:07:31 +00:00
|
|
|
if (isSet(type_ULuYNQg) && type_ULuYNQg.constructor !== Array)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2016-02-21 00:07:31 +00:00
|
|
|
var temp_ULuYNQg = type_ULuYNQg;
|
|
|
|
var type_ULuYNQg = [];
|
|
|
|
type_ULuYNQg.push(temp_ULuYNQg);
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2016-02-21 00:07:31 +00:00
|
|
|
else if (!isSet(type_ULuYNQg))
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2016-02-21 00:07:31 +00:00
|
|
|
var type_ULuYNQg = [];
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2016-02-21 00:07:31 +00:00
|
|
|
var type = type_ULuYNQg.some(type_ULuYNQg_SomeFunc);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
|
2016-02-20 18:13:54 +00:00
|
|
|
// [8674] set this function logic
|
2015-11-30 21:30:54 +00:00
|
|
|
if (type)
|
|
|
|
{
|
|
|
|
jQuery('#jform_content-lbl').closest('.control-group').show();
|
2016-02-21 00:07:31 +00:00
|
|
|
if (jform_ULuYNQgQpE_required)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('content',0);
|
|
|
|
jQuery('#jform_content').prop('required','required');
|
|
|
|
jQuery('#jform_content').attr('aria-required',true);
|
|
|
|
jQuery('#jform_content').addClass('required');
|
2016-02-21 00:07:31 +00:00
|
|
|
jform_ULuYNQgQpE_required = false;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_content-lbl').closest('.control-group').hide();
|
2016-02-21 00:07:31 +00:00
|
|
|
if (!jform_ULuYNQgQpE_required)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('content',1);
|
|
|
|
jQuery('#jform_content').removeAttr('required');
|
|
|
|
jQuery('#jform_content').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_content').removeClass('required');
|
2016-02-21 00:07:31 +00:00
|
|
|
jform_ULuYNQgQpE_required = true;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-21 00:07:31 +00:00
|
|
|
// the ULuYNQg Some function
|
|
|
|
function type_ULuYNQg_SomeFunc(type_ULuYNQg)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2016-02-20 18:13:54 +00:00
|
|
|
// [8661] set the function logic
|
2016-02-21 00:07:31 +00:00
|
|
|
if (type_ULuYNQg == 2)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-02-21 00:07:31 +00:00
|
|
|
// the HWyJIuC function
|
|
|
|
function HWyJIuC(target_HWyJIuC)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2016-02-20 18:13:54 +00:00
|
|
|
// [8696] set the function logic
|
2016-02-21 00:07:31 +00:00
|
|
|
if (target_HWyJIuC == 1)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
jQuery('#jform_groups').closest('.control-group').show();
|
2016-02-21 00:07:31 +00:00
|
|
|
if (jform_HWyJIuCeuW_required)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('groups',0);
|
|
|
|
jQuery('#jform_groups').prop('required','required');
|
|
|
|
jQuery('#jform_groups').attr('aria-required',true);
|
|
|
|
jQuery('#jform_groups').addClass('required');
|
2016-02-21 00:07:31 +00:00
|
|
|
jform_HWyJIuCeuW_required = false;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_groups').closest('.control-group').hide();
|
2016-02-21 00:07:31 +00:00
|
|
|
if (!jform_HWyJIuCeuW_required)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
updateFieldRequired('groups',1);
|
|
|
|
jQuery('#jform_groups').removeAttr('required');
|
|
|
|
jQuery('#jform_groups').removeAttr('aria-required');
|
|
|
|
jQuery('#jform_groups').removeClass('required');
|
2016-02-21 00:07:31 +00:00
|
|
|
jform_HWyJIuCeuW_required = true;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
}
|