ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
Sequential.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 
4 namespace ILIAS\Refinery\Logical;
5 
7 use ILIAS\Data;
8 
9 class Sequential extends Constraint
10 {
14  protected $constraints;
15 
22  protected $failed_constraint;
23 
24  public function __construct(array $constraints, Data\Factory $data_factory, \ilLanguage $lng)
25  {
26  $this->constraints = $constraints;
28  function ($value) {
29  foreach ($this->constraints as $key => $constraint) {
30  if (!$constraint->accepts($value)) {
31  $this->failed_constraint = $constraint;
32  return false;
33  }
34  }
35 
36  return true;
37  },
38  function ($txt, $value) {
39  return $this->failed_constraint->getErrorMessage($value);
40  },
41  $data_factory,
42  $lng
43  );
44  }
45 }
A constraint encodes some resrtictions on values.
Definition: Constraint.php:14
__construct(array $constraints, Data\Factory $data_factory, \ilLanguage $lng)
Definition: Sequential.php:24
$lng
Builds data types.
Definition: Factory.php:19
$txt
Definition: error.php:13
__construct(Container $dic, ilPlugin $plugin)
language handling