summaryrefslogtreecommitdiffstats
path: root/application/forms/DirectorDatafieldCategoryForm.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/forms/DirectorDatafieldCategoryForm.php')
-rw-r--r--application/forms/DirectorDatafieldCategoryForm.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/application/forms/DirectorDatafieldCategoryForm.php b/application/forms/DirectorDatafieldCategoryForm.php
new file mode 100644
index 0000000..fe5efc9
--- /dev/null
+++ b/application/forms/DirectorDatafieldCategoryForm.php
@@ -0,0 +1,36 @@
+<?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', [
+ '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', [
+ 'label' => $this->translate('Description'),
+ ]);
+
+ $this->setButtons();
+ }
+}