ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
HasNumbers.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 2018 Nils Haagen <nils.haagen@concepts-and-training.de> Extended GPL, see docs/LICENSE */
3 
5 
8 use ILIAS\Data;
9 
10 class HasNumbers extends CustomConstraint implements Constraint
11 {
13  {
15  function (Data\Password $value) {
16  return (bool) preg_match('/[0-9]/', $value->toString());
17  },
18  function ($value) {
19  return "Password must contain numbers.";
20  },
22  $lng
23  );
24  }
25 }
A constraint encodes some resrtictions on values.
Definition: Constraint.php:14
A password is used as part of credentials for authentication.
Definition: Password.php:13
Builds data types.
Definition: Factory.php:19
__construct(Container $dic, ilPlugin $plugin)
__construct(Data\Factory $data_factory, \ilLanguage $lng)
Definition: HasNumbers.php:12
language handling