ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
Not.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 
7 use ILIAS\Data;
9 
10 class Not extends Custom implements Constraint
11 {
15  protected $constraint;
16 
18  {
19  $this->constraint = $constraint;
20  parent::__construct(
21  function ($value) {
22  return !$this->constraint->accepts($value);
23  },
24  function ($txt, $value) {
25  return $txt("not_generic", $this->constraint->getErrorMessage($value));
26  },
28  $lng
29  );
30  }
31 }
A constraint encodes some resrtictions on values.
Definition: Constraint.php:14
__construct(Constraint $constraint, Data\Factory $data_factory, \ilLanguage $lng)
Definition: Not.php:17
Builds data types.
Definition: Factory.php:14
$txt
Definition: error.php:11
language handling