IcingaTimePeriodRangeTable: move and refactor

This commit is contained in:
Thomas Gelf 2017-08-16 15:26:31 +02:00
parent 7a4d04b92f
commit 573e38ce33
2 changed files with 61 additions and 61 deletions

View File

@ -1,61 +0,0 @@
<?php
namespace Icinga\Module\Director\Tables;
use Icinga\Module\Director\Objects\IcingaTimePeriod;
use Icinga\Module\Director\Web\Table\QuickTable;
class IcingaTimePeriodRangeTable extends QuickTable
{
protected $period;
protected $searchColumns = array(
'range_key',
'range_value',
);
public function getColumns()
{
return array(
'timeperiod_id' => 'r.timeperiod_id',
'range_key' => 'r.range_key',
'range_value' => 'r.range_value',
);
}
public function setTimePeriod(IcingaTimePeriod $period)
{
$this->period = $period;
$this->setConnection($period->getConnection());
return $this;
}
protected function getActionUrl($row)
{
return $this->url(
'director/timeperiod/ranges',
array(
'name' => $this->period->object_name,
'range' => $row->range_key,
'range_type' => 'include'
)
);
}
public function getTitles()
{
$view = $this->view();
return array(
'range_key' => $view->translate('Day(s)'),
'range_value' => $view->translate('Timeperiods'),
);
}
public function getBaseQuery()
{
return $this->db()->select()->from(
array('r' => 'icinga_timeperiod_range'),
array()
)->where('r.timeperiod_id = ?', $this->period->id);
}
}

View File

@ -0,0 +1,61 @@
<?php
namespace Icinga\Module\Director\Web\Table;
use Icinga\Module\Director\Objects\IcingaTimePeriod;
use ipl\Html\Link;
use ipl\Web\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->attributes()->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);
}
}