summaryrefslogtreecommitdiffstats
path: root/library/Director/PropertyModifier/PropertyModifierReplace.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--library/Director/PropertyModifier/PropertyModifierReplace.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/library/Director/PropertyModifier/PropertyModifierReplace.php b/library/Director/PropertyModifier/PropertyModifierReplace.php
new file mode 100644
index 0000000..54e6616
--- /dev/null
+++ b/library/Director/PropertyModifier/PropertyModifierReplace.php
@@ -0,0 +1,36 @@
+<?php
+
+namespace Icinga\Module\Director\PropertyModifier;
+
+use Icinga\Module\Director\Hook\PropertyModifierHook;
+use Icinga\Module\Director\Web\Form\QuickForm;
+
+class PropertyModifierReplace extends PropertyModifierHook
+{
+ public static function addSettingsFormFields(QuickForm $form)
+ {
+ $form->addElement('text', 'string', array(
+ 'label' => 'Search string',
+ 'description' => $form->translate('The string you want to search for'),
+ 'required' => true,
+ ));
+
+ $form->addElement('text', 'replacement', array(
+ 'label' => 'Replacement',
+ 'description' => $form->translate('Your replacement string'),
+ ));
+ }
+
+ public function transform($value)
+ {
+ if ($value === null) {
+ return null;
+ }
+
+ return str_replace(
+ $this->getSetting('string'),
+ $this->getSetting('replacement'),
+ $value
+ );
+ }
+}