Doc: make PDF export action reachable

refs #1716
This commit is contained in:
Alexander A. Klimov 2018-01-26 12:12:27 +01:00
parent f2f9ab5bc0
commit 7a444df040
1 changed files with 15 additions and 10 deletions

View File

@ -7,6 +7,7 @@ use Icinga\Module\Doc\Renderer\DocSectionRenderer;
use Icinga\Module\Doc\Renderer\DocTocRenderer;
use Icinga\Web\Controller;
use Icinga\Web\Url;
use Icinga\Web\Widget\Tabextension\OutputFormat;
class DocController extends Controller
{
@ -52,11 +53,13 @@ class DocController extends Controller
}
$title = $first === null ? ucfirst($chapter) : $first->getTitle();
$this->view->title = $title;
$this->getTabs()->add('toc', array(
$this->getTabs()
->add('toc', array(
'active' => true,
'title' => $title,
'url' => Url::fromRequest()
));
))
->extend(new OutputFormat(array(OutputFormat::TYPE_CSV, OutputFormat::TYPE_JSON)));
$this->render('chapter', null, true);
}
@ -77,11 +80,13 @@ class DocController extends Controller
->setUrlParams($urlParams);
$name = ucfirst($name);
$title = sprintf($this->translate('%s Documentation'), $name);
$this->getTabs()->add('toc', array(
$this->getTabs()
->add('toc', array(
'active' => true,
'title' => $title,
'url' => Url::fromRequest()
));
))
->extend(new OutputFormat(array(OutputFormat::TYPE_CSV, OutputFormat::TYPE_JSON)));
$this->render('toc', null, true);
}