populateToc(Icinga::app()->getApplicationDir('/../doc'), 'Icinga Web 2'); } /** * View a chapter of Icinga Web 2's documentation * * @throws Zend_Controller_Action_Exception */ public function chapterAction() { $chapterName = $this->getParam('chapterName'); if ($chapterName === null) { throw new Zend_Controller_Action_Exception('Missing parameter "chapterName"', 404); } $this->renderChapter($chapterName, Icinga::app()->getApplicationDir('/../doc')); } }