From f66ab8dae2f3d0418759f81a3a64dc9517a62449 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 14 Apr 2024 15:17:31 +0200 Subject: Adding upstream version 1.10.2. Signed-off-by: Daniel Baumann --- application/forms/IcingaServiceGroupForm.php | 40 ++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 application/forms/IcingaServiceGroupForm.php (limited to 'application/forms/IcingaServiceGroupForm.php') diff --git a/application/forms/IcingaServiceGroupForm.php b/application/forms/IcingaServiceGroupForm.php new file mode 100644 index 0000000..db23cbb --- /dev/null +++ b/application/forms/IcingaServiceGroupForm.php @@ -0,0 +1,40 @@ +addHidden('object_type', 'object'); + + $this->addElement('text', 'object_name', [ + 'label' => $this->translate('Servicegroup'), + 'required' => true, + 'description' => $this->translate('Icinga object name for this service group') + ]); + + $this->addGroupDisplayNameElement() + ->addAssignmentElements() + ->setButtons(); + } + + protected function addAssignmentElements() + { + $this->addAssignFilter([ + 'suggestionContext' => 'ServiceFilterColumns', + 'required' => false, + 'description' => $this->translate( + 'This allows you to configure an assignment filter. Please feel' + . ' free to combine as many nested operators as you want. The' + . ' "contains" operator is valid for arrays only. Please use' + . ' wildcards and the = (equals) operator when searching for' + . ' partial string matches, like in *.example.com' + ) + ]); + + return $this; + } +} -- cgit v1.2.3