1<?php 2/* Icinga Web 2 | (c) 2014 Icinga Development Team | GPLv2+ */ 3 4/** @var $this \Icinga\Application\Modules\Module */ 5 6$section = $this->menuSection(N_('Documentation'), array( 7 'title' => 'Documentation', 8 'icon' => 'book', 9 'url' => 'doc', 10 'priority' => 700 11)); 12 13$section->add('Icinga Web 2', array( 14 'url' => 'doc/icingaweb/toc', 15)); 16$section->add('Module documentations', array( 17 'url' => 'doc/module', 18)); 19$section->add(N_('Developer - Style'), array( 20 'url' => 'doc/style/guide', 21 'priority' => 790 22)); 23 24$this->provideSearchUrl($this->translate('Doc'), 'doc/search', -10); 25