monitoring/menu: Move Notifications beneath History

resolves #8884
This commit is contained in:
Eric Lippmann 2015-09-03 10:41:47 +02:00
parent 1b7b0c7232
commit 96f8afa6f1
1 changed files with 14 additions and 11 deletions

View File

@ -180,10 +180,6 @@ $section->add($this->translate('Downtimes'), array(
'url' => 'monitoring/list/downtimes', 'url' => 'monitoring/list/downtimes',
'priority' => 80 'priority' => 80
)); ));
$section->add($this->translate('Notifications'), array(
'url' => 'monitoring/list/notifications',
'priority' => 80
));
$section->add($this->translate('Acknowledgements'), array( $section->add($this->translate('Acknowledgements'), array(
'url' => 'monitoring/acknowledgement', 'url' => 'monitoring/acknowledgement',
'priority' => 90 'priority' => 90
@ -193,17 +189,24 @@ $section->add($this->translate('Acknowledgements'), array(
* History Section * History Section
*/ */
$section = $this->menuSection($this->translate('History'), array( $section = $this->menuSection($this->translate('History'), array(
'icon' => 'rewind' 'icon' => 'rewind'
)); ));
$section->add($this->translate('Event Grid'), array( $section->add($this->translate('Event Grid'), array(
'url' => 'monitoring/list/eventgrid', 'priority' => 10,
'priority' => 50 'url' => 'monitoring/list/eventgrid'
)); ));
$section->add($this->translate('Events'), array( $section->add($this->translate('Event Overview'), array(
'title' => $this->translate('Event Overview'), 'priority' => 20,
'url' => 'monitoring/list/eventhistory?timestamp>=-7%20days' 'url' => 'monitoring/list/eventhistory?timestamp>=-7%20days'
));
$section->add($this->translate('Notifications'), array(
'priority' => 30,
'url' => 'monitoring/list/notifications',
));
$section->add($this->translate('Timeline'), array(
'priority' => 40,
'url' => 'monitoring/timeline'
)); ));
$section->add($this->translate('Timeline'))->setUrl('monitoring/timeline');
/* /*
* Reporting Section * Reporting Section