mirror of
https://github.com/Icinga/icingaweb2-module-graphite.git
synced 2026-03-05 23:04:24 -05:00
17 lines
419 B
PHP
17 lines
419 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Icinga\Module\Graphite\Controllers;
|
||
|
|
|
||
|
|
use Icinga\Module\Graphite\Forms\ConfigForm;
|
||
|
|
use Icinga\Web\Controller;
|
||
|
|
|
||
|
|
class ConfigController extends Controller
|
||
|
|
{
|
||
|
|
public function indexAction()
|
||
|
|
{
|
||
|
|
$this->view->form = $form = new ConfigForm();
|
||
|
|
$form->setIniConfig($this->Config())->handleRequest();
|
||
|
|
$this->view->tabs = $this->Module()->getConfigTabs()->activate('backend');
|
||
|
|
}
|
||
|
|
}
|