summaryrefslogtreecommitdiffstats
path: root/library/Director/PropertyModifier/PropertyModifierUpperCaseFirst.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--library/Director/PropertyModifier/PropertyModifierUpperCaseFirst.php44
1 files changed, 44 insertions, 0 deletions
diff --git a/library/Director/PropertyModifier/PropertyModifierUpperCaseFirst.php b/library/Director/PropertyModifier/PropertyModifierUpperCaseFirst.php
new file mode 100644
index 0000000..a2fff40
--- /dev/null
+++ b/library/Director/PropertyModifier/PropertyModifierUpperCaseFirst.php
@@ -0,0 +1,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);
+ }
+ }
+}