blob: e30374662c73a9199db781617f3300d8bfd930ac (
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 HostItemTable extends StateItemTable
{
use DetailActions;
protected function init()
{
$this->initializeDetailActions();
$this->setMultiselectUrl(Links::hostsDetails());
$this->setDetailUrl(Url::fromPath('icingadb/host'));
}
protected function getItemClass(): string
{
return HostRowItem::class;
}
protected function getVisualColumn(): string
{
return 'host.state.severity';
}
}
|