icingaweb2-module-director/application/tables/IcingaServiceGroupTable.php

47 lines
1.1 KiB
PHP

<?php
namespace Icinga\Module\Director\Tables;
use Icinga\Module\Director\Web\Table\QuickTable;
class IcingaServiceGroupTable extends QuickTable
{
protected $searchColumns = array(
'servicegroup',
);
public function getColumns()
{
return array(
'id' => 'sg.id',
'servicegroup' => 'sg.object_name',
'display_name' => 'sg.display_name'
);
}
protected function getActionUrl($row)
{
return $this->url('director/servicegroup', array('name' => $row->servicegroup));
}
public function getTitles()
{
$view = $this->view();
return array(
'servicegroup' => $view->translate('Servicegroup'),
'display_name' => $view->translate('Display Name'),
);
}
public function getBaseQuery()
{
$db = $this->connection()->getConnection();
$query = $db->select()->from(
array('sg' => 'icinga_servicegroup'),
array()
);
return $query;
}
}