Joomla-Sermon-Distributor-Fork/admin/tmpl/help_document/default.php

203 lines
7.6 KiB
PHP
Raw Normal View History

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\ \ \ \/
\ `\____\ \____\\ \_\ \ \_\ \_\ \_\ \____/\ \_\ \_\ \ \____/\ \_\/\____/ \ \__\\ \_\ \ \_\ \_,__/\ \____/ \ \__\ \____/\ \_\
\/_____/\/____/ \/_/ \/_/\/_/\/_/\/___/ \/_/\/_/ \/___/ \/_/\/___/ \/__/ \/_/ \/_/\/___/ \/___/ \/__/\/___/ \/_/
/------------------------------------------------------------------------------------------------------------------------------------/
@version 5.0.x
2021-08-16 17:11:22 +00:00
@created 22nd October, 2015
@package Sermon Distributor
@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.
/----------------------------------------------------------------------------------------------------------------------------------*/
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
defined('_JEXEC') or die;
2021-08-16 17:11:22 +00:00
?>
<script type="text/javascript">
// waiting spinner
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';
// when page is ready remove and show
window.addEventListener('load', function() {
var componentLoader = document.getElementById('sermondistributor_loader');
if (componentLoader) componentLoader.style.display = 'block';
loadingDiv.style.display = 'none';
});
</script>
2021-08-16 17:11:22 +00:00
<div id="sermondistributor_loader" style="display: none;">
<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
<?php echo LayoutHelper::render('help_document.details_above', $this); ?>
<div class="main-card">
2015-11-30 21:30:54 +00:00
<?php echo Html::_('uitab.startTabSet', 'help_documentTab', ['active' => 'details', 'recall' => true]); ?>
2015-11-30 21:30:54 +00:00
<?php echo Html::_('uitab.addTab', 'help_documentTab', 'details', Text::_('COM_SERMONDISTRIBUTOR_HELP_DOCUMENT_DETAILS', true)); ?>
<div class="row">
<div class="col-md-6">
<?php echo LayoutHelper::render('help_document.details_left', $this); ?>
2015-11-30 21:30:54 +00:00
</div>
<div class="col-md-6">
<?php echo LayoutHelper::render('help_document.details_right', $this); ?>
2015-11-30 21:30:54 +00:00
</div>
</div>
<div class="row">
<div class="col-md-12">
<?php echo LayoutHelper::render('help_document.details_fullwidth', $this); ?>
2015-11-30 21:30:54 +00:00
</div>
</div>
<?php echo Html::_('uitab.endTab'); ?>
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 = 'help_documentTab'; ?>
<?php echo LayoutHelper::render('joomla.edit.params', $this); ?>
2018-09-06 08:34:13 +00:00
<?php if ($this->canDo->get('core.edit.created_by') || $this->canDo->get('core.edit.created') || $this->canDo->get('help_document.edit.state') || ($this->canDo->get('help_document.delete') && $this->canDo->get('help_document.edit.state'))) : ?>
<?php echo Html::_('uitab.addTab', 'help_documentTab', 'publishing', Text::_('COM_SERMONDISTRIBUTOR_HELP_DOCUMENT_PUBLISHING', true)); ?>
<div class="row">
<div class="col-md-6">
<?php echo LayoutHelper::render('help_document.publishing', $this); ?>
2015-11-30 21:30:54 +00:00
</div>
<div class="col-md-6">
<?php echo LayoutHelper::render('help_document.metadata', $this); ?>
2015-11-30 21:30:54 +00:00
</div>
</div>
<?php echo Html::_('uitab.endTab'); ?>
<?php endif; ?>
2015-11-30 21:30:54 +00:00
<?php echo Html::_('uitab.endTabSet'); ?>
2015-11-30 21:30:54 +00:00
<div>
<input type="hidden" name="task" value="help_document.edit" />
<?php echo Html::_('form.token'); ?>
2015-11-30 21:30:54 +00:00
</div>
</div>
<div class="clearfix"></div>
<?php echo LayoutHelper::render('help_document.details_under', $this); ?>
2021-08-16 17:11:22 +00:00
</form>
</div>
2015-11-30 21:30:54 +00:00
<script type="text/javascript">
2017-08-18 11:20:01 +00:00
// #jform_location listeners for location_vvvvvwx function
2015-11-30 21:30:54 +00:00
jQuery('#jform_location').on('keyup',function()
{
2017-08-18 11:20:01 +00:00
var location_vvvvvwx = jQuery("#jform_location input[type='radio']:checked").val();
vvvvvwx(location_vvvvvwx);
2015-11-30 21:30:54 +00:00
});
jQuery('#adminForm').on('change', '#jform_location',function (e)
{
e.preventDefault();
2017-08-18 11:20:01 +00:00
var location_vvvvvwx = jQuery("#jform_location input[type='radio']:checked").val();
vvvvvwx(location_vvvvvwx);
2015-11-30 21:30:54 +00:00
});
// #jform_location listeners for location_vvvvvwy function
jQuery('#jform_location').on('keyup',function()
2015-11-30 21:30:54 +00:00
{
var location_vvvvvwy = jQuery("#jform_location input[type='radio']:checked").val();
vvvvvwy(location_vvvvvwy);
2015-11-30 21:30:54 +00:00
});
jQuery('#adminForm').on('change', '#jform_location',function (e)
2015-11-30 21:30:54 +00:00
{
e.preventDefault();
var location_vvvvvwy = jQuery("#jform_location input[type='radio']:checked").val();
vvvvvwy(location_vvvvvwy);
2015-11-30 21:30:54 +00:00
});
2017-08-18 11:20:01 +00:00
// #jform_type listeners for type_vvvvvwz function
2015-11-30 21:30:54 +00:00
jQuery('#jform_type').on('keyup',function()
{
2017-08-18 11:20:01 +00:00
var type_vvvvvwz = jQuery("#jform_type").val();
vvvvvwz(type_vvvvvwz);
2015-11-30 21:30:54 +00:00
});
jQuery('#adminForm').on('change', '#jform_type',function (e)
{
e.preventDefault();
2017-08-18 11:20:01 +00:00
var type_vvvvvwz = jQuery("#jform_type").val();
vvvvvwz(type_vvvvvwz);
2015-11-30 21:30:54 +00:00
});
2017-08-18 11:20:01 +00:00
// #jform_type listeners for type_vvvvvxa function
2015-11-30 21:30:54 +00:00
jQuery('#jform_type').on('keyup',function()
{
2017-08-18 11:20:01 +00:00
var type_vvvvvxa = jQuery("#jform_type").val();
vvvvvxa(type_vvvvvxa);
2015-11-30 21:30:54 +00:00
});
jQuery('#adminForm').on('change', '#jform_type',function (e)
{
e.preventDefault();
2017-08-18 11:20:01 +00:00
var type_vvvvvxa = jQuery("#jform_type").val();
vvvvvxa(type_vvvvvxa);
2015-11-30 21:30:54 +00:00
});
// #jform_type listeners for type_vvvvvxb function
jQuery('#jform_type').on('keyup',function()
{
var type_vvvvvxb = jQuery("#jform_type").val();
vvvvvxb(type_vvvvvxb);
});
jQuery('#adminForm').on('change', '#jform_type',function (e)
{
e.preventDefault();
var type_vvvvvxb = jQuery("#jform_type").val();
vvvvvxb(type_vvvvvxb);
});
// #jform_target listeners for target_vvvvvxc function
2015-11-30 21:30:54 +00:00
jQuery('#jform_target').on('keyup',function()
{
var target_vvvvvxc = jQuery("#jform_target input[type='radio']:checked").val();
vvvvvxc(target_vvvvvxc);
2015-11-30 21:30:54 +00:00
});
jQuery('#adminForm').on('change', '#jform_target',function (e)
{
e.preventDefault();
var target_vvvvvxc = jQuery("#jform_target input[type='radio']:checked").val();
vvvvvxc(target_vvvvvxc);
2015-11-30 21:30:54 +00:00
});
2021-08-16 17:11:22 +00:00
</script>