blob: fa612f1caa293788ebda10ea965b98761a888726 (
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 ServicegroupList extends BaseItemList
{
use NoSubjectLink;
use ViewMode;
protected $defaultAttributes = ['class' => 'servicegroup-list item-table'];
protected function init()
{
parent::init();
$this->getAttributes()->get('class')->removeValue('item-list');
$this->setDetailUrl(Url::fromPath('icingadb/servicegroup'));
}
protected function getItemClass(): string
{
$this->addAttributes(['class' => $this->getViewMode()]);
return ServicegroupListItem::class;
}
}
|