mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-25 09:00:11 +02:00
18 lines
389 B
PHP
18 lines
389 B
PHP
<?php
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
use Icinga\Application\Icinga;
|
|
use Icinga\Module\Doc\DocController;
|
|
|
|
class Doc_IcingawebController extends DocController
|
|
{
|
|
/**
|
|
* View toc of Icinga Web 2's documentation
|
|
*/
|
|
public function tocAction()
|
|
{
|
|
$this->renderToc(Icinga::app()->getApplicationDir('/../doc'), 'Icinga Web 2');
|
|
}
|
|
}
|