2015-10-20 22:34:04 +02:00

21 lines
485 B
PHP

<?php
namespace Icinga\Module\Director\Controllers;
use Icinga\Forms\ConfigForm;
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('config')
->setModuleConfig($this->Config())
->handleRequest();
}
}