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(); + } +}