@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('sermon_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('sermon_download_counter') || $this->params->get('sermon_preacher') || $this->params->get('sermon_series') || $this->params->get('sermon_category') || $this->params->get('sermon_downloads')) && ($this->params->get('sermon_desc') && ($this->item->description || $this->item->short_description))) { $mediumDesc = '2-4'; $mediumMid = '1-4'; } elseif (($this->params->get('sermon_download_counter') || $this->params->get('sermon_preacher') || $this->params->get('sermon_series') || $this->params->get('sermon_category') || $this->params->get('sermon_downloads')) || ($this->params->get('sermon_desc') && ($this->item->description || $this->item->short_description))) { $mediumDesc = '3-4'; $mediumMid = '3-4'; } elseif (!$this->params->get('sermon_icon')) { $mediumMain = '1-1'; } // set params to item $this->item->params = $this->params; ?>