Joomla-Sermon-Distributor/admin/views/sermon/tmpl/edit.php

362 lines
13 KiB
PHP

<?php
/*-------------------------------------------------------------------------------------------------------------| www.vdm.io |------/
____ ____ __ __ __
/\ _`\ /\ _`\ __ /\ \__ __/\ \ /\ \__
\ \,\L\_\ __ _ __ ___ ___ ___ ___ \ \ \/\ \/\_\ ____\ \ ,_\ _ __ /\_\ \ \____ __ __\ \ ,_\ ___ _ __
\/_\__ \ /'__`\/\`'__\/' __` __`\ / __`\ /' _ `\ \ \ \ \ \/\ \ /',__\\ \ \/ /\`'__\/\ \ \ '__`\/\ \/\ \\ \ \/ / __`\/\`'__\
/\ \L\ \/\ __/\ \ \/ /\ \/\ \/\ \/\ \L\ \/\ \/\ \ \ \ \_\ \ \ \/\__, `\\ \ \_\ \ \/ \ \ \ \ \L\ \ \ \_\ \\ \ \_/\ \L\ \ \ \/
\ `\____\ \____\\ \_\ \ \_\ \_\ \_\ \____/\ \_\ \_\ \ \____/\ \_\/\____/ \ \__\\ \_\ \ \_\ \_,__/\ \____/ \ \__\ \____/\ \_\
\/_____/\/____/ \/_/ \/_/\/_/\/_/\/___/ \/_/\/_/ \/___/ \/_/\/___/ \/__/ \/_/ \/_/\/___/ \/___/ \/__/\/___/ \/_/
/------------------------------------------------------------------------------------------------------------------------------------/
@version 3.0.x
@created 22nd October, 2015
@package Sermon Distributor
@subpackage edit.php
@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.
/----------------------------------------------------------------------------------------------------------------------------------*/
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
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;
Html::addIncludePath(JPATH_COMPONENT.'/helpers/html');
Html::_('behavior.formvalidator');
Html::_('formbehavior.chosen', 'select');
Html::_('behavior.keepalive');
$componentParams = $this->params; // will be removed just use $this->params instead
?>
<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>
<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">
<?php echo LayoutHelper::render('sermon.details_above', $this); ?>
<div class="form-horizontal">
<?php echo Html::_('bootstrap.startTabSet', 'sermonTab', ['active' => 'details', 'recall' => true]); ?>
<?php echo Html::_('bootstrap.addTab', 'sermonTab', 'details', Text::_('COM_SERMONDISTRIBUTOR_SERMON_DETAILS', true)); ?>
<div class="row-fluid form-horizontal-desktop">
<div class="span6">
<?php echo LayoutHelper::render('sermon.details_left', $this); ?>
</div>
<div class="span6">
<?php echo LayoutHelper::render('sermon.details_right', $this); ?>
</div>
</div>
<div class="row-fluid form-horizontal-desktop">
<div class="span12">
<?php echo LayoutHelper::render('sermon.details_fullwidth', $this); ?>
</div>
</div>
<?php echo Html::_('bootstrap.endTab'); ?>
<?php echo Html::_('bootstrap.addTab', 'sermonTab', 'files', Text::_('COM_SERMONDISTRIBUTOR_SERMON_FILES', true)); ?>
<div class="row-fluid form-horizontal-desktop">
</div>
<div class="row-fluid form-horizontal-desktop">
<div class="span12">
<?php echo LayoutHelper::render('sermon.files_fullwidth', $this); ?>
</div>
</div>
<?php echo Html::_('bootstrap.endTab'); ?>
<?php if ($this->canDo->get('statistic.access')) : ?>
<?php echo Html::_('bootstrap.addTab', 'sermonTab', 'stastics', Text::_('COM_SERMONDISTRIBUTOR_SERMON_STASTICS', true)); ?>
<div class="row-fluid form-horizontal-desktop">
</div>
<div class="row-fluid form-horizontal-desktop">
<div class="span12">
<?php echo LayoutHelper::render('sermon.stastics_fullwidth', $this); ?>
</div>
</div>
<?php echo Html::_('bootstrap.endTab'); ?>
<?php endif; ?>
<?php $this->ignore_fieldsets = array('details','metadata','vdmmetadata','accesscontrol'); ?>
<?php $this->tab_name = 'sermonTab'; ?>
<?php echo LayoutHelper::render('joomla.edit.params', $this); ?>
<?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'))) : ?>
<?php echo Html::_('bootstrap.addTab', 'sermonTab', 'publishing', Text::_('COM_SERMONDISTRIBUTOR_SERMON_PUBLISHING', true)); ?>
<div class="row-fluid form-horizontal-desktop">
<div class="span6">
<?php echo LayoutHelper::render('sermon.publishing', $this); ?>
</div>
<div class="span6">
<?php echo LayoutHelper::render('sermon.metadata', $this); ?>
</div>
</div>
<?php echo Html::_('bootstrap.endTab'); ?>
<?php endif; ?>
<?php if ($this->canDo->get('core.admin')) : ?>
<?php echo Html::_('bootstrap.addTab', 'sermonTab', 'permissions', Text::_('COM_SERMONDISTRIBUTOR_SERMON_PERMISSION', true)); ?>
<div class="row-fluid form-horizontal-desktop">
<div class="span12">
<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>
<?php echo Html::_('bootstrap.endTab'); ?>
<?php endif; ?>
<?php echo Html::_('bootstrap.endTabSet'); ?>
<div>
<input type="hidden" name="task" value="sermon.edit" />
<?php echo Html::_('form.token'); ?>
</div>
</div>
<div class="clearfix"></div>
<?php echo LayoutHelper::render('sermon.details_under', $this); ?>
</form>
</div>
<script type="text/javascript">
// #jform_source listeners for source_vvvvvvv function
jQuery('#jform_source').on('keyup',function()
{
var source_vvvvvvv = jQuery("#jform_source").val();
vvvvvvv(source_vvvvvvv);
});
jQuery('#adminForm').on('change', '#jform_source',function (e)
{
e.preventDefault();
var source_vvvvvvv = jQuery("#jform_source").val();
vvvvvvv(source_vvvvvvv);
});
// #jform_source listeners for source_vvvvvvw function
jQuery('#jform_source').on('keyup',function()
{
var source_vvvvvvw = jQuery("#jform_source").val();
var build_vvvvvvw = jQuery("#jform_build").val();
vvvvvvw(source_vvvvvvw,build_vvvvvvw);
});
jQuery('#adminForm').on('change', '#jform_source',function (e)
{
e.preventDefault();
var source_vvvvvvw = jQuery("#jform_source").val();
var build_vvvvvvw = jQuery("#jform_build").val();
vvvvvvw(source_vvvvvvw,build_vvvvvvw);
});
// #jform_build listeners for build_vvvvvvw function
jQuery('#jform_build').on('keyup',function()
{
var source_vvvvvvw = jQuery("#jform_source").val();
var build_vvvvvvw = jQuery("#jform_build").val();
vvvvvvw(source_vvvvvvw,build_vvvvvvw);
});
jQuery('#adminForm').on('change', '#jform_build',function (e)
{
e.preventDefault();
var source_vvvvvvw = jQuery("#jform_source").val();
var build_vvvvvvw = jQuery("#jform_build").val();
vvvvvvw(source_vvvvvvw,build_vvvvvvw);
});
// #jform_source listeners for source_vvvvvvy function
jQuery('#jform_source').on('keyup',function()
{
var source_vvvvvvy = jQuery("#jform_source").val();
var build_vvvvvvy = jQuery("#jform_build").val();
vvvvvvy(source_vvvvvvy,build_vvvvvvy);
});
jQuery('#adminForm').on('change', '#jform_source',function (e)
{
e.preventDefault();
var source_vvvvvvy = jQuery("#jform_source").val();
var build_vvvvvvy = jQuery("#jform_build").val();
vvvvvvy(source_vvvvvvy,build_vvvvvvy);
});
// #jform_build listeners for build_vvvvvvy function
jQuery('#jform_build').on('keyup',function()
{
var source_vvvvvvy = jQuery("#jform_source").val();
var build_vvvvvvy = jQuery("#jform_build").val();
vvvvvvy(source_vvvvvvy,build_vvvvvvy);
});
jQuery('#adminForm').on('change', '#jform_build',function (e)
{
e.preventDefault();
var source_vvvvvvy = jQuery("#jform_source").val();
var build_vvvvvvy = jQuery("#jform_build").val();
vvvvvvy(source_vvvvvvy,build_vvvvvvy);
});
// #jform_build listeners for build_vvvvvvz function
jQuery('#jform_build').on('keyup',function()
{
var build_vvvvvvz = jQuery("#jform_build").val();
var source_vvvvvvz = jQuery("#jform_source").val();
vvvvvvz(build_vvvvvvz,source_vvvvvvz);
});
jQuery('#adminForm').on('change', '#jform_build',function (e)
{
e.preventDefault();
var build_vvvvvvz = jQuery("#jform_build").val();
var source_vvvvvvz = jQuery("#jform_source").val();
vvvvvvz(build_vvvvvvz,source_vvvvvvz);
});
// #jform_source listeners for source_vvvvvvz function
jQuery('#jform_source').on('keyup',function()
{
var build_vvvvvvz = jQuery("#jform_build").val();
var source_vvvvvvz = jQuery("#jform_source").val();
vvvvvvz(build_vvvvvvz,source_vvvvvvz);
});
jQuery('#adminForm').on('change', '#jform_source',function (e)
{
e.preventDefault();
var build_vvvvvvz = jQuery("#jform_build").val();
var source_vvvvvvz = jQuery("#jform_source").val();
vvvvvvz(build_vvvvvvz,source_vvvvvvz);
});
// #jform_source listeners for source_vvvvvwa function
jQuery('#jform_source').on('keyup',function()
{
var source_vvvvvwa = jQuery("#jform_source").val();
vvvvvwa(source_vvvvvwa);
});
jQuery('#adminForm').on('change', '#jform_source',function (e)
{
e.preventDefault();
var source_vvvvvwa = jQuery("#jform_source").val();
vvvvvwa(source_vvvvvwa);
});
// #jform_source listeners for source_vvvvvwb function
jQuery('#jform_source').on('keyup',function()
{
var source_vvvvvwb = jQuery("#jform_source").val();
vvvvvwb(source_vvvvvwb);
});
jQuery('#adminForm').on('change', '#jform_source',function (e)
{
e.preventDefault();
var source_vvvvvwb = jQuery("#jform_source").val();
vvvvvwb(source_vvvvvwb);
});
// #jform_link_type listeners for link_type_vvvvvwc function
jQuery('#jform_link_type').on('keyup',function()
{
var link_type_vvvvvwc = jQuery("#jform_link_type input[type='radio']:checked").val();
vvvvvwc(link_type_vvvvvwc);
});
jQuery('#adminForm').on('change', '#jform_link_type',function (e)
{
e.preventDefault();
var link_type_vvvvvwc = jQuery("#jform_link_type input[type='radio']:checked").val();
vvvvvwc(link_type_vvvvvwc);
});
// #jform_link_type listeners for link_type_vvvvvwd function
jQuery('#jform_link_type').on('keyup',function()
{
var link_type_vvvvvwd = jQuery("#jform_link_type input[type='radio']:checked").val();
vvvvvwd(link_type_vvvvvwd);
});
jQuery('#adminForm').on('change', '#jform_link_type',function (e)
{
e.preventDefault();
var link_type_vvvvvwd = jQuery("#jform_link_type input[type='radio']:checked").val();
vvvvvwd(link_type_vvvvvwd);
});
<?php
// setup the return url
$externalsourcesURL = JURI::root() . 'administrator/index.php?option=com_sermondistributor&view=external_sources';
?>
jQuery('.external-source').on('click',function (e)
{
e.preventDefault();
location.href="<?php echo $externalsourcesURL; ?>";
});
// load the auto sermons if set or notice if none is found
var auto_sermons = jQuery('#jform_auto_sermons').val();
var htmlDropNote = '<h1><?php echo JText::_('COM_SERMONDISTRIBUTOR_NO_FILES_LINKED_YET'); ?></h1>';
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>';
if (auto_sermons != 1 && auto_sermons.length > 0)
{
htmlDropNote = '<h1><?php echo JText::_('COM_SERMONDISTRIBUTOR_THE_FILES_LINKED_FROM_EXTERNAL_SOURCE'); ?></h1>';
auto_sermons = jQuery.parseJSON(auto_sermons);
htmlDropNote += '<div class="alert alert-success"><ul>';
jQuery.each(auto_sermons, function(filename,fileKey) {
htmlDropNote += '<li><b><?php echo JText::_('COM_SERMONDISTRIBUTOR_DOWNLOAD_NAME'); ?>:</b> ';
htmlDropNote += filename;
htmlDropNote += '<br /><b><?php echo JText::_('COM_SERMONDISTRIBUTOR_EXTERNAL_SOURCE_RELATION'); ?>:</b> ';
htmlDropNote += fileKey.replace("VDM_pLeK_h0uEr/", "");
htmlDropNote += '</li>';
});
htmlDropNote += '</ul></div>';
}
jQuery('.note_auto_externalsource').closest('.control-group').prepend(htmlDropNote);
</script>