icingadb-web/library/Icingadb/Common/ServiceLink.php

41 lines
1.1 KiB
PHP
Raw Permalink Normal View History

<?php
2020-03-13 03:38:01 -04:00
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
2019-11-04 19:07:30 -05:00
namespace Icinga\Module\Icingadb\Common;
2019-11-04 19:07:30 -05:00
use Icinga\Module\Icingadb\Model\Host;
use Icinga\Module\Icingadb\Model\Service;
use ipl\Html\FormattedString;
use ipl\Html\Html;
use ipl\Web\Widget\StateBall;
trait ServiceLink
{
protected function createServiceLink(Service $service, Host $host, bool $withStateBall = false): FormattedString
{
$content = [];
if ($withStateBall) {
$content[] = new StateBall($service->state->getStateText(), StateBall::SIZE_MEDIUM);
$content[] = ' ';
}
$content[] = $service->display_name;
return Html::sprintf(
t('%s on %s', '<service> on <host>'),
Html::tag('a', ['href' => Links::service($service, $host), 'class' => 'subject'], $content),
Html::tag(
'a',
['href' => Links::host($host), 'class' => 'subject'],
[
new StateBall($host->state->getStateText(), StateBall::SIZE_MEDIUM),
' ',
$host->display_name
]
)
);
}
}