summaryrefslogtreecommitdiffstats
path: root/library/Icingadb/Widget/ItemTable/HostgroupTable.php
blob: 6b40f762357b51eab9288914791c41288b095500 (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 HostgroupTable extends BaseItemTable
{
    use DetailActions;
    use ViewMode;

    protected $defaultAttributes = ['class' => 'hostgroup-table'];

    protected function init(): void
    {
        $this->initializeDetailActions();
        $this->setDetailUrl(Url::fromPath('icingadb/hostgroup'));
    }

    protected function getLayout(): string
    {
        return $this->getViewMode() === 'grid'
            ? 'group-grid'
            : parent::getLayout();
    }

    protected function getItemClass(): string
    {
        return $this->getViewMode() === 'grid'
            ? HostgroupGridCell::class
            : HostgroupTableRow::class;
    }
}