2016-11-27 04:20:48 +00:00
|
|
|
<?php
|
|
|
|
/*--------------------------------------------------------------------------------------------------------| www.vdm.io |------/
|
|
|
|
__ __ _ _____ _ _ __ __ _ _ _
|
|
|
|
\ \ / / | | | __ \ | | | | | \/ | | | | | | |
|
|
|
|
\ \ / /_ _ ___| |_ | | | | _____ _____| | ___ _ __ _ __ ___ ___ _ __ | |_ | \ / | ___| |_| |__ ___ __| |
|
|
|
|
\ \/ / _` / __| __| | | | |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __| | |\/| |/ _ \ __| '_ \ / _ \ / _` |
|
|
|
|
\ / (_| \__ \ |_ | |__| | __/\ V / __/ | (_) | |_) | | | | | | __/ | | | |_ | | | | __/ |_| | | | (_) | (_| |
|
|
|
|
\/ \__,_|___/\__| |_____/ \___| \_/ \___|_|\___/| .__/|_| |_| |_|\___|_| |_|\__| |_| |_|\___|\__|_| |_|\___/ \__,_|
|
|
|
|
| |
|
|
|
|
|_|
|
|
|
|
/-------------------------------------------------------------------------------------------------------------------------------/
|
|
|
|
|
2018-03-03 16:43:27 +00:00
|
|
|
@version 2.0.x
|
|
|
|
@build 3rd March, 2018
|
|
|
|
@created 22nd October, 2015
|
2016-11-27 04:20:48 +00:00
|
|
|
@package Sermon Distributor
|
|
|
|
@subpackage default_head.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');
|
|
|
|
|
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<?php if ($this->canEdit&& $this->canState): ?>
|
|
|
|
<th width="1%" class="nowrap center hidden-phone">
|
|
|
|
<?php echo JHtml::_('grid.sort', '<i class="icon-menu-2"></i>', 'ordering', $this->listDirn, $this->listOrder, null, 'asc', 'JGRID_HEADING_ORDERING'); ?>
|
|
|
|
</th>
|
|
|
|
<th width="20" class="nowrap center">
|
|
|
|
<?php echo JHtml::_('grid.checkall'); ?>
|
|
|
|
</th>
|
|
|
|
<?php else: ?>
|
|
|
|
<th width="20" class="nowrap center hidden-phone">
|
|
|
|
▾
|
|
|
|
</th>
|
|
|
|
<th width="20" class="nowrap center">
|
|
|
|
■
|
|
|
|
</th>
|
|
|
|
<?php endif; ?>
|
|
|
|
<th class="nowrap" >
|
|
|
|
<?php echo JHtml::_('grid.sort', 'COM_SERMONDISTRIBUTOR_EXTERNAL_SOURCE_DESCRIPTION_LABEL', 'description', $this->listDirn, $this->listOrder); ?>
|
|
|
|
</th>
|
|
|
|
<th class="nowrap hidden-phone" >
|
|
|
|
<?php echo JHtml::_('grid.sort', 'COM_SERMONDISTRIBUTOR_EXTERNAL_SOURCE_EXTERNALSOURCES_LABEL', 'externalsources', $this->listDirn, $this->listOrder); ?>
|
|
|
|
</th>
|
2016-12-05 07:40:19 +00:00
|
|
|
<th class="nowrap hidden-phone" >
|
2016-11-27 04:20:48 +00:00
|
|
|
<?php echo JHtml::_('grid.sort', 'COM_SERMONDISTRIBUTOR_EXTERNAL_SOURCE_UPDATE_METHOD_LABEL', 'update_method', $this->listDirn, $this->listOrder); ?>
|
|
|
|
</th>
|
|
|
|
<th class="nowrap hidden-phone" >
|
|
|
|
<?php echo JText::_('COM_SERMONDISTRIBUTOR_EXTERNAL_SOURCE_FILETYPES_LABEL'); ?>
|
|
|
|
</th>
|
|
|
|
<th class="nowrap hidden-phone" >
|
|
|
|
<?php echo JHtml::_('grid.sort', 'COM_SERMONDISTRIBUTOR_EXTERNAL_SOURCE_BUILD_LABEL', 'build', $this->listDirn, $this->listOrder); ?>
|
|
|
|
</th>
|
|
|
|
<?php if ($this->canState): ?>
|
|
|
|
<th width="10" class="nowrap center" >
|
|
|
|
<?php echo JHtml::_('grid.sort', 'COM_SERMONDISTRIBUTOR_EXTERNAL_SOURCE_STATUS', 'published', $this->listDirn, $this->listOrder); ?>
|
|
|
|
</th>
|
|
|
|
<?php else: ?>
|
|
|
|
<th width="10" class="nowrap center" >
|
|
|
|
<?php echo JText::_('COM_SERMONDISTRIBUTOR_EXTERNAL_SOURCE_STATUS'); ?>
|
|
|
|
</th>
|
|
|
|
<?php endif; ?>
|
|
|
|
<th width="5" class="nowrap center hidden-phone" >
|
|
|
|
<?php echo JHtml::_('grid.sort', 'COM_SERMONDISTRIBUTOR_EXTERNAL_SOURCE_ID', 'id', $this->listDirn, $this->listOrder); ?>
|
|
|
|
</th>
|
|
|
|
</tr>
|