From ade0c605a9d291a6ad6d33c2a21ac2ca1e5ff083 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Thu, 17 Sep 2015 09:21:43 +0200 Subject: [PATCH] Introduce form class ServiceActionForm refs #5600 --- .../forms/Navigation/ServiceActionForm.php | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 modules/monitoring/application/forms/Navigation/ServiceActionForm.php diff --git a/modules/monitoring/application/forms/Navigation/ServiceActionForm.php b/modules/monitoring/application/forms/Navigation/ServiceActionForm.php new file mode 100644 index 000000000..6be89b0a3 --- /dev/null +++ b/modules/monitoring/application/forms/Navigation/ServiceActionForm.php @@ -0,0 +1,30 @@ +addElement( + 'text', + 'filter', + array( + 'allowEmpty' => true, + 'label' => $this->translate('Filter'), + 'description' => $this->translate( + 'Display this action only for services matching this filter. Leave' + . ' blank if you want this action being displayed for all services' + ) + ) + ); + } +}