blob: 51d218e1c49f36319a9e262220a9d15c508c0ced (
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
|
<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Widget\ItemList;
use Icinga\Module\Icingadb\Common\Links;
use ipl\Web\Url;
/**
* Host list
*/
class HostList extends StateList
{
protected $defaultAttributes = ['class' => 'host-list'];
protected function getItemClass(): string
{
switch ($this->getViewMode()) {
case 'minimal':
return HostListItemMinimal::class;
case 'detailed':
return HostListItemDetailed::class;
case 'objectHeader':
return HostDetailHeader::class;
default:
return HostListItem::class;
}
}
protected function init()
{
$this->setMultiselectUrl(Links::hostsDetails());
$this->setDetailUrl(Url::fromPath('icingadb/host'));
}
}
|