summaryrefslogtreecommitdiff
path: root/libs/SimpleValidator/Validators/Base.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2018-04-04 15:21:13 -0700
committerFrédéric Guillot <fred@kanboard.net>2018-04-04 15:21:13 -0700
commita4642d17e0e1ea018b128efdcc3db281461458b1 (patch)
tree00210c3d0abd0adea7f8817e6ba1d82c1ea4b50e /libs/SimpleValidator/Validators/Base.php
parent62178b1f2b4ad6ed8eafbcd3be8ef2f46b041b82 (diff)
Move custom libs to the source tree
Diffstat (limited to 'libs/SimpleValidator/Validators/Base.php')
-rw-r--r--libs/SimpleValidator/Validators/Base.php37
1 files changed, 37 insertions, 0 deletions
diff --git a/libs/SimpleValidator/Validators/Base.php b/libs/SimpleValidator/Validators/Base.php
new file mode 100644
index 00000000..8157ae50
--- /dev/null
+++ b/libs/SimpleValidator/Validators/Base.php
@@ -0,0 +1,37 @@
+<?php
+
+namespace SimpleValidator\Validators;
+
+abstract class Base
+{
+ protected $field = '';
+ protected $error_message = '';
+ protected $data = array();
+
+ abstract public function execute(array $data);
+
+ public function __construct($field, $error_message)
+ {
+ $this->field = $field;
+ $this->error_message = $error_message;
+ }
+
+ public function getErrorMessage()
+ {
+ return $this->error_message;
+ }
+
+ public function getField()
+ {
+ if (is_array($this->field)) {
+ return $this->field[0];
+ }
+
+ return $this->field;
+ }
+
+ public function isFieldNotEmpty(array $data)
+ {
+ return isset($data[$this->field]) && $data[$this->field] !== '';
+ }
+}