2015-06-29 09:40:24 -04:00
|
|
|
<?php
|
|
|
|
|
|
2015-10-20 16:34:04 -04:00
|
|
|
namespace Icinga\Module\Director\Controllers;
|
|
|
|
|
|
2015-06-30 05:27:32 -04:00
|
|
|
use Icinga\Module\Director\Web\Controller\ActionController;
|
2015-06-29 09:40:24 -04:00
|
|
|
|
2015-10-20 16:34:04 -04:00
|
|
|
class SettingsController extends ActionController
|
2015-06-29 09:40:24 -04:00
|
|
|
{
|
|
|
|
|
public function indexAction()
|
|
|
|
|
{
|
2015-07-30 02:53:05 -04:00
|
|
|
$this->view->tabs = $this->Module()
|
|
|
|
|
->getConfigTabs()
|
|
|
|
|
->activate('config');
|
2015-06-29 09:40:24 -04:00
|
|
|
|
2016-03-21 14:22:31 -04:00
|
|
|
$this->view->form = $this->loadForm('kickstart')
|
2015-07-30 02:53:05 -04:00
|
|
|
->setModuleConfig($this->Config())
|
|
|
|
|
->handleRequest();
|
2015-06-29 09:40:24 -04:00
|
|
|
}
|
|
|
|
|
}
|