IcingaServiceTable: do not show zones

This commit is contained in:
Thomas Gelf 2015-12-09 11:47:35 +01:00
parent 0d8746624b
commit 1159a64236
1 changed files with 0 additions and 6 deletions

View File

@ -15,7 +15,6 @@ class IcingaServiceTable extends QuickTable
return array(
'id' => 's.id',
'service' => 's.object_name',
'zone' => 'z.object_name',
);
}
@ -29,7 +28,6 @@ class IcingaServiceTable extends QuickTable
$view = $this->view();
return array(
'service' => $view->translate('Servicename'),
'zone' => $view->translate('Zone'),
);
}
@ -39,10 +37,6 @@ class IcingaServiceTable extends QuickTable
$query = $db->select()->from(
array('s' => 'icinga_service'),
array()
)->joinLeft(
array('z' => 'icinga_zone'),
's.zone_id = z.id',
array()
);
return $query;