ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
HasMaxLength.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 2017 Jesús López <lopez@leifos.com> Extended GPL, see docs/LICENSE */
3 
4 namespace ILIAS\Refinery\String;
5 
7 use ILIAS\Data;
9 
10 class HasMaxLength extends CustomConstraint implements Constraint
11 {
15  protected $max_length;
16 
18  {
19  $this->max_length = $max_length;
21  function ($value) {
22  return strlen($value) <= $this->max_length;
23  },
24  function ($txt, $value) {
25  return $txt("not_max_length", $this->max_length);
26  },
28  $lng
29  );
30  }
31 }
__construct(int $max_length, Data\Factory $data_factory, \ilLanguage $lng)
A constraint encodes some resrtictions on values.
Definition: Constraint.php:14
Builds data types.
Definition: Factory.php:19
$txt
Definition: error.php:13
__construct(Container $dic, ilPlugin $plugin)
language handling