blob: a2fff40d5c42d8bc1aaf3ad862cf6bd418662823 (
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
35
36
37
38
39
40
41
42
43
44
|
<?php
namespace Icinga\Module\Director\PropertyModifier;
use Icinga\Module\Director\Hook\PropertyModifierHook;
use Icinga\Module\Director\Web\Form\QuickForm;
class PropertyModifierUpperCaseFirst extends PropertyModifierHook
{
public function getName()
{
return 'Uppercase the first character of each word in a string';
}
public static function addSettingsFormFields(QuickForm $form)
{
$form->addElement('select', 'lowerfirst', array(
'label' => $form->translate('Use lowercase first'),
'required' => true,
'description' => $form->translate(
'Should all the other characters be lowercased first?'
),
'value' => 'y',
'multiOptions' => array(
'y' => $form->translate('Yes'),
'n' => $form->translate('No'),
),
));
}
public function transform($value)
{
if ($value === null) {
return null;
}
if ($this->getSetting('lowerfirst', 'y') === 'y') {
return ucwords(strtolower($value));
} else {
return ucwords($value);
}
}
}
|