| Server IP : 46.105.57.169 / Your IP : 216.73.216.144 Web Server : Apache System : Linux webd003.cluster120.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : maitricfuz ( 93378) PHP Version : 8.4.10 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/maitricfuz/www/saint-martin-lg/templates/agricol/html/layouts/chromes/ |
Upload File : |
<?php
/**
* @package Joomla.Site
* @subpackage Templates.cassiopeia
*
* @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
use Joomla\CMS\Factory;
use Joomla\Utilities\ArrayHelper;
$module = $displayData['module'];
$params = $displayData['params'];
$attribs = $displayData['attribs'];
$templateName = Factory::getDocument()->template;
if ($module->content === null || $module->content === '')
{
return;
}
$moduleTag = $params->get('module_tag', 'div');
$moduleAttribs = [];
$moduleAttribs['class'] = $module->position . ' ' . htmlspecialchars((string)$params->get('moduleclass_sfx'), ENT_QUOTES, 'UTF-8') . ' tck-module';
$headerTag = htmlspecialchars((string)$params->get('header_tag', 'h4'), ENT_QUOTES, 'UTF-8');
$headerClass = htmlspecialchars((string)$params->get('header_class', ''), ENT_QUOTES, 'UTF-8');
$headerAttribs = [];
$headerAttribs['class'] = $headerClass;
if ($module->showtitle) :
$headerAttribs['class'] .= ' tck-module-title';
endif;
// Only add aria if the moduleTag is not a div
if ($moduleTag !== 'div') {
if ($module->showtitle) :
$moduleAttribs['aria-labelledby'] = 'mod-' . $module->id;
else :
$moduleAttribs['aria-label'] = $module->title;
endif;
}
// tck edition
$tckedition = \Joomla\CMS\Factory::getApplication()->input->get('tckedition', 0, 'int');
if ($tckedition === 1) {
$moduleAttribs['data-id'] = $module->id;
$moduleAttribs['data-type'] = $module->module;
}
// title split
$search = array('[[', ']]');
$replace = array('<span class="tck-title-split">', '</span>');
$title = str_replace($search, $replace, $module->title);
// Icon settings
$iconpos = (isset($attribs['iconpos']) && $attribs['iconpos']) ? $attribs['iconpos'] : '';
if (isset($attribs['icon'])) {
$iconType = $attribs['icon'];
if ($iconType === 'svg') {
$iconposstyle = ($iconpos == 'top' || $iconpos == 'bottom') ? 'display:block;' : 'display:inline-block;';
$fackstyle = ($iconposstyle != '') ? 'style="' . $iconposstyle . '"' : '';
$svgFile = $attribs['iconpath'];
$templatePath = JPATH_SITE . '/templates/' . $templateName;
$svgCode = '';
if (file_exists($templatePath . '/icons/' . $svgFile)) {
$svgCode = file_get_contents($templatePath . '/icons/' . $svgFile);
}
$icon = '<span class="fack" ' . $fackstyle . '>' . $svgCode . '</span>';
} else {
$iconsize = (isset($attribs['iconsize']) && $attribs['iconsize']) ? $attribs['iconsize'] : '';
$iconvpos = (isset($attribs['iconvpos']) && $attribs['iconvpos']) ? 'vertical-align:' . $attribs['iconvpos'] . ';' : '';
$iconposstyle = ($iconpos == 'top' || $iconpos == 'bottom') ? 'display:block;' : 'display:inline-block;';
$fackstyle = ($iconposstyle != '') ? 'style="' . $iconposstyle . '"' : '';
$fastyle = ($iconvpos != '') ? 'style="' . $iconvpos . '"' : '';
$icon = (isset($attribs['icon']) && $attribs['icon']) ? '<span class="fack ' . $iconsize . '" ' . $fackstyle . '><span class="' . $attribs['icon'] . '" ' . $fastyle . '></span></span>' : '';
}
} else {
$icon = '';
}
$header = '<' . $headerTag . ' ' . ArrayHelper::toString($headerAttribs) . '>' . (($iconpos == 'left' || $iconpos == 'top') ? $icon : '') . ($module->showtitle ? $title : '') . (($iconpos == 'right' || $iconpos == 'bottom') ? $icon : '') . '</' . $headerTag . '>';
// var_dump($header);
?>
<<?php echo $moduleTag; ?> <?php echo ArrayHelper::toString($moduleAttribs); ?>>
<?php if ($module->showtitle || $icon) : ?>
<?php echo $header; ?>
<?php endif; ?>
<div class="tck-module-text">
<?php echo $module->content; ?>
</div>
</<?php echo $moduleTag; ?>>