mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2026-06-04 22:32:55 -04:00
Add SPDX license headers and mark source files as GPL-3.0-or-later to preserve the option to relicense under later GPL versions.
49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?php
|
|
|
|
// SPDX-FileCopyrightText: 2018 Icinga GmbH <https://icinga.com>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
namespace Icinga\Module\Director\Controllers;
|
|
|
|
use Icinga\Module\Director\Forms\DirectorDatafieldCategoryForm;
|
|
use Icinga\Module\Director\Web\Controller\ActionController;
|
|
|
|
class DatafieldcategoryController extends ActionController
|
|
{
|
|
public function addAction()
|
|
{
|
|
$this->indexAction();
|
|
}
|
|
|
|
public function editAction()
|
|
{
|
|
$this->indexAction();
|
|
}
|
|
|
|
public function indexAction()
|
|
{
|
|
$edit = false;
|
|
|
|
if ($name = $this->params->get('name')) {
|
|
$edit = true;
|
|
}
|
|
|
|
$form = DirectorDatafieldCategoryForm::load()
|
|
->setDb($this->db());
|
|
|
|
if ($edit) {
|
|
$form->loadObject($name);
|
|
$this->addTitle(
|
|
$this->translate('Modify %s'),
|
|
$form->getObject()->category_name
|
|
);
|
|
$this->addSingleTab($this->translate('Edit a Category'));
|
|
} else {
|
|
$this->addTitle($this->translate('Add a new Data Field Category'));
|
|
$this->addSingleTab($this->translate('New Category'));
|
|
}
|
|
|
|
$form->handleRequest();
|
|
$this->content()->add($form);
|
|
}
|
|
}
|