summaryrefslogtreecommitdiffstats
path: root/vendor/ipl/html/src/FormElement/ColorElement.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ipl/html/src/FormElement/ColorElement.php')
-rw-r--r--vendor/ipl/html/src/FormElement/ColorElement.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/vendor/ipl/html/src/FormElement/ColorElement.php b/vendor/ipl/html/src/FormElement/ColorElement.php
new file mode 100644
index 0000000..21d6c3a
--- /dev/null
+++ b/vendor/ipl/html/src/FormElement/ColorElement.php
@@ -0,0 +1,16 @@
+<?php
+
+namespace ipl\Html\FormElement;
+
+use ipl\Validator\HexColorValidator;
+use ipl\Validator\ValidatorChain;
+
+class ColorElement extends InputElement
+{
+ protected $type = 'color';
+
+ protected function addDefaultValidators(ValidatorChain $chain): void
+ {
+ $chain->add(new HexColorValidator());
+ }
+}