2017-08-16 15:26:31 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icinga\Module\Director\Web\Table;
|
|
|
|
|
|
|
|
use Icinga\Module\Director\Objects\IcingaTimePeriod;
|
2019-05-02 13:23:06 +02:00
|
|
|
use gipfl\IcingaWeb2\Link;
|
|
|
|
use gipfl\IcingaWeb2\Table\ZfQueryBasedTable;
|
2017-08-16 15:26:31 +02:00
|
|
|
|
|
|
|
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;
|
2018-05-05 00:24:49 +02:00
|
|
|
$table->getAttributes()->set('data-base-target', '_self');
|
2017-08-16 15:26:31 +02:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|