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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<?php
namespace Icinga\Module\Director\Web\Table;
use Icinga\Module\Director\Objects\IcingaTimePeriod;
use gipfl\IcingaWeb2\Link;
use gipfl\IcingaWeb2\Table\ZfQueryBasedTable;
class IcingaTimePeriodRangeTable extends ZfQueryBasedTable
{
protected $period;
protected $searchColumns = array(
'range_key',
'range_value',
);
public static function load(IcingaTimePeriod $period)
{
$table = new static($period->getConnection());
$table->period = $period;
$table->getAttributes()->set('data-base-target', '_self');
return $table;
}
public function renderRow($row)
{
return $this::row([
Link::create(
$row->range_key,
'director/timeperiod/ranges',
array(
'name' => $this->period->object_name,
'range' => $row->range_key,
'range_type' => 'include'
)
),
$row->range_value
]);
}
public function getColumnsToBeRendered()
{
return [
$this->translate('Day(s)'),
$this->translate('Timeperiods'),
];
}
public function prepareQuery()
{
return $this->db()->select()->from(
['r' => 'icinga_timeperiod_range'],
[
'timeperiod_id' => 'r.timeperiod_id',
'range_key' => 'r.range_key',
'range_value' => 'r.range_value',
]
)->where('r.timeperiod_id = ?', $this->period->id);
}
}
|