2014-08-22 05:02:08 -04:00
|
|
|
<?php
|
2015-02-04 04:46:36 -05:00
|
|
|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
2014-08-22 05:02:08 -04:00
|
|
|
|
2014-12-09 06:53:44 -05:00
|
|
|
/** @type $this \Icinga\Application\Modules\Module */
|
2014-08-22 05:02:08 -04:00
|
|
|
|
2014-09-02 04:21:56 -04:00
|
|
|
$section = $this->menuSection($this->translate('Documentation'), array(
|
|
|
|
|
'title' => 'Documentation',
|
2014-11-13 14:08:58 -05:00
|
|
|
'icon' => 'book',
|
2014-08-22 05:02:08 -04:00
|
|
|
'url' => 'doc',
|
2014-11-13 09:56:34 -05:00
|
|
|
'priority' => 190
|
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
$section->add('Icinga Web 2', array(
|
|
|
|
|
'url' => 'doc/icingaweb/toc',
|
|
|
|
|
));
|
|
|
|
|
$section->add('Module documentations', array(
|
|
|
|
|
'url' => 'doc/module',
|
|
|
|
|
));
|
2014-11-17 04:39:25 -05:00
|
|
|
$section->add($this->translate('Developer - Style'), array(
|
2014-11-17 10:53:46 -05:00
|
|
|
'url' => 'doc/style/guide',
|
2014-11-13 09:56:34 -05:00
|
|
|
'priority' => 200,
|
2014-08-22 05:02:08 -04:00
|
|
|
));
|
2015-02-10 11:09:56 -05:00
|
|
|
|
|
|
|
|
$this->provideSearchUrl($this->translate('Doc'), 'doc/search');
|