mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-06-09 00:22:45 -04:00
parent
6ba07b089d
commit
93db1d15cb
4 changed files with 32 additions and 0 deletions
|
|
@ -125,4 +125,12 @@ class HostStatus extends DataView
|
|||
}
|
||||
return parent::isValidFilterTarget($column);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getSearchColumns()
|
||||
{
|
||||
return array('host', 'host_display_name');
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,4 +9,12 @@ class Hostgroupsummary extends Groupsummary
|
|||
{
|
||||
return array('hostgroup');
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getSearchColumns()
|
||||
{
|
||||
return array('hostgroup', 'hostgroup_alias');
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -183,4 +183,12 @@ class ServiceStatus extends DataView
|
|||
}
|
||||
return parent::isValidFilterTarget($column);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getSearchColumns()
|
||||
{
|
||||
return array('service', 'service_display_name');
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,4 +9,12 @@ class Servicegroupsummary extends Groupsummary
|
|||
{
|
||||
return array('servicegroup');
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getSearchColumns()
|
||||
{
|
||||
return array('servicegroup', 'servicegroup_alias');
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue