aboutsummaryrefslogtreecommitdiffhomepage
path: root/main/app/sprinkles/FormGenerator/src/Element/Hidden.php
diff options
context:
space:
mode:
Diffstat (limited to 'main/app/sprinkles/FormGenerator/src/Element/Hidden.php')
-rwxr-xr-xmain/app/sprinkles/FormGenerator/src/Element/Hidden.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/main/app/sprinkles/FormGenerator/src/Element/Hidden.php b/main/app/sprinkles/FormGenerator/src/Element/Hidden.php
new file mode 100755
index 0000000..08c22f7
--- /dev/null
+++ b/main/app/sprinkles/FormGenerator/src/Element/Hidden.php
@@ -0,0 +1,32 @@
+<?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;
+
+/**
+ * Hidden input type class.
+ * Manage the default attributes required to display an hidden input type
+ *
+ * @extends BaseInput
+ */
+class Hidden extends BaseInput {
+
+ /**
+ * {@inheritDoc}
+ */
+ protected function applyTransformations()
+ {
+ $this->element = array_merge([
+ "value" => $this->getValue(),
+ "name" => $this->name,
+ "id" => "field_" . $this->name
+ ], $this->element);
+ }
+}