icingadb-web/library/Icingadb/Widget/Notice.php
Eric Lippmann 272e791390 License source files as GPL-3.0-or-later
Add SPDX license headers and mark source files as GPL-3.0-or-later to
preserve the option to relicense under later GPL versions.
2026-03-11 14:03:05 +01:00

37 lines
826 B
PHP

<?php
// SPDX-FileCopyrightText: 2022 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later
namespace Icinga\Module\Icingadb\Widget;
use ipl\Html\BaseHtmlElement;
use ipl\Html\HtmlElement;
use ipl\Web\Widget\Icon;
class Notice extends BaseHtmlElement
{
/** @var mixed */
protected $content;
protected $tag = 'p';
protected $defaultAttributes = ['class' => 'notice'];
/**
* Create a html notice
*
* @param mixed $content
*/
public function __construct($content)
{
$this->content = $content;
}
protected function assemble(): void
{
$this->addHtml(new Icon('triangle-exclamation'));
$this->addHtml((new HtmlElement('span'))->add($this->content));
$this->addHtml(new Icon('triangle-exclamation'));
}
}