joomla-component/site/tmpl/openai/default_getbibleaicustomtabs.php
Robot 4f4c13d13c
Release of v5.0.11
Moved all library classes away from default Namespace and Folder path to avoid collusion on outdated classes.
2024-04-06 15:20:14 +02:00

58 lines
2.0 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
/------------------------------------------------------------------------------------------------------*/
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Layout\LayoutHelper;
use TrueChristianChurch\Joomla\Utilities\ObjectHelper;
// No direct access to this file
defined('_JEXEC') or die;
$modules = $this->params->get('custom_ai_tabs');
$tabs = [];
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)
{
$tabs[$module->position] = $content;
}
else
{
$tabs[$module->position] = LayoutHelper::render('modulepositionerror', ['position' => $module->position, 'page' => 'GetBible AI']);
}
}
}
}
$custom_tabs_card = ($this->params->get('show_custom_tabs_card') == 1) ? 'uk-card uk-card-' . $this->params->get('custom_tabs_card_style', 'default') . ' uk-card-body' : '';
?>
<?php if ($tabs !== []): ?>
<?php foreach ($tabs as $tab): ?>
<li class="el-item uk-margin-remove-first-child">
<div class="<?php echo $custom_tabs_card; ?>">
<?php echo $tab; ?>
</div>
</li>
<?php endforeach; ?>
<?php endif; ?>