Joomla-Sermon-Distributor/site/views/series/tmpl/default_seriessmall.php

52 lines
2.7 KiB
PHP
Raw Normal View History

2015-11-30 21:30:54 +00:00
<?php
/*----------------------------------------------------------------------------------| www.vdm.io |----/
Vast Development Method
/-------------------------------------------------------------------------------------------------------/
@version 1.2.9
@build 30th November, 2015
@created 22nd October, 2015
@package Sermon Distributor
@subpackage default_seriessmall.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');
?>
<article class="uk-comment">
<header class="uk-comment-header">
<?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-comment-avatar" src="<?php echo $this->series->icon; ?>" alt="<?php echo $this->series->name; ?>">
<?php endif; ?>
<?php endif; ?>
<h4 class="uk-comment-title"><?php echo $this->series->name; ?></h4>
<?php if ($this->params->get('series_hits') || $this->params->get('series_sermon_count') || $this->params->get('series_sermons_download_counter')): ?>
<div class="uk-comment-meta">
<?php if ($this->params->get('series_hits')): ?>
<?php echo JText::_('COM_SERMONDISTRIBUTOR_HITS'); ?>: <?php echo $this->series->hits; ?><br />
<?php endif; ?>
<?php if ($this->params->get('series_sermon_count')): ?>
<?php echo JText::_('COM_SERMONDISTRIBUTOR_SERMON_COUNT'); ?>: <?php echo $this->sermonTotal; ?><br />
<?php endif; ?>
<?php if ($this->params->get('series_sermons_download_counter')): ?>
<?php echo JText::_('COM_SERMONDISTRIBUTOR_TOTAL_DOWNLOADS'); ?>: <?php echo $this->downloadTotal; ?><br />
<?php endif; ?>
</div>
<?php endif; ?>
</header>
<?php if ($this->params->get('series_desc') && $this->series->description): ?>
<div class="uk-comment-body"><?php echo $this->series->description; ?></div>
<?php endif; ?>
</article><br />