icingadb-web/library/Icingadb/Common/HostLink.php
2021-11-04 14:59:09 +01:00

27 lines
674 B
PHP

<?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);
}
}