blob: 2378a77d759fdc42eb91a6774127e344655b9b4c (
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
37
38
|
<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Widget\ItemTable;
use Icinga\Module\Icingadb\Common\DetailActions;
use Icinga\Module\Icingadb\Common\ViewMode;
use ipl\Web\Common\BaseItemTable;
use ipl\Web\Url;
class ServicegroupTable extends BaseItemTable
{
use DetailActions;
use ViewMode;
protected $defaultAttributes = ['class' => 'servicegroup-table'];
protected function init(): void
{
$this->initializeDetailActions();
$this->setDetailUrl(Url::fromPath('icingadb/servicegroup'));
}
protected function getLayout(): string
{
return $this->getViewMode() === 'grid'
? 'group-grid'
: parent::getLayout();
}
protected function getItemClass(): string
{
return $this->getViewMode() === 'grid'
? ServicegroupGridCell::class
: ServicegroupTableRow::class;
}
}
|