blob: d6f9fd34bba8d457869e21581b27b4b2d257c1f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?php
namespace Icinga\Module\Director\PropertyModifier;
use Icinga\Module\Director\Hook\PropertyModifierHook;
use Icinga\Module\Director\Web\Form\QuickForm;
class PropertyModifierReplaceNull extends PropertyModifierHook
{
public function getName()
{
return 'Replace null value with String';
}
public static function addSettingsFormFields(QuickForm $form)
{
$form->addElement('text', 'string', [
'label' => 'Replacement String',
'description' => $form->translate('Your replacement string'),
'required' => true,
]);
}
public function transform($value)
{
if ($value === null) {
return $this->getSetting('string');
} else {
return $value;
}
}
}
|