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
|
|
|
|
@build 23rd December, 2015
|
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
|
2015-12-23 12:44:56 +00:00
|
|
|
jform_PDcWyEnUDa_required = false;
|
|
|
|
jform_oNdbymxKWg_required = false;
|
|
|
|
jform_QQNYqXlxnF_required = false;
|
|
|
|
jform_xgjGfFertA_required = false;
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
// Initial Script
|
|
|
|
jQuery(document).ready(function()
|
|
|
|
{
|
2015-12-23 12:44:56 +00:00
|
|
|
var location_pLIjTGg = jQuery("#jform_location input[type='radio']:checked").val();
|
|
|
|
pLIjTGg(location_pLIjTGg);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2015-12-23 12:44:56 +00:00
|
|
|
var location_Ajshqyg = jQuery("#jform_location input[type='radio']:checked").val();
|
|
|
|
Ajshqyg(location_Ajshqyg);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2015-12-23 12:44:56 +00:00
|
|
|
var type_PDcWyEn = jQuery("#jform_type").val();
|
|
|
|
PDcWyEn(type_PDcWyEn);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2015-12-23 12:44:56 +00:00
|
|
|
var type_oNdbymx = jQuery("#jform_type").val();
|
|
|
|
oNdbymx(type_oNdbymx);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2015-12-23 12:44:56 +00:00
|
|
|
var type_QQNYqXl = jQuery("#jform_type").val();
|
|
|
|
QQNYqXl(type_QQNYqXl);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2015-12-23 12:44:56 +00:00
|
|
|
var target_xgjGfFe = jQuery("#jform_target input[type='radio']:checked").val();
|
|
|
|
xgjGfFe(target_xgjGfFe);
|
2015-11-30 21:30:54 +00:00
|
|
|
});
|
|
|
|
|
2015-12-23 12:44:56 +00:00
|
|
|
// the pLIjTGg function
|
|
|
|
function pLIjTGg(location_pLIjTGg)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-23 12:44:56 +00:00
|
|
|
// [8248] set the function logic
|
|
|
|
if (location_pLIjTGg == 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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-23 12:44:56 +00:00
|
|
|
// the Ajshqyg function
|
|
|
|
function Ajshqyg(location_Ajshqyg)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-23 12:44:56 +00:00
|
|
|
// [8248] set the function logic
|
|
|
|
if (location_Ajshqyg == 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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-23 12:44:56 +00:00
|
|
|
// the PDcWyEn function
|
|
|
|
function PDcWyEn(type_PDcWyEn)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-23 12:44:56 +00:00
|
|
|
if (isSet(type_PDcWyEn) && type_PDcWyEn.constructor !== Array)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-23 12:44:56 +00:00
|
|
|
var temp_PDcWyEn = type_PDcWyEn;
|
|
|
|
var type_PDcWyEn = [];
|
|
|
|
type_PDcWyEn.push(temp_PDcWyEn);
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-23 12:44:56 +00:00
|
|
|
else if (!isSet(type_PDcWyEn))
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-23 12:44:56 +00:00
|
|
|
var type_PDcWyEn = [];
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-23 12:44:56 +00:00
|
|
|
var type = type_PDcWyEn.some(type_PDcWyEn_SomeFunc);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
|
2015-12-23 12:44:56 +00:00
|
|
|
// [8226] set this function logic
|
2015-11-30 21:30:54 +00:00
|
|
|
if (type)
|
|
|
|
{
|
|
|
|
jQuery('#jform_url').closest('.control-group').show();
|
2015-12-23 12:44:56 +00:00
|
|
|
if (jform_PDcWyEnUDa_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-23 12:44:56 +00:00
|
|
|
jform_PDcWyEnUDa_required = false;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_url').closest('.control-group').hide();
|
2015-12-23 12:44:56 +00:00
|
|
|
if (!jform_PDcWyEnUDa_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-23 12:44:56 +00:00
|
|
|
jform_PDcWyEnUDa_required = true;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-23 12:44:56 +00:00
|
|
|
// the PDcWyEn Some function
|
|
|
|
function type_PDcWyEn_SomeFunc(type_PDcWyEn)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-23 12:44:56 +00:00
|
|
|
// [8213] set the function logic
|
|
|
|
if (type_PDcWyEn == 3)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-23 12:44:56 +00:00
|
|
|
// the oNdbymx function
|
|
|
|
function oNdbymx(type_oNdbymx)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-23 12:44:56 +00:00
|
|
|
if (isSet(type_oNdbymx) && type_oNdbymx.constructor !== Array)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-23 12:44:56 +00:00
|
|
|
var temp_oNdbymx = type_oNdbymx;
|
|
|
|
var type_oNdbymx = [];
|
|
|
|
type_oNdbymx.push(temp_oNdbymx);
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-23 12:44:56 +00:00
|
|
|
else if (!isSet(type_oNdbymx))
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-23 12:44:56 +00:00
|
|
|
var type_oNdbymx = [];
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-23 12:44:56 +00:00
|
|
|
var type = type_oNdbymx.some(type_oNdbymx_SomeFunc);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
|
2015-12-23 12:44:56 +00:00
|
|
|
// [8226] set this function logic
|
2015-11-30 21:30:54 +00:00
|
|
|
if (type)
|
|
|
|
{
|
|
|
|
jQuery('#jform_article').closest('.control-group').show();
|
2015-12-23 12:44:56 +00:00
|
|
|
if (jform_oNdbymxKWg_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');
|
2015-12-23 12:44:56 +00:00
|
|
|
jform_oNdbymxKWg_required = false;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_article').closest('.control-group').hide();
|
2015-12-23 12:44:56 +00:00
|
|
|
if (!jform_oNdbymxKWg_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');
|
2015-12-23 12:44:56 +00:00
|
|
|
jform_oNdbymxKWg_required = true;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-23 12:44:56 +00:00
|
|
|
// the oNdbymx Some function
|
|
|
|
function type_oNdbymx_SomeFunc(type_oNdbymx)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-23 12:44:56 +00:00
|
|
|
// [8213] set the function logic
|
|
|
|
if (type_oNdbymx == 1)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-23 12:44:56 +00:00
|
|
|
// the QQNYqXl function
|
|
|
|
function QQNYqXl(type_QQNYqXl)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-23 12:44:56 +00:00
|
|
|
if (isSet(type_QQNYqXl) && type_QQNYqXl.constructor !== Array)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-23 12:44:56 +00:00
|
|
|
var temp_QQNYqXl = type_QQNYqXl;
|
|
|
|
var type_QQNYqXl = [];
|
|
|
|
type_QQNYqXl.push(temp_QQNYqXl);
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-23 12:44:56 +00:00
|
|
|
else if (!isSet(type_QQNYqXl))
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-23 12:44:56 +00:00
|
|
|
var type_QQNYqXl = [];
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2015-12-23 12:44:56 +00:00
|
|
|
var type = type_QQNYqXl.some(type_QQNYqXl_SomeFunc);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
|
2015-12-23 12:44:56 +00:00
|
|
|
// [8226] set this function logic
|
2015-11-30 21:30:54 +00:00
|
|
|
if (type)
|
|
|
|
{
|
|
|
|
jQuery('#jform_content-lbl').closest('.control-group').show();
|
2015-12-23 12:44:56 +00:00
|
|
|
if (jform_QQNYqXlxnF_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');
|
2015-12-23 12:44:56 +00:00
|
|
|
jform_QQNYqXlxnF_required = false;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_content-lbl').closest('.control-group').hide();
|
2015-12-23 12:44:56 +00:00
|
|
|
if (!jform_QQNYqXlxnF_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');
|
2015-12-23 12:44:56 +00:00
|
|
|
jform_QQNYqXlxnF_required = true;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-23 12:44:56 +00:00
|
|
|
// the QQNYqXl Some function
|
|
|
|
function type_QQNYqXl_SomeFunc(type_QQNYqXl)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-23 12:44:56 +00:00
|
|
|
// [8213] set the function logic
|
|
|
|
if (type_QQNYqXl == 2)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-23 12:44:56 +00:00
|
|
|
// the xgjGfFe function
|
|
|
|
function xgjGfFe(target_xgjGfFe)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2015-12-23 12:44:56 +00:00
|
|
|
// [8248] set the function logic
|
|
|
|
if (target_xgjGfFe == 1)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
jQuery('#jform_groups').closest('.control-group').show();
|
2015-12-23 12:44:56 +00:00
|
|
|
if (jform_xgjGfFertA_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');
|
2015-12-23 12:44:56 +00:00
|
|
|
jform_xgjGfFertA_required = false;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_groups').closest('.control-group').hide();
|
2015-12-23 12:44:56 +00:00
|
|
|
if (!jform_xgjGfFertA_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');
|
2015-12-23 12:44:56 +00:00
|
|
|
jform_xgjGfFertA_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;
|
|
|
|
}
|