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-02 16:16:31 +00:00
|
|
|
@version 5.0.x
|
2021-08-16 17:11:22 +00:00
|
|
|
@created 22nd October, 2015
|
|
|
|
@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
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
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
|
|
|
|
|
|
|
if ($this->saveOrder)
|
|
|
|
{
|
|
|
|
$saveOrderingUrl = 'index.php?option=com_sermondistributor&task=statistics.saveOrderAjax&tmpl=component';
|
2024-03-02 16:16:31 +00:00
|
|
|
Html::_('sortablelist.sortable', 'statisticList', 'adminForm', strtolower($this->listDirn), $saveOrderingUrl);
|
2021-08-16 17:11:22 +00:00
|
|
|
}
|
|
|
|
?>
|
2024-03-02 16:16:31 +00:00
|
|
|
<form action="<?php echo Route::_('index.php?option=com_sermondistributor&view=statistics'); ?>" method="post" name="adminForm" id="adminForm">
|
2020-11-30 16:57:29 +00:00
|
|
|
<div id="j-main-container">
|
|
|
|
<?php
|
2020-12-31 11:53:20 +00:00
|
|
|
// Add the trash helper layout
|
2024-03-02 16:16:31 +00:00
|
|
|
echo LayoutHelper::render('trashhelper', $this);
|
2020-11-30 16:57:29 +00:00
|
|
|
// Add the searchtools
|
2024-03-02 16:16:31 +00:00
|
|
|
echo LayoutHelper::render('joomla.searchtools.default', array('view' => $this));
|
2020-11-30 16:57:29 +00:00
|
|
|
?>
|
|
|
|
<?php if (empty($this->items)): ?>
|
|
|
|
<div class="alert alert-no-items">
|
2024-03-02 16:16:31 +00:00
|
|
|
<?php echo Text::_('JGLOBAL_NO_MATCHING_RESULTS'); ?>
|
2020-11-30 16:57:29 +00:00
|
|
|
</div>
|
|
|
|
<?php else : ?>
|
|
|
|
<table class="table table-striped" id="statisticList">
|
|
|
|
<thead><?php echo $this->loadTemplate('head');?></thead>
|
|
|
|
<tfoot><?php echo $this->loadTemplate('foot');?></tfoot>
|
|
|
|
<tbody><?php echo $this->loadTemplate('body');?></tbody>
|
|
|
|
</table>
|
|
|
|
<input type="hidden" name="boxchecked" value="0" />
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
<input type="hidden" name="task" value="" />
|
2024-03-02 16:16:31 +00:00
|
|
|
<?php echo Html::_('form.token'); ?>
|
2021-08-16 17:11:22 +00:00
|
|
|
</form>
|