From 12ecc2a9b8581b37523a2136d3a59becc97e2fe0 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Thu, 17 Dec 2015 14:39:49 +0100 Subject: [PATCH] IcingaApiUserForm: new form --- application/forms/IcingaApiUserForm.php | 29 +++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 application/forms/IcingaApiUserForm.php diff --git a/application/forms/IcingaApiUserForm.php b/application/forms/IcingaApiUserForm.php new file mode 100644 index 00000000..03e7bd15 --- /dev/null +++ b/application/forms/IcingaApiUserForm.php @@ -0,0 +1,29 @@ +getSentValue('object_type', 'external_object'); + $isTemplate = $objectType === 'template'; + $this->addHidden('object_type', 'external_object'); + + $this->addElement('text', 'object_name', array( + 'label' => $this->translate('Name'), + 'required' => true, + )); + + $this->addElement('password', 'password', array( + 'label' => $this->translate('Password'), + 'required' => true, + )); + + $this->addImportsElement(); + $this->setButtons(); + } +}