ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
NotEmptyConstraint.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Repository\Form;
22 
23 use ILIAS\Data;
25 use ilLanguage;
26 
27 class NotEmpty extends Constraint
28 {
30  {
31  $lng->loadLanguageModule("rep");
33  static function ($value): bool {
34  return trim($value) !== '';
35  },
36  static function ($txt, $value): string {
37  return $txt("rep_input_not_empty");
38  },
40  $lng
41  );
42  }
43 }
__construct(Data\Factory $data_factory, ilLanguage $lng)
A constraint encodes some resrtictions on values.
Definition: Constraint.php:31
loadLanguageModule(string $a_module)
Load language module.
Builds a Color from either hex- or rgb values.
Definition: Factory.php:30
$txt
Definition: error.php:31
__construct(Container $dic, ilPlugin $plugin)