From c68f9502ea0fcbefd72222b1524dabe2ea8aa25b Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Thu, 13 Nov 2014 15:56:34 +0100 Subject: [PATCH] modules/doc: restructure menu Moved first hierarchy into the menu, added font style link refs #6936 --- modules/doc/configuration.php | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/modules/doc/configuration.php b/modules/doc/configuration.php index ce3f99113..9332bf9cb 100644 --- a/modules/doc/configuration.php +++ b/modules/doc/configuration.php @@ -8,5 +8,16 @@ $section = $this->menuSection($this->translate('Documentation'), array( 'title' => 'Documentation', 'icon' => 'img/icons/comment.png', 'url' => 'doc', - 'priority' => 80 + 'priority' => 190 +)); + +$section->add('Icinga Web 2', array( + 'url' => 'doc/icingaweb/toc', +)); +$section->add('Module documentations', array( + 'url' => 'doc/module', +)); +$section->add($this->translate('Fonts'), array( + 'url' => 'doc/style/font', + 'priority' => 200, ));