summaryrefslogtreecommitdiff
path: root/libs/SimpleValidator/Validators/MaxLength.php
diff options
context:
space:
mode:
Diffstat (limited to 'libs/SimpleValidator/Validators/MaxLength.php')
-rw-r--r--libs/SimpleValidator/Validators/MaxLength.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/libs/SimpleValidator/Validators/MaxLength.php b/libs/SimpleValidator/Validators/MaxLength.php
new file mode 100644
index 00000000..6c4e7771
--- /dev/null
+++ b/libs/SimpleValidator/Validators/MaxLength.php
@@ -0,0 +1,24 @@
+<?php
+
+namespace SimpleValidator\Validators;
+
+class MaxLength extends Base
+{
+ private $max;
+
+ public function __construct($field, $error_message, $max)
+ {
+ parent::__construct($field, $error_message);
+ $this->max = $max;
+ }
+
+ public function execute(array $data)
+ {
+ if ($this->isFieldNotEmpty($data)) {
+ $length = mb_strlen($data[$this->field], 'UTF-8');
+ return $length <= $this->max;
+ }
+
+ return true;
+ }
+}