blob: 7b5130b4a7d30ce86fc3cc6245e58511d09b04e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?php
/* Icinga PDF Export | (c) 2019 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Pdfexport\Controllers;
use Icinga\Application\Config;
use Icinga\Module\Pdfexport\Forms\ChromeBinaryForm;
use Icinga\Web\Controller;
class ConfigController extends Controller
{
public function init()
{
$this->assertPermission('config/modules');
parent::init();
}
public function chromeAction()
{
$form = (new ChromeBinaryForm())
->setIniConfig(Config::module('pdfexport'));
$form->handleRequest();
$this->view->tabs = $this->Module()->getConfigTabs()->activate('chrome');
$this->view->form = $form;
}
}
|