summaryrefslogtreecommitdiffstats
path: root/library/Director/Web/Table/DatalistTable.php
blob: 7b35fe0196e44f74c43ebbd795078395ae6e13a2 (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
39
40
41
<?php

namespace Icinga\Module\Director\Web\Table;

use gipfl\IcingaWeb2\Link;
use gipfl\IcingaWeb2\Table\ZfQueryBasedTable;

class DatalistTable extends ZfQueryBasedTable
{
    protected $searchColumns = ['list_name'];

    public function getColumns()
    {
        return [
            'id'        => 'l.id',
            'list_name' => 'l.list_name',
        ];
    }

    public function renderRow($row)
    {
        return $this::tr($this::td(Link::create(
            $row->list_name,
            'director/data/listentry',
            array('list' => $row->list_name)
        )));
    }

    public function getColumnsToBeRendered()
    {
        return [$this->translate('List name')];
    }

    public function prepareQuery()
    {
        return $this->db()->select()->from(
            ['l' => 'director_datalist'],
            $this->getColumns()
        )->order('list_name ASC');
    }
}