summaryrefslogtreecommitdiffstats
path: root/library/Icingadb/Common/HostLink.php
blob: 338722050083b9c76d0c80b3cffd8329eca3379b (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
<?php

/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */

namespace Icinga\Module\Icingadb\Common;

use Icinga\Module\Icingadb\Model\Host;
use ipl\Html\BaseHtmlElement;
use ipl\Html\Html;
use ipl\Web\Widget\StateBall;

trait HostLink
{
    protected function createHostLink(Host $host, bool $withStateBall = false): BaseHtmlElement
    {
        $content = [];

        if ($withStateBall) {
            $content[] = new StateBall($host->state->getStateText(), StateBall::SIZE_MEDIUM);
            $content[] = ' ';
        }

        $content[] = $host->display_name;

        return Html::tag('a', ['href' => Links::host($host), 'class' => 'subject'], $content);
    }
}