summaryrefslogtreecommitdiffstats
path: root/library/Icingadb/Widget/Notice.php
blob: 998ad30d321e860463ffb89b19ec5d807739af2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?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'];

    public function __construct($content)
    {
        $this->content = $content;
    }

    protected function assemble()
    {
        $this->addHtml(new Icon('triangle-exclamation'));
        $this->addHtml((new HtmlElement('span'))->add($this->content));
        $this->addHtml(new Icon('triangle-exclamation'));
    }
}