@git Get Bible @github Get Bible @support Get Bible @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; use Joomla\CMS\Language\Text; use Joomla\CMS\HTML\HTMLHelper as Html; use Joomla\CMS\Layout\LayoutHelper; use VDM\Joomla\Utilities\ObjectHelper; $modules = $this->params->get($this->getBibleModules['position']); $position_card = ''; $positions = []; if (ObjectHelper::check($modules)) { foreach ($modules as $module) { if (isset($module->position) && strlen($module->position) > 0) { if (($content = $this->getModules($module->position, $module->separator ?? '', $module->class ?? '')) !== false) { $positions[$module->position] = $content; } else { $positions[$module->position] = JLayoutHelper::render('modulepositionerror', ['position' => $module->position, 'page' => $this->getBibleModules['page']]); } } } $position_card = ($this->params->get('show_' . $this->getBibleModules['position'] . '_card') == 1) ? 'uk-card uk-card-' . $this->params->get($this->getBibleModules['position'] . '_card_style', 'default') . ' uk-card-body uk-margin' : 'uk-margin'; } ?>