20 lines
463 B
PHP
20 lines
463 B
PHP
<?php
|
|
// @codingStandardsIgnoreStart
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
use Icinga\Application\Icinga;
|
|
use Icinga\Module\Doc\Controller as DocController;
|
|
|
|
class Doc_IndexController extends DocController
|
|
{
|
|
/**
|
|
* Display the application's documentation
|
|
*/
|
|
public function indexAction()
|
|
{
|
|
$this->populateViewFromDocDirectory(Icinga::app()->getApplicationDir('/../doc'));
|
|
}
|
|
}
|
|
// @codingStandardsIgnoreEnd
|