mirror of
https://github.com/Icinga/icingadb-web.git
synced 2026-02-19 02:27:57 -05:00
36 lines
767 B
PHP
36 lines
767 B
PHP
<?php
|
|
|
|
/* Icinga DB Web | (c) 2022 Icinga GmbH | GPLv2 */
|
|
|
|
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'));
|
|
}
|
|
}
|