mirror of
https://github.com/Icinga/icingaweb2-module-graphite.git
synced 2026-02-03 20:40:06 -05:00
16 lines
419 B
PHP
16 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');
|
|
}
|
|
}
|