Add DirectorDatafieldCategoryForm

This commit is contained in:
Valentina Da Rold 2019-10-01 16:57:49 +02:00
parent 0fbe693544
commit 1f5224258b

View File

@ -0,0 +1,44 @@
<?php
namespace Icinga\Module\Director\Forms;
use Icinga\Module\Director\Web\Form\DirectorObjectForm;
class DirectorDatafieldCategoryForm extends DirectorObjectForm
{
protected $objectName = 'Data field category';
protected $listUrl = 'director/data/fieldcategories';
public function setup()
{
$this->addHtmlHint(
$this->translate(
'Data field categories allow to structure Data Fields. Fields with'
. ' a category will be shown grouped by category.'
)
);
$this->addElement('text', 'category_name', array(
'label' => $this->translate('Category name'),
'description' => $this->translate(
'The unique name of the category used for grouping your custom Data Fields.'
),
'required' => true,
));
$this->addElement('text', 'description', array(
'label' => $this->translate('Description'),
'required' => true,
));
$this->setButtons();
}
public function xxxshouldBeRenamed()
{
$object = $this->object();
return $object->hasBeenLoadedFromDb()
&& $object->getOriginalProperty('category_name') !== $this->getSentValue('category_name');
}
}