renderToc(Icinga::app()->getApplicationDir('/../doc'), 'Icinga Web 2', 'doc/icingaweb/chapter'); } /** * View a chapter of Icinga Web 2's documentation * * @throws Zend_Controller_Action_Exception */ public function chapterAction() { $chapterTitle = $this->getParam('chapterTitle'); if ($chapterTitle === null) { throw new Zend_Controller_Action_Exception( $this->translate('Missing parameter \'chapterTitle\''), 404 ); } $this->renderChapter(Icinga::app()->getApplicationDir('/../doc'), $chapterTitle, 'doc/icingaweb/chapter'); } /** * View Icinga Web 2's documentation as PDF */ public function pdfAction() { $this->renderPdf(Icinga::app()->getApplicationDir('/../doc'), 'Icinga Web 2', 'doc/icingaweb/chapter'); } }