mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-27 07:44:05 +02:00
IcingaTimePeriodRangeTable: move and refactor
This commit is contained in:
parent
7a4d04b92f
commit
573e38ce33
@ -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);
|
||||
}
|
||||
}
|
61
library/Director/Web/Table/IcingaTimePeriodRangeTable.php
Normal file
61
library/Director/Web/Table/IcingaTimePeriodRangeTable.php
Normal 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);
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user