30 lines
1.0 KiB
PHP
30 lines
1.0 KiB
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* Copyright (C) 2025 Moko Consulting <hello@mokoconsulting.tech>
|
||
|
|
*
|
||
|
|
* This file is part of a Moko Consulting project.
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Default layout override for mod_footer.
|
||
|
|
* Adds showtitle support and respects module settings.
|
||
|
|
*/
|
||
|
|
|
||
|
|
defined('_JEXEC') or die;
|
||
|
|
|
||
|
|
use Joomla\CMS\Language\Text;
|
||
|
|
|
||
|
|
$suffix = htmlspecialchars($params->get('moduleclass_sfx', ''), ENT_COMPAT, 'UTF-8');
|
||
|
|
$headerTag = htmlspecialchars($params->get('header_tag', 'h3'), ENT_COMPAT, 'UTF-8');
|
||
|
|
$headerClass = htmlspecialchars($params->get('header_class', ''), ENT_COMPAT, 'UTF-8');
|
||
|
|
?>
|
||
|
|
<div class="mod-footer<?php echo $suffix ? ' ' . $suffix : ''; ?>">
|
||
|
|
<?php if ($module->showtitle) : ?>
|
||
|
|
<<?php echo $headerTag; ?> class="mod-footer__title<?php echo $headerClass ? ' ' . $headerClass : ''; ?>"><?php echo $module->title; ?></<?php echo $headerTag; ?>>
|
||
|
|
<?php endif; ?>
|
||
|
|
<div class="mod-footer__line1"><?php echo $lineone; ?></div>
|
||
|
|
<div class="mod-footer__line2"><?php echo Text::_('MOD_FOOTER_LINE2'); ?></div>
|
||
|
|
</div>
|