blob: daa6fdb8f51571a31f12584e6397319b03f681c2 (
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
34
|
<?php
namespace Icinga\Module\Director\PropertyModifier;
use Icinga\Module\Director\Hook\PropertyModifierHook;
use Icinga\Module\Director\Web\Form\QuickForm;
class PropertyModifierJoin extends PropertyModifierHook
{
public static function addSettingsFormFields(QuickForm $form)
{
$form->addElement('text', 'glue', array(
'label' => $form->translate('Glue'),
'required' => false,
'description' => $form->translate(
'One or more characters that will be used to glue an input array to a string. Can be left empty'
)
));
}
public function hasArraySupport()
{
return true;
}
public function transform($value)
{
if ($value === null) {
return null;
}
return implode($this->getSetting('glue'), $value);
}
}
|