Robot
8d583feb3f
Move all JText to use the namespaced class Text directly. Move all JHtml to use the namespaced class Html directly. Move all JFactory to use the namespaced class Factory directly. Move all JRoute to use the namespaced class Route directly. Move all JFormHelper to use the namespaced class FormHelper directly. Move all JLayout to use the namespaced class FileLayout directly. Move all JLanguageMultilang to use the namespaced class Multilanguage directly. Move all JComponentHelper to use the namespaced class ComponentHelper directly. Move all JCategoryNode to use the namespaced class CategoryNode directly. Move all JComponentHelper to use the namespaced class ComponentHelper directly. Move all JToolbar to use the namespaced class Toolbar directly. Move all JToolbarHelper to use the namespaced class ToolbarHelper directly. Convert all addStyleSheet to make use of Html class instead. Convert all addScript to make use of Html class instead.
66 lines
2.3 KiB
PHP
66 lines
2.3 KiB
PHP
<?php
|
|
/*----------------------------------------------------------------------------------| io.vdm.dev |----/
|
|
Vast Development Method
|
|
/-------------------------------------------------------------------------------------------------------/
|
|
|
|
@package getBible.net
|
|
|
|
@created 3rd December, 2015
|
|
@author Llewellyn van der Merwe <https://getbible.net>
|
|
@git Get Bible <https://git.vdm.dev/getBible>
|
|
@github Get Bible <https://github.com/getBible>
|
|
@support Get Bible <https://git.vdm.dev/getBible/support>
|
|
@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');
|
|
|
|
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';
|
|
}
|
|
|
|
?>
|
|
<?php if ($positions !== []): ?>
|
|
<div class="<?php echo $this->getBibleModules['class'] ?? 'uk-margin'; ?>">
|
|
<?php foreach ($positions as $mod): ?>
|
|
<div class="<?php echo $position_card; ?>">
|
|
<?php if (is_array($mod)): ?>
|
|
<?php foreach ($mod as $pos): ?>
|
|
<?php echo $pos; ?>
|
|
<?php endforeach; ?>
|
|
<?php elseif (is_string($mod)): ?>
|
|
<div uk-grid>
|
|
<?php echo $mod; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
<?php endif; ?>
|