ILIAS  release_7 Revision v7.30-3-g800a261c036
HasMinLength.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 2017 Stefan Hecken <stefan.hecken@concepts-and-training.de> Extended GPL, see docs/LICENSE */
3
5
7use ILIAS\Data;
8use ILIAS\Refinery\Custom\Constraint as CustomConstraint;
9
10class HasMinLength extends CustomConstraint implements Constraint
11{
15 protected $min_length;
16
18 {
19 $this->min_length = $min_length;
21 function ($value) {
22 return strlen($value) >= $this->min_length;
23 },
24 function ($txt, $value) {
25 $len = strlen($value);
26 return $txt("not_min_length", $len, $this->min_length);
27 },
29 $lng
30 );
31 }
32}
An exception for terminatinating execution or to throw for unit testing.
Builds data types.
Definition: Factory.php:20
__construct(int $min_length, Data\Factory $data_factory, \ilLanguage $lng)
language handling
$txt
Definition: error.php:13
A constraint encodes some resrtictions on values.
Definition: Constraint.php:15
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc