2014-08-22 11:02:08 +02:00
|
|
|
<?php
|
2016-02-08 15:41:00 +01:00
|
|
|
/* Icinga Web 2 | (c) 2014 Icinga Development Team | GPLv2+ */
|
2014-08-22 11:02:08 +02:00
|
|
|
|
2015-03-12 13:39:17 +01:00
|
|
|
/** @var $this \Icinga\Application\Modules\Module */
|
2014-08-22 11:02:08 +02:00
|
|
|
|
2017-11-21 17:42:21 +01:00
|
|
|
$section = $this->menuSection(N_('Documentation'), array(
|
2014-09-02 10:21:56 +02:00
|
|
|
'title' => 'Documentation',
|
2014-11-13 20:08:58 +01:00
|
|
|
'icon' => 'book',
|
2014-08-22 11:02:08 +02:00
|
|
|
'url' => 'doc',
|
2015-06-01 17:16:24 +02:00
|
|
|
'priority' => 700
|
2014-11-13 15:56:34 +01:00
|
|
|
));
|
|
|
|
|
|
|
|
$section->add('Icinga Web 2', array(
|
|
|
|
'url' => 'doc/icingaweb/toc',
|
|
|
|
));
|
|
|
|
$section->add('Module documentations', array(
|
|
|
|
'url' => 'doc/module',
|
|
|
|
));
|
2017-11-21 17:42:21 +01:00
|
|
|
$section->add(N_('Developer - Style'), array(
|
2014-11-17 16:53:46 +01:00
|
|
|
'url' => 'doc/style/guide',
|
2015-06-01 17:16:24 +02:00
|
|
|
'priority' => 790
|
2014-08-22 11:02:08 +02:00
|
|
|
));
|
2015-02-10 17:09:56 +01:00
|
|
|
|
2015-03-12 18:09:43 +01:00
|
|
|
$this->provideSearchUrl($this->translate('Doc'), 'doc/search', -10);
|