2016-11-27 04:20:48 +00:00
|
|
|
<?php
|
2018-03-19 22:24:44 +00:00
|
|
|
/*-------------------------------------------------------------------------------------------------------------| www.vdm.io |------/
|
|
|
|
____ ____ __ __ __
|
|
|
|
/\ _`\ /\ _`\ __ /\ \__ __/\ \ /\ \__
|
|
|
|
\ \,\L\_\ __ _ __ ___ ___ ___ ___ \ \ \/\ \/\_\ ____\ \ ,_\ _ __ /\_\ \ \____ __ __\ \ ,_\ ___ _ __
|
|
|
|
\/_\__ \ /'__`\/\`'__\/' __` __`\ / __`\ /' _ `\ \ \ \ \ \/\ \ /',__\\ \ \/ /\`'__\/\ \ \ '__`\/\ \/\ \\ \ \/ / __`\/\`'__\
|
|
|
|
/\ \L\ \/\ __/\ \ \/ /\ \/\ \/\ \/\ \L\ \/\ \/\ \ \ \ \_\ \ \ \/\__, `\\ \ \_\ \ \/ \ \ \ \ \L\ \ \ \_\ \\ \ \_/\ \L\ \ \ \/
|
|
|
|
\ `\____\ \____\\ \_\ \ \_\ \_\ \_\ \____/\ \_\ \_\ \ \____/\ \_\/\____/ \ \__\\ \_\ \ \_\ \_,__/\ \____/ \ \__\ \____/\ \_\
|
|
|
|
\/_____/\/____/ \/_/ \/_/\/_/\/_/\/___/ \/_/\/_/ \/___/ \/_/\/___/ \/__/ \/_/ \/_/\/___/ \/___/ \/__/\/___/ \/_/
|
|
|
|
|
|
|
|
/------------------------------------------------------------------------------------------------------------------------------------/
|
2016-11-27 04:20:48 +00:00
|
|
|
|
2018-03-03 16:43:27 +00:00
|
|
|
@version 2.0.x
|
|
|
|
@created 22nd October, 2015
|
2016-11-27 04:20:48 +00:00
|
|
|
@package Sermon Distributor
|
|
|
|
@subpackage default.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
|
2020-11-30 16:57:29 +00:00
|
|
|
|
2016-11-27 04:20:48 +00:00
|
|
|
A sermon distributor that links to Dropbox.
|
2020-11-30 16:57:29 +00:00
|
|
|
|
2018-03-19 22:24:44 +00:00
|
|
|
/----------------------------------------------------------------------------------------------------------------------------------*/
|
2016-11-27 04:20:48 +00:00
|
|
|
|
|
|
|
// No direct access to this file
|
2020-12-31 11:53:20 +00:00
|
|
|
defined('_JEXEC') or die('Restricted access');
|
2016-11-27 04:20:48 +00:00
|
|
|
|
2020-11-30 16:57:29 +00:00
|
|
|
JHtml::_('behavior.tooltip');
|
|
|
|
JHtml::_('behavior.multiselect');
|
|
|
|
JHtml::_('dropdown.init');
|
2016-11-27 04:20:48 +00:00
|
|
|
JHtml::_('formbehavior.chosen', 'select');
|
|
|
|
if ($this->saveOrder)
|
|
|
|
{
|
|
|
|
$saveOrderingUrl = 'index.php?option=com_sermondistributor&task=external_sources.saveOrderAjax&tmpl=component';
|
|
|
|
JHtml::_('sortablelist.sortable', 'external_sourceList', 'adminForm', strtolower($this->listDirn), $saveOrderingUrl);
|
|
|
|
}
|
|
|
|
?>
|
2020-11-30 16:57:29 +00:00
|
|
|
<form action="<?php echo JRoute::_('index.php?option=com_sermondistributor&view=external_sources'); ?>" method="post" name="adminForm" id="adminForm">
|
|
|
|
<?php if(!empty( $this->sidebar)): ?>
|
|
|
|
<div id="j-sidebar-container" class="span2">
|
|
|
|
<?php echo $this->sidebar; ?>
|
|
|
|
</div>
|
|
|
|
<div id="j-main-container" class="span10">
|
|
|
|
<?php else : ?>
|
|
|
|
<div id="j-main-container">
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php
|
2020-12-31 11:53:20 +00:00
|
|
|
// Add the trash helper layout
|
|
|
|
echo JLayoutHelper::render('trashhelper', $this);
|
2020-11-30 16:57:29 +00:00
|
|
|
// Add the searchtools
|
|
|
|
echo JLayoutHelper::render('joomla.searchtools.default', array('view' => $this));
|
|
|
|
?>
|
|
|
|
<?php if (empty($this->items)): ?>
|
|
|
|
<div class="alert alert-no-items">
|
|
|
|
<?php echo JText::_('JGLOBAL_NO_MATCHING_RESULTS'); ?>
|
|
|
|
</div>
|
|
|
|
<?php else : ?>
|
|
|
|
<table class="table table-striped" id="external_sourceList">
|
|
|
|
<thead><?php echo $this->loadTemplate('head');?></thead>
|
|
|
|
<tfoot><?php echo $this->loadTemplate('foot');?></tfoot>
|
|
|
|
<tbody><?php echo $this->loadTemplate('body');?></tbody>
|
|
|
|
</table>
|
|
|
|
<?php // Load the batch processing form. ?>
|
|
|
|
<?php if ($this->canCreate && $this->canEdit) : ?>
|
|
|
|
<?php echo JHtml::_(
|
|
|
|
'bootstrap.renderModal',
|
|
|
|
'collapseModal',
|
|
|
|
array(
|
|
|
|
'title' => JText::_('COM_SERMONDISTRIBUTOR_EXTERNAL_SOURCES_BATCH_OPTIONS'),
|
|
|
|
'footer' => $this->loadTemplate('batch_footer')
|
|
|
|
),
|
|
|
|
$this->loadTemplate('batch_body')
|
|
|
|
); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
<input type="hidden" name="boxchecked" value="0" />
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
<input type="hidden" name="task" value="" />
|
|
|
|
<?php echo JHtml::_('form.token'); ?>
|
|
|
|
</form>
|