@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'); // 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; } // build the contrast text option $contrast = $this->params->get('series_box_contrast'); $contrastClass = ''; if ($contrast) { $contrastClass = 'uk-text-contrast'; } // 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'; } ?>