blob: 8141e82ec8021290ca74e27c9467ead35de8ba18 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Widget;
use Icinga\Module\Icingadb\Common\HostStates;
use Icinga\Module\Icingadb\Common\Links;
use Icinga\Module\Icingadb\Common\StateBadges;
use ipl\Web\Url;
class HostStateBadges extends StateBadges
{
protected function getBaseUrl(): Url
{
return Links::hosts();
}
protected function getType(): string
{
return 'host';
}
protected function getPrefix(): string
{
return 'hosts';
}
protected function getStateInt(string $state): int
{
return HostStates::int($state);
}
protected function assemble()
{
$this->addAttributes(['class' => 'host-state-badges']);
$this->add(array_filter([
$this->createGroup('down'),
$this->createBadge('unknown'),
$this->createBadge('up'),
$this->createBadge('pending')
]));
}
}
|