blob: fee25864da54d0c3c513184e71c8d498e6effdfa (
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
46
|
<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Widget;
use Icinga\Module\Icingadb\Common\Links;
use Icinga\Module\Icingadb\Common\ServiceStates;
use Icinga\Module\Icingadb\Common\StateBadges;
use ipl\Web\Url;
class ServiceStateBadges extends StateBadges
{
protected function getBaseUrl(): Url
{
return Links::services();
}
protected function getType(): string
{
return 'service';
}
protected function getPrefix(): string
{
return 'services';
}
protected function getStateInt(string $state): int
{
return ServiceStates::int($state);
}
protected function assemble()
{
$this->addAttributes(['class' => 'service-state-badges']);
$this->add(array_filter([
$this->createGroup('critical'),
$this->createGroup('warning'),
$this->createGroup('unknown'),
$this->createBadge('ok'),
$this->createBadge('pending')
]));
}
}
|