icingaweb2/modules/doc/configuration.php

23 lines
619 B
PHP

<?php
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | http://www.gnu.org/licenses/gpl-2.0.txt */
/** @type $this \Icinga\Application\Modules\Module */
$section = $this->menuSection($this->translate('Documentation'), array(
'title' => 'Documentation',
'icon' => 'book',
'url' => 'doc',
'priority' => 190
));
$section->add('Icinga Web 2', array(
'url' => 'doc/icingaweb/toc',
));
$section->add('Module documentations', array(
'url' => 'doc/module',
));
$section->add($this->translate('Developer - Style'), array(
'url' => 'doc/style/guide',
'priority' => 200,
));