mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-31 01:34:12 +02:00
parent
99027a343d
commit
5887570ca2
@ -6,6 +6,10 @@ use Icinga\Module\Director\Web\Table\QuickTable;
|
|||||||
|
|
||||||
class DatafieldTable extends QuickTable
|
class DatafieldTable extends QuickTable
|
||||||
{
|
{
|
||||||
|
protected $searchColumns = array(
|
||||||
|
'varname',
|
||||||
|
);
|
||||||
|
|
||||||
public function getColumns()
|
public function getColumns()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
|
@ -6,6 +6,10 @@ use Icinga\Module\Director\Web\Table\QuickTable;
|
|||||||
|
|
||||||
class DatalistEntryTable extends QuickTable
|
class DatalistEntryTable extends QuickTable
|
||||||
{
|
{
|
||||||
|
protected $searchColumns = array(
|
||||||
|
'entry_name',
|
||||||
|
);
|
||||||
|
|
||||||
public function getColumns()
|
public function getColumns()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
|
@ -6,6 +6,10 @@ use Icinga\Module\Director\Web\Table\QuickTable;
|
|||||||
|
|
||||||
class DatalistTable extends QuickTable
|
class DatalistTable extends QuickTable
|
||||||
{
|
{
|
||||||
|
protected $searchColumns = array(
|
||||||
|
'list_name',
|
||||||
|
);
|
||||||
|
|
||||||
public function getColumns()
|
public function getColumns()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
|
@ -6,6 +6,10 @@ use Icinga\Module\Director\Web\Table\QuickTable;
|
|||||||
|
|
||||||
class IcingaCommandArgumentTable extends QuickTable
|
class IcingaCommandArgumentTable extends QuickTable
|
||||||
{
|
{
|
||||||
|
protected $searchColumns = array(
|
||||||
|
'command',
|
||||||
|
);
|
||||||
|
|
||||||
public function getColumns()
|
public function getColumns()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
|
@ -6,6 +6,10 @@ use Icinga\Module\Director\Web\Table\QuickTable;
|
|||||||
|
|
||||||
class IcingaCommandTable extends QuickTable
|
class IcingaCommandTable extends QuickTable
|
||||||
{
|
{
|
||||||
|
protected $searchColumns = array(
|
||||||
|
'command',
|
||||||
|
);
|
||||||
|
|
||||||
public function getColumns()
|
public function getColumns()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
|
@ -6,6 +6,10 @@ use Icinga\Module\Director\Web\Table\QuickTable;
|
|||||||
|
|
||||||
class IcingaEndpointTable extends QuickTable
|
class IcingaEndpointTable extends QuickTable
|
||||||
{
|
{
|
||||||
|
protected $searchColumns = array(
|
||||||
|
'endpoint',
|
||||||
|
);
|
||||||
|
|
||||||
public function getColumns()
|
public function getColumns()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
|
@ -6,6 +6,10 @@ use Icinga\Module\Director\Web\Table\QuickTable;
|
|||||||
|
|
||||||
class IcingaHostGroupTable extends QuickTable
|
class IcingaHostGroupTable extends QuickTable
|
||||||
{
|
{
|
||||||
|
protected $searchColumns = array(
|
||||||
|
'hostgroup',
|
||||||
|
);
|
||||||
|
|
||||||
public function getColumns()
|
public function getColumns()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
|
@ -7,6 +7,10 @@ use Icinga\Module\Director\Web\Table\QuickTable;
|
|||||||
|
|
||||||
class IcingaHostTable extends QuickTable
|
class IcingaHostTable extends QuickTable
|
||||||
{
|
{
|
||||||
|
protected $searchColumns = array(
|
||||||
|
'host',
|
||||||
|
);
|
||||||
|
|
||||||
public function getColumns()
|
public function getColumns()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
|
@ -6,6 +6,10 @@ use Icinga\Module\Director\Web\Table\QuickTable;
|
|||||||
|
|
||||||
class IcingaServiceGroupTable extends QuickTable
|
class IcingaServiceGroupTable extends QuickTable
|
||||||
{
|
{
|
||||||
|
protected $searchColumns = array(
|
||||||
|
'servicegroup',
|
||||||
|
);
|
||||||
|
|
||||||
public function getColumns()
|
public function getColumns()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
|
@ -6,6 +6,10 @@ use Icinga\Module\Director\Web\Table\QuickTable;
|
|||||||
|
|
||||||
class IcingaServiceTable extends QuickTable
|
class IcingaServiceTable extends QuickTable
|
||||||
{
|
{
|
||||||
|
protected $searchColumns = array(
|
||||||
|
'service',
|
||||||
|
);
|
||||||
|
|
||||||
public function getColumns()
|
public function getColumns()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
|
@ -6,6 +6,10 @@ use Icinga\Module\Director\Web\Table\QuickTable;
|
|||||||
|
|
||||||
class IcingaTimePeriodTable extends QuickTable
|
class IcingaTimePeriodTable extends QuickTable
|
||||||
{
|
{
|
||||||
|
protected $searchColumns = array(
|
||||||
|
'timeperiod',
|
||||||
|
);
|
||||||
|
|
||||||
public function getColumns()
|
public function getColumns()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
|
@ -6,6 +6,10 @@ use Icinga\Module\Director\Web\Table\QuickTable;
|
|||||||
|
|
||||||
class IcingaUserGroupTable extends QuickTable
|
class IcingaUserGroupTable extends QuickTable
|
||||||
{
|
{
|
||||||
|
protected $searchColumns = array(
|
||||||
|
'usergroup',
|
||||||
|
);
|
||||||
|
|
||||||
public function getColumns()
|
public function getColumns()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
|
@ -6,6 +6,10 @@ use Icinga\Module\Director\Web\Table\QuickTable;
|
|||||||
|
|
||||||
class IcingaUserTable extends QuickTable
|
class IcingaUserTable extends QuickTable
|
||||||
{
|
{
|
||||||
|
protected $searchColumns = array(
|
||||||
|
'user',
|
||||||
|
);
|
||||||
|
|
||||||
public function getColumns()
|
public function getColumns()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
|
@ -6,6 +6,10 @@ use Icinga\Module\Director\Web\Table\QuickTable;
|
|||||||
|
|
||||||
class IcingaZoneTable extends QuickTable
|
class IcingaZoneTable extends QuickTable
|
||||||
{
|
{
|
||||||
|
protected $searchColumns = array(
|
||||||
|
'zone',
|
||||||
|
);
|
||||||
|
|
||||||
public function getColumns()
|
public function getColumns()
|
||||||
{
|
{
|
||||||
if ($this->connection()->getDbType() === 'pgsql') {
|
if ($this->connection()->getDbType() === 'pgsql') {
|
||||||
|
@ -6,6 +6,10 @@ use Icinga\Module\Director\Web\Table\QuickTable;
|
|||||||
|
|
||||||
class ImportrunTable extends QuickTable
|
class ImportrunTable extends QuickTable
|
||||||
{
|
{
|
||||||
|
protected $searchColumns = array(
|
||||||
|
'source_name',
|
||||||
|
);
|
||||||
|
|
||||||
public function getColumns()
|
public function getColumns()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
|
@ -6,6 +6,10 @@ use Icinga\Module\Director\Web\Table\QuickTable;
|
|||||||
|
|
||||||
class ImportsourceTable extends QuickTable
|
class ImportsourceTable extends QuickTable
|
||||||
{
|
{
|
||||||
|
protected $searchColumns = array(
|
||||||
|
'source_name',
|
||||||
|
);
|
||||||
|
|
||||||
public function getColumns()
|
public function getColumns()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user