monitoring/show: no history tab for livestatus

Right now we show the tab based on the backend capability. No eventhistory,
no history tab.
This commit is contained in:
Thomas Gelf 2014-11-16 18:43:36 +01:00
parent b6464c5d83
commit 822a64cc99
1 changed files with 11 additions and 9 deletions
modules/monitoring/application/controllers

View File

@ -227,15 +227,17 @@ class Monitoring_ShowController extends Controller
'urlParams' => $params,
)
);
$tabs->add(
'history',
array(
'title' => 'History',
'icon' => 'rewind',
'url' => 'monitoring/show/history',
'urlParams' => $params,
)
);
if ($this->backend->hasQuery('eventHistory')) {
$tabs->add(
'history',
array(
'title' => 'History',
'icon' => 'rewind',
'url' => 'monitoring/show/history',
'urlParams' => $params,
)
);
}
$tabs->extend(new OutputFormat())
->extend(new DashboardAction());
}