This commit is contained in:
AlexBa16
2026-06-08 15:29:52 +02:00
commit 27903eed4a
9931 changed files with 1535659 additions and 0 deletions
@@ -0,0 +1,41 @@
<?php
/**
* @package Joomla.Plugin
* @subpackage Fields.Note
*
* @copyright (C) 2025 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
defined('_JEXEC') or die;
if (empty($field->params->get('display_frontend', 0))) {
return;
}
$html = [];
$class = [];
if (!empty($field->fieldparams->get('class', ''))) {
$class[] = $field->fieldparams->get('class', '');
}
if ($close = (string) $field->fieldparams->get('close', '')) {
HTMLHelper::_('bootstrap.alert');
$close = $close === 'true' ? 'alert' : $close;
$html[] = '<button type="button" class="btn-close" data-bs-dismiss="' . $close . '"></button>';
$class[] = 'alert-dismissible show';
}
$class = $class ? ' class="' . implode(' ', $class) . '"' : '';
$title = (string) $field->fieldparams->get('label', ($field->label ? : ''));
$heading = (string) $field->fieldparams->get('heading', 'h4');
$description = (string) $field->fieldparams->get('description', '');
$html[] = !empty($title) ? '<' . $heading . '>' . Text::_($title) . '</' . $heading . '>' : '';
$html[] = !empty($description) ? Text::_($description) : '';
echo '<div ' . $class . '>' . implode('', $html) . '</div>';