Move custom libs to the source tree
This commit is contained in:
24
libs/SimpleValidator/Validators/MaxLength.php
Normal file
24
libs/SimpleValidator/Validators/MaxLength.php
Normal file
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user