29 lines
700 B
PHP
29 lines
700 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\PropertyModifier;
|
|
|
|
use Icinga\Module\Director\Web\Hook\PropertyModifierHook;
|
|
|
|
class PropertyModifierReplace PropertyModifierHook
|
|
{
|
|
|
|
public static function addSettingsFormFields(QuickForm $form)
|
|
{
|
|
$form->addElement('text', 'string', array(
|
|
'label' => 'Search string',
|
|
'required' => true,
|
|
));
|
|
$form->addElement('text', 'replacement', array(
|
|
'label' => 'Replacement',
|
|
'required' => true,
|
|
));
|
|
return $form;
|
|
}
|
|
|
|
public function transform($value)
|
|
{
|
|
return str_replace($this->settings['string'], $this->settings['replacement'], $value);
|
|
}
|
|
|
|
}
|