Revert "monitoring: Remove the services tab when showing an object's history"

This reverts commit b3e0851b62.
This commit is contained in:
Johannes Meyer 2015-06-16 13:48:56 +02:00
parent aa0b1d43ef
commit c316e5ce8f
1 changed files with 13 additions and 0 deletions

View File

@ -214,6 +214,19 @@ class Monitoring_ShowController extends Controller
)
);
}
$tabs->add(
'services',
array(
'title' => sprintf(
$this->translate('List all services on host %s'),
$isService ? $object->getHost()->getName() : $object->getName()
),
'label' => $this->translate('Services'),
'icon' => 'services',
'url' => 'monitoring/show/services',
'urlParams' => $params,
)
);
if ($this->backend->hasQuery('eventHistory')) {
$tabs->add(
'history',