blob: 60872d8aad04d5a1fc503b6f9f337ee5e0582d90 (
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
|
<?php
/* Icinga DB Web | (c) 2022 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Widget\ItemTable;
use Icinga\Module\Icingadb\Common\DetailActions;
use Icinga\Module\Icingadb\Common\Links;
use ipl\Web\Url;
class ServiceItemTable extends StateItemTable
{
use DetailActions;
protected function init()
{
$this->initializeDetailActions();
$this->setMultiselectUrl(Links::servicesDetails());
$this->setDetailUrl(Url::fromPath('icingadb/service'));
}
protected function getItemClass(): string
{
return ServiceRowItem::class;
}
protected function getVisualColumn(): string
{
return 'service.state.severity';
}
}
|