icingaweb2-module-director/application/controllers/SettingsController.php

20 lines
459 B
PHP

<?php
namespace Icinga\Module\Director\Controllers;
use Icinga\Module\Director\Web\Controller\ActionController;
class SettingsController extends ActionController
{
public function indexAction()
{
$this->view->tabs = $this->Module()
->getConfigTabs()
->activate('config');
$this->view->form = $this->loadForm('kickstart')
->setModuleConfig($this->Config())
->handleRequest();
}
}