2015-11-30 21:30:54 +00:00
|
|
|
<?php
|
2021-08-16 17:11:22 +00:00
|
|
|
/*-------------------------------------------------------------------------------------------------------------| www.vdm.io |------/
|
|
|
|
____ ____ __ __ __
|
|
|
|
/\ _`\ /\ _`\ __ /\ \__ __/\ \ /\ \__
|
|
|
|
\ \,\L\_\ __ _ __ ___ ___ ___ ___ \ \ \/\ \/\_\ ____\ \ ,_\ _ __ /\_\ \ \____ __ __\ \ ,_\ ___ _ __
|
|
|
|
\/_\__ \ /'__`\/\`'__\/' __` __`\ / __`\ /' _ `\ \ \ \ \ \/\ \ /',__\\ \ \/ /\`'__\/\ \ \ '__`\/\ \/\ \\ \ \/ / __`\/\`'__\
|
|
|
|
/\ \L\ \/\ __/\ \ \/ /\ \/\ \/\ \/\ \L\ \/\ \/\ \ \ \ \_\ \ \ \/\__, `\\ \ \_\ \ \/ \ \ \ \ \L\ \ \ \_\ \\ \ \_/\ \L\ \ \ \/
|
|
|
|
\ `\____\ \____\\ \_\ \ \_\ \_\ \_\ \____/\ \_\ \_\ \ \____/\ \_\/\____/ \ \__\\ \_\ \ \_\ \_,__/\ \____/ \ \__\ \____/\ \_\
|
|
|
|
\/_____/\/____/ \/_/ \/_/\/_/\/_/\/___/ \/_/\/_/ \/___/ \/_/\/___/ \/__/ \/_/ \/_/\/___/ \/___/ \/__/\/___/ \/_/
|
|
|
|
|
|
|
|
/------------------------------------------------------------------------------------------------------------------------------------/
|
|
|
|
|
2024-03-07 17:27:37 +00:00
|
|
|
@version 4.0.x
|
2021-08-16 17:11:22 +00:00
|
|
|
@created 22nd October, 2015
|
|
|
|
@package Sermon Distributor
|
2024-03-02 16:16:31 +00:00
|
|
|
@subpackage default.php
|
2021-08-16 17:11:22 +00:00
|
|
|
@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
|
|
|
|
|
|
|
|
A sermon distributor that links to Dropbox.
|
|
|
|
|
|
|
|
/----------------------------------------------------------------------------------------------------------------------------------*/
|
|
|
|
|
2024-03-02 16:16:31 +00:00
|
|
|
use Joomla\CMS\Factory;
|
|
|
|
use Joomla\CMS\Language\Text;
|
|
|
|
use Joomla\CMS\HTML\HTMLHelper as Html;
|
|
|
|
use Joomla\CMS\Layout\LayoutHelper;
|
|
|
|
use Joomla\CMS\Router\Route;
|
|
|
|
use TrueChristianChurch\Component\Sermondistributor\Administrator\Helper\SermondistributorHelper;
|
|
|
|
|
|
|
|
/** @var Joomla\CMS\WebAsset\WebAssetManager $wa */
|
|
|
|
$wa = $this->getDocument()->getWebAssetManager();
|
|
|
|
$wa->useScript('keepalive')->useScript('form.validate');
|
|
|
|
Html::_('bootstrap.tooltip');
|
|
|
|
|
2021-08-16 17:11:22 +00:00
|
|
|
// No direct access to this file
|
2024-03-02 16:16:31 +00:00
|
|
|
defined('_JEXEC') or die;
|
2021-08-16 17:11:22 +00:00
|
|
|
|
|
|
|
?>
|
2016-11-27 04:20:48 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
// waiting spinner
|
2024-03-02 16:16:31 +00:00
|
|
|
var outerDiv = document.querySelector('body');
|
|
|
|
var loadingDiv = document.createElement('div');
|
|
|
|
loadingDiv.id = 'loading';
|
|
|
|
loadingDiv.style.cssText = "background: rgba(255, 255, 255, .8) url('components/com_sermondistributor/assets/images/import.gif') 50% 15% no-repeat; top: " + (outerDiv.getBoundingClientRect().top + window.pageYOffset) + "px; left: " + (outerDiv.getBoundingClientRect().left + window.pageXOffset) + "px; width: " + outerDiv.offsetWidth + "px; height: " + outerDiv.offsetHeight + "px; position: fixed; opacity: 0.80; -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); filter: alpha(opacity=80); display: none;";
|
|
|
|
outerDiv.appendChild(loadingDiv);
|
|
|
|
loadingDiv.style.display = 'block';
|
2016-11-27 04:20:48 +00:00
|
|
|
// when page is ready remove and show
|
2024-03-02 16:16:31 +00:00
|
|
|
window.addEventListener('load', function() {
|
|
|
|
var componentLoader = document.getElementById('sermondistributor_loader');
|
|
|
|
if (componentLoader) componentLoader.style.display = 'block';
|
|
|
|
loadingDiv.style.display = 'none';
|
2016-11-27 04:20:48 +00:00
|
|
|
});
|
|
|
|
</script>
|
2021-08-16 17:11:22 +00:00
|
|
|
<div id="sermondistributor_loader" style="display: none;">
|
2024-03-02 16:16:31 +00:00
|
|
|
<form action="<?php echo Route::_('index.php?option=com_sermondistributor&layout=edit&id='. (int) $this->item->id . $this->referral); ?>" method="post" name="adminForm" id="adminForm" class="form-validate" enctype="multipart/form-data">
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2024-03-02 16:16:31 +00:00
|
|
|
<?php echo LayoutHelper::render('sermon.details_above', $this); ?>
|
|
|
|
<div class="main-card">
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2024-03-02 16:16:31 +00:00
|
|
|
<?php echo Html::_('uitab.startTabSet', 'sermonTab', ['active' => 'details', 'recall' => true]); ?>
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2024-03-02 16:16:31 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'sermonTab', 'details', Text::_('COM_SERMONDISTRIBUTOR_SERMON_DETAILS', true)); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-6">
|
|
|
|
<?php echo LayoutHelper::render('sermon.details_left', $this); ?>
|
2015-11-30 21:30:54 +00:00
|
|
|
</div>
|
2024-03-02 16:16:31 +00:00
|
|
|
<div class="col-md-6">
|
|
|
|
<?php echo LayoutHelper::render('sermon.details_right', $this); ?>
|
2015-11-30 21:30:54 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-02 16:16:31 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<?php echo LayoutHelper::render('sermon.details_fullwidth', $this); ?>
|
2015-11-30 21:30:54 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-02 16:16:31 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2024-03-02 16:16:31 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'sermonTab', 'files', Text::_('COM_SERMONDISTRIBUTOR_SERMON_FILES', true)); ?>
|
|
|
|
<div class="row">
|
2015-11-30 21:30:54 +00:00
|
|
|
</div>
|
2024-03-02 16:16:31 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<?php echo LayoutHelper::render('sermon.files_fullwidth', $this); ?>
|
2015-11-30 21:30:54 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-02 16:16:31 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2016-02-20 18:13:54 +00:00
|
|
|
<?php if ($this->canDo->get('statistic.access')) : ?>
|
2024-03-02 16:16:31 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'sermonTab', 'stastics', Text::_('COM_SERMONDISTRIBUTOR_SERMON_STASTICS', true)); ?>
|
|
|
|
<div class="row">
|
2015-11-30 21:30:54 +00:00
|
|
|
</div>
|
2024-03-02 16:16:31 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<?php echo LayoutHelper::render('sermon.stastics_fullwidth', $this); ?>
|
2015-11-30 21:30:54 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-02 16:16:31 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2016-02-20 18:13:54 +00:00
|
|
|
<?php endif; ?>
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2018-09-06 08:34:13 +00:00
|
|
|
<?php $this->ignore_fieldsets = array('details','metadata','vdmmetadata','accesscontrol'); ?>
|
|
|
|
<?php $this->tab_name = 'sermonTab'; ?>
|
2024-03-02 16:16:31 +00:00
|
|
|
<?php echo LayoutHelper::render('joomla.edit.params', $this); ?>
|
2018-09-06 08:34:13 +00:00
|
|
|
|
2020-11-30 16:57:29 +00:00
|
|
|
<?php if ($this->canDo->get('sermon.edit.created_by') || $this->canDo->get('sermon.edit.created') || $this->canDo->get('sermon.edit.state') || ($this->canDo->get('sermon.delete') && $this->canDo->get('sermon.edit.state'))) : ?>
|
2024-03-02 16:16:31 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'sermonTab', 'publishing', Text::_('COM_SERMONDISTRIBUTOR_SERMON_PUBLISHING', true)); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-6">
|
|
|
|
<?php echo LayoutHelper::render('sermon.publishing', $this); ?>
|
2015-11-30 21:30:54 +00:00
|
|
|
</div>
|
2024-03-02 16:16:31 +00:00
|
|
|
<div class="col-md-6">
|
|
|
|
<?php echo LayoutHelper::render('sermon.metadata', $this); ?>
|
2015-11-30 21:30:54 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-02 16:16:31 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2016-02-20 18:13:54 +00:00
|
|
|
<?php endif; ?>
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
<?php if ($this->canDo->get('core.admin')) : ?>
|
2024-03-02 16:16:31 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'sermonTab', 'permissions', Text::_('COM_SERMONDISTRIBUTOR_SERMON_PERMISSION', true)); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
2015-11-30 21:30:54 +00:00
|
|
|
<fieldset class="adminform">
|
|
|
|
<div class="adminformlist">
|
|
|
|
<?php foreach ($this->form->getFieldset('accesscontrol') as $field): ?>
|
|
|
|
<div>
|
|
|
|
<?php echo $field->label; echo $field->input;?>
|
|
|
|
</div>
|
|
|
|
<div class="clearfix"></div>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-02 16:16:31 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2015-11-30 21:30:54 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
|
2024-03-02 16:16:31 +00:00
|
|
|
<?php echo Html::_('uitab.endTabSet'); ?>
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
<div>
|
|
|
|
<input type="hidden" name="task" value="sermon.edit" />
|
2024-03-02 16:16:31 +00:00
|
|
|
<?php echo Html::_('form.token'); ?>
|
2015-11-30 21:30:54 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="clearfix"></div>
|
2024-03-02 16:16:31 +00:00
|
|
|
<?php echo LayoutHelper::render('sermon.details_under', $this); ?>
|
2021-08-16 17:11:22 +00:00
|
|
|
</form>
|
2016-07-16 12:19:44 +00:00
|
|
|
</div>
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
2016-02-26 13:57:17 +00:00
|
|
|
// #jform_source listeners for source_vvvvvvv function
|
2015-11-30 21:30:54 +00:00
|
|
|
jQuery('#jform_source').on('keyup',function()
|
|
|
|
{
|
2016-02-26 13:57:17 +00:00
|
|
|
var source_vvvvvvv = jQuery("#jform_source").val();
|
|
|
|
vvvvvvv(source_vvvvvvv);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_source',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2016-02-26 13:57:17 +00:00
|
|
|
var source_vvvvvvv = jQuery("#jform_source").val();
|
|
|
|
vvvvvvv(source_vvvvvvv);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-02-26 13:57:17 +00:00
|
|
|
// #jform_source listeners for source_vvvvvvw function
|
2015-11-30 21:30:54 +00:00
|
|
|
jQuery('#jform_source').on('keyup',function()
|
|
|
|
{
|
2016-02-26 13:57:17 +00:00
|
|
|
var source_vvvvvvw = jQuery("#jform_source").val();
|
2016-11-27 04:20:48 +00:00
|
|
|
var build_vvvvvvw = jQuery("#jform_build").val();
|
2016-02-26 13:57:17 +00:00
|
|
|
vvvvvvw(source_vvvvvvw,build_vvvvvvw);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_source',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2016-02-26 13:57:17 +00:00
|
|
|
var source_vvvvvvw = jQuery("#jform_source").val();
|
2016-11-27 04:20:48 +00:00
|
|
|
var build_vvvvvvw = jQuery("#jform_build").val();
|
2016-02-26 13:57:17 +00:00
|
|
|
vvvvvvw(source_vvvvvvw,build_vvvvvvw);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-02-26 13:57:17 +00:00
|
|
|
// #jform_build listeners for build_vvvvvvw function
|
2015-11-30 21:30:54 +00:00
|
|
|
jQuery('#jform_build').on('keyup',function()
|
|
|
|
{
|
2016-02-26 13:57:17 +00:00
|
|
|
var source_vvvvvvw = jQuery("#jform_source").val();
|
2016-11-27 04:20:48 +00:00
|
|
|
var build_vvvvvvw = jQuery("#jform_build").val();
|
2016-02-26 13:57:17 +00:00
|
|
|
vvvvvvw(source_vvvvvvw,build_vvvvvvw);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_build',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2016-02-26 13:57:17 +00:00
|
|
|
var source_vvvvvvw = jQuery("#jform_source").val();
|
2016-11-27 04:20:48 +00:00
|
|
|
var build_vvvvvvw = jQuery("#jform_build").val();
|
2016-02-26 13:57:17 +00:00
|
|
|
vvvvvvw(source_vvvvvvw,build_vvvvvvw);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-02-26 13:57:17 +00:00
|
|
|
// #jform_source listeners for source_vvvvvvy function
|
2015-11-30 21:30:54 +00:00
|
|
|
jQuery('#jform_source').on('keyup',function()
|
|
|
|
{
|
2016-02-26 13:57:17 +00:00
|
|
|
var source_vvvvvvy = jQuery("#jform_source").val();
|
2016-11-27 04:20:48 +00:00
|
|
|
var build_vvvvvvy = jQuery("#jform_build").val();
|
2016-02-26 13:57:17 +00:00
|
|
|
vvvvvvy(source_vvvvvvy,build_vvvvvvy);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_source',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2016-02-26 13:57:17 +00:00
|
|
|
var source_vvvvvvy = jQuery("#jform_source").val();
|
2016-11-27 04:20:48 +00:00
|
|
|
var build_vvvvvvy = jQuery("#jform_build").val();
|
2016-02-26 13:57:17 +00:00
|
|
|
vvvvvvy(source_vvvvvvy,build_vvvvvvy);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-02-26 13:57:17 +00:00
|
|
|
// #jform_build listeners for build_vvvvvvy function
|
2015-11-30 21:30:54 +00:00
|
|
|
jQuery('#jform_build').on('keyup',function()
|
|
|
|
{
|
2016-02-26 13:57:17 +00:00
|
|
|
var source_vvvvvvy = jQuery("#jform_source").val();
|
2016-11-27 04:20:48 +00:00
|
|
|
var build_vvvvvvy = jQuery("#jform_build").val();
|
2016-02-26 13:57:17 +00:00
|
|
|
vvvvvvy(source_vvvvvvy,build_vvvvvvy);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_build',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2016-02-26 13:57:17 +00:00
|
|
|
var source_vvvvvvy = jQuery("#jform_source").val();
|
2016-11-27 04:20:48 +00:00
|
|
|
var build_vvvvvvy = jQuery("#jform_build").val();
|
2016-02-26 13:57:17 +00:00
|
|
|
vvvvvvy(source_vvvvvvy,build_vvvvvvy);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-02-26 13:57:17 +00:00
|
|
|
// #jform_build listeners for build_vvvvvvz function
|
2015-11-30 21:30:54 +00:00
|
|
|
jQuery('#jform_build').on('keyup',function()
|
|
|
|
{
|
2016-11-27 04:20:48 +00:00
|
|
|
var build_vvvvvvz = jQuery("#jform_build").val();
|
2016-02-26 13:57:17 +00:00
|
|
|
var source_vvvvvvz = jQuery("#jform_source").val();
|
|
|
|
vvvvvvz(build_vvvvvvz,source_vvvvvvz);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_build',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2016-11-27 04:20:48 +00:00
|
|
|
var build_vvvvvvz = jQuery("#jform_build").val();
|
2016-02-26 13:57:17 +00:00
|
|
|
var source_vvvvvvz = jQuery("#jform_source").val();
|
|
|
|
vvvvvvz(build_vvvvvvz,source_vvvvvvz);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-02-26 13:57:17 +00:00
|
|
|
// #jform_source listeners for source_vvvvvvz function
|
2015-11-30 21:30:54 +00:00
|
|
|
jQuery('#jform_source').on('keyup',function()
|
|
|
|
{
|
2016-11-27 04:20:48 +00:00
|
|
|
var build_vvvvvvz = jQuery("#jform_build").val();
|
2016-02-26 13:57:17 +00:00
|
|
|
var source_vvvvvvz = jQuery("#jform_source").val();
|
|
|
|
vvvvvvz(build_vvvvvvz,source_vvvvvvz);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_source',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2016-11-27 04:20:48 +00:00
|
|
|
var build_vvvvvvz = jQuery("#jform_build").val();
|
2016-02-26 13:57:17 +00:00
|
|
|
var source_vvvvvvz = jQuery("#jform_source").val();
|
|
|
|
vvvvvvz(build_vvvvvvz,source_vvvvvvz);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-02-26 13:57:17 +00:00
|
|
|
// #jform_source listeners for source_vvvvvwa function
|
2015-11-30 21:30:54 +00:00
|
|
|
jQuery('#jform_source').on('keyup',function()
|
|
|
|
{
|
2016-02-26 13:57:17 +00:00
|
|
|
var source_vvvvvwa = jQuery("#jform_source").val();
|
|
|
|
vvvvvwa(source_vvvvvwa);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_source',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2016-02-26 13:57:17 +00:00
|
|
|
var source_vvvvvwa = jQuery("#jform_source").val();
|
|
|
|
vvvvvwa(source_vvvvvwa);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-02-26 13:57:17 +00:00
|
|
|
// #jform_source listeners for source_vvvvvwb function
|
2015-11-30 21:30:54 +00:00
|
|
|
jQuery('#jform_source').on('keyup',function()
|
|
|
|
{
|
2016-02-26 13:57:17 +00:00
|
|
|
var source_vvvvvwb = jQuery("#jform_source").val();
|
|
|
|
vvvvvwb(source_vvvvvwb);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_source',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2016-02-26 13:57:17 +00:00
|
|
|
var source_vvvvvwb = jQuery("#jform_source").val();
|
|
|
|
vvvvvwb(source_vvvvvwb);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-02-26 13:57:17 +00:00
|
|
|
// #jform_link_type listeners for link_type_vvvvvwc function
|
2015-11-30 21:30:54 +00:00
|
|
|
jQuery('#jform_link_type').on('keyup',function()
|
|
|
|
{
|
2016-02-26 13:57:17 +00:00
|
|
|
var link_type_vvvvvwc = jQuery("#jform_link_type input[type='radio']:checked").val();
|
|
|
|
vvvvvwc(link_type_vvvvvwc);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_link_type',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2016-02-26 13:57:17 +00:00
|
|
|
var link_type_vvvvvwc = jQuery("#jform_link_type input[type='radio']:checked").val();
|
|
|
|
vvvvvwc(link_type_vvvvvwc);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-02-26 13:57:17 +00:00
|
|
|
// #jform_link_type listeners for link_type_vvvvvwd function
|
2015-11-30 21:30:54 +00:00
|
|
|
jQuery('#jform_link_type').on('keyup',function()
|
|
|
|
{
|
2016-02-26 13:57:17 +00:00
|
|
|
var link_type_vvvvvwd = jQuery("#jform_link_type input[type='radio']:checked").val();
|
|
|
|
vvvvvwd(link_type_vvvvvwd);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_link_type',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2016-02-26 13:57:17 +00:00
|
|
|
var link_type_vvvvvwd = jQuery("#jform_link_type input[type='radio']:checked").val();
|
|
|
|
vvvvvwd(link_type_vvvvvwd);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// setup the return url
|
2016-11-27 04:20:48 +00:00
|
|
|
$externalsourcesURL = JURI::root() . 'administrator/index.php?option=com_sermondistributor&view=external_sources';
|
2015-11-30 21:30:54 +00:00
|
|
|
?>
|
|
|
|
|
2016-11-27 04:20:48 +00:00
|
|
|
jQuery('.external-source').on('click',function (e)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
|
|
|
e.preventDefault();
|
2016-11-27 04:20:48 +00:00
|
|
|
location.href="<?php echo $externalsourcesURL; ?>";
|
2015-11-30 21:30:54 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// load the auto sermons if set or notice if none is found
|
|
|
|
var auto_sermons = jQuery('#jform_auto_sermons').val();
|
2016-03-13 02:51:59 +00:00
|
|
|
var htmlDropNote = '<h1><?php echo JText::_('COM_SERMONDISTRIBUTOR_NO_FILES_LINKED_YET'); ?></h1>';
|
2016-11-27 04:20:48 +00:00
|
|
|
htmlDropNote += '<div class="alert alert-warning"><?php echo JText::_('COM_SERMONDISTRIBUTOR_ALWAYS_BETTER_TO_ADD_THE_FILES_TO_EXTERNAL_SOURCE_AND_LET_THE_SYSTEM_CREATE_THE_SERMON_FOR_YOU_PLEASE_READ_INSTRUCTIONS_BELOW_CAREFULLY'); ?></div>';
|
2015-11-30 21:30:54 +00:00
|
|
|
if (auto_sermons != 1 && auto_sermons.length > 0)
|
|
|
|
{
|
2016-11-27 04:20:48 +00:00
|
|
|
htmlDropNote = '<h1><?php echo JText::_('COM_SERMONDISTRIBUTOR_THE_FILES_LINKED_FROM_EXTERNAL_SOURCE'); ?></h1>';
|
2015-11-30 21:30:54 +00:00
|
|
|
auto_sermons = jQuery.parseJSON(auto_sermons);
|
|
|
|
htmlDropNote += '<div class="alert alert-success"><ul>';
|
|
|
|
jQuery.each(auto_sermons, function(filename,fileKey) {
|
2016-03-13 02:51:59 +00:00
|
|
|
htmlDropNote += '<li><b><?php echo JText::_('COM_SERMONDISTRIBUTOR_DOWNLOAD_NAME'); ?>:</b> ';
|
2015-11-30 21:30:54 +00:00
|
|
|
htmlDropNote += filename;
|
2016-11-27 04:20:48 +00:00
|
|
|
htmlDropNote += '<br /><b><?php echo JText::_('COM_SERMONDISTRIBUTOR_EXTERNAL_SOURCE_RELATION'); ?>:</b> ';
|
2015-11-30 21:30:54 +00:00
|
|
|
htmlDropNote += fileKey.replace("VDM_pLeK_h0uEr/", "");
|
|
|
|
htmlDropNote += '</li>';
|
|
|
|
});
|
|
|
|
htmlDropNote += '</ul></div>';
|
|
|
|
}
|
2016-11-27 04:20:48 +00:00
|
|
|
jQuery('.note_auto_externalsource').closest('.control-group').prepend(htmlDropNote);
|
2021-08-16 17:11:22 +00:00
|
|
|
</script>
|