blob: e6c8279d2c4c317ee28e0cba442e8a0e334e2606 (
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
|
<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Widget\ItemList;
use Icinga\Module\Icingadb\Common\NoSubjectLink;
use Icinga\Module\Icingadb\Common\ViewMode;
use Icinga\Module\Icingadb\Common\BaseItemList;
use ipl\Web\Url;
class HostgroupList extends BaseItemList
{
use NoSubjectLink;
use ViewMode;
protected $defaultAttributes = ['class' => 'hostgroup-list item-table'];
protected function init()
{
parent::init();
$this->getAttributes()->get('class')->removeValue('item-list');
$this->setDetailUrl(Url::fromPath('icingadb/hostgroup'));
}
protected function getItemClass(): string
{
$this->addAttributes(['class' => $this->getViewMode()]);
return HostgroupListItem::class;
}
}
|