diff options
Diffstat (limited to 'main/app/sprinkles/FormGenerator/src/Element/Checkbox.php')
-rwxr-xr-x | main/app/sprinkles/FormGenerator/src/Element/Checkbox.php | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/main/app/sprinkles/FormGenerator/src/Element/Checkbox.php b/main/app/sprinkles/FormGenerator/src/Element/Checkbox.php new file mode 100755 index 0000000..59e6eaf --- /dev/null +++ b/main/app/sprinkles/FormGenerator/src/Element/Checkbox.php @@ -0,0 +1,38 @@ +<?php +/** + * UF Form Generator + * + * @link https://github.com/lcharette/UF_FormGenerator + * @copyright Copyright (c) 2017 Louis Charette + * @license https://github.com/lcharette/UF_FormGenerator/blob/master/LICENSE (MIT License) + */ +namespace UserFrosting\Sprinkle\FormGenerator\Element; + +use UserFrosting\Sprinkle\FormGenerator\Element\BaseInput; + +/** + * Checkbox input type class. + * Manage the default attributes required to display a checkbox input + * + * @extends BaseInput + */ +class Checkbox extends BaseInput { + + /** + * {@inheritDoc} + */ + protected function applyTransformations() + { + $this->element = array_merge([ + "class" => "js-icheck", + "name" => $this->name, + "id" => "field_" . $this->name, + "binary" => true + ], $this->element); + + // We add the check status instead of the value + if ($this->element["binary"] !== false && $this->getValue() == 1) { + $this->element["checked"] = "checked"; + } + } +} |