109 lines
4.1 KiB
PHP
109 lines
4.1 KiB
PHP
|
<?php
|
||
|
/*----------------------------------------------------------------------------------| www.vdm.io |----/
|
||
|
Vast Development Method
|
||
|
/-------------------------------------------------------------------------------------------------------/
|
||
|
|
||
|
@version 1.2.9
|
||
|
@build 30th November, 2015
|
||
|
@created 22nd October, 2015
|
||
|
@package Sermon Distributor
|
||
|
@subpackage default_seriespanel.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
|
||
|
____ _____ _____ __ __ __ __ ___ _____ __ __ ____ _____ _ _ ____ _ _ ____
|
||
|
(_ _)( _ )( _ )( \/ )( ) /__\ / __)( _ )( \/ )( _ \( _ )( \( )( ___)( \( )(_ _)
|
||
|
.-_)( )(_)( )(_)( ) ( )(__ /(__)\ ( (__ )(_)( ) ( )___/ )(_)( ) ( )__) ) ( )(
|
||
|
\____) (_____)(_____)(_/\/\_)(____)(__)(__) \___)(_____)(_/\/\_)(__) (_____)(_)\_)(____)(_)\_) (__)
|
||
|
|
||
|
/------------------------------------------------------------------------------------------------------*/
|
||
|
|
||
|
// No direct access to this file
|
||
|
defined('_JEXEC') or die('Restricted access');
|
||
|
|
||
|
// build the list class
|
||
|
$style = $this->params->get('series_list_style');
|
||
|
switch ($style)
|
||
|
{
|
||
|
case 1:
|
||
|
// Lines
|
||
|
$listClass = ' uk-list-line';
|
||
|
break;
|
||
|
case 2:
|
||
|
// Striped
|
||
|
$listClass = ' uk-list-striped';
|
||
|
break;
|
||
|
case 3:
|
||
|
// Spaced
|
||
|
$listClass = ' uk-list-space';
|
||
|
break;
|
||
|
default:
|
||
|
// Plain
|
||
|
$listClass = '';
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
// set Panal Size
|
||
|
$mediumMain = '1-4';
|
||
|
if (($this->params->get('series_sermon_count') || $this->params->get('series_sermons_download_counter'))
|
||
|
&& ($this->params->get('series_desc') && $this->series->description))
|
||
|
{
|
||
|
$mediumDesc = '2-4';
|
||
|
$mediumMid = '1-4';
|
||
|
}
|
||
|
elseif (($this->params->get('series_sermon_count') || $this->params->get('series_sermons_download_counter'))
|
||
|
|| ($this->params->get('series_desc') && $this->series->description))
|
||
|
{
|
||
|
$mediumDesc = '3-4';
|
||
|
$mediumMid = '3-4';
|
||
|
}
|
||
|
elseif (!$this->params->get('series_icon'))
|
||
|
{
|
||
|
$mediumMain = '1-1';
|
||
|
}
|
||
|
|
||
|
?>
|
||
|
<div class="uk-width-medium-<?php echo $mediumMain; ?>">
|
||
|
<div class="uk-panel uk-panel-box">
|
||
|
<?php if ($this->params->get('series_hits')): ?>
|
||
|
<?php
|
||
|
$hits_state = ($this->series->hits > 0) ? true:false;
|
||
|
$badge_class = ($hits_state) ? 'uk-badge-success':'uk-badge-warning';
|
||
|
$badge_icon = ($hits_state) ? 'check-circle':'minus-circle';
|
||
|
?>
|
||
|
<div class="uk-panel-badge uk-badge <?php echo $badge_class; ?>">
|
||
|
<i class="uk-icon-<?php echo $badge_icon; ?>"></i>
|
||
|
<?php echo JText::_('COM_SERMONDISTRIBUTOR_HITS'); ?>: <?php echo $this->series->hits; ?>
|
||
|
</div>
|
||
|
<?php endif ;?>
|
||
|
<h3 class="uk-panel-title"><?php echo $this->series->name; ?></h3>
|
||
|
<?php if ($this->params->get('series_icon')): ?>
|
||
|
<?php $this->series->icon = ($this->series->icon) ? $this->series->icon : $this->params->get('series_default_icon'); ?>
|
||
|
<?php if ($this->series->icon): ?>
|
||
|
<img class="uk-thumbnail uk-thumbnail-expand" src="<?php echo $this->series->icon; ?>" alt="<?php echo $this->series->name; ?>">
|
||
|
<?php endif; ?>
|
||
|
<?php endif; ?>
|
||
|
</div>
|
||
|
</div>
|
||
|
<?php if ($this->params->get('series_sermon_count') || $this->params->get('series_sermons_download_counter')): ?>
|
||
|
<div class="uk-width-medium-<?php echo $mediumMid; ?>">
|
||
|
<div class="uk-panel uk-panel-box">
|
||
|
<ul class="uk-list<?php echo $listClass; ?>">
|
||
|
<?php if ($this->params->get('series_sermon_count')): ?>
|
||
|
<li><?php echo JText::_('COM_SERMONDISTRIBUTOR_SERMON_COUNT'); ?>: <?php echo $this->sermonTotal; ?></li>
|
||
|
<?php endif; ?>
|
||
|
<?php if ($this->params->get('series_sermons_download_counter')): ?>
|
||
|
<li><?php echo JText::_('COM_SERMONDISTRIBUTOR_TOTAL_DOWNLOADS'); ?>: <?php echo $this->downloadTotal; ?></li>
|
||
|
<?php endif; ?>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
<?php endif; ?>
|
||
|
<?php if ($this->params->get('series_desc') && $this->series->description): ?>
|
||
|
<div class="uk-width-medium-<?php echo $mediumDesc; ?>">
|
||
|
<div class="uk-panel uk-panel-box">
|
||
|
<?php echo $this->series->description; ?>
|
||
|
</div>
|
||
|
</div>
|
||
|
<?php endif; ?>
|