ILIAS  trunk Revision v11.0_alpha-1713-gd8962da2f67
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Group.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
26 class Group
27 {
29  private \ILIAS\Language\Language $language;
30 
31  public function __construct(Factory $dataFactory, \ILIAS\Language\Language $language)
32  {
33  $this->dataFactory = $dataFactory;
34  $this->language = $language;
35  }
36 
37  public function isNumeric(): Constraint
38  {
39  return new IsNumeric($this->dataFactory, $this->language);
40  }
41 }
Interface Observer Contains several chained tasks and infos about them.
A constraint encodes some resrtictions on values.
Definition: Constraint.php:31
Factory for Date Formats.
Definition: Factory.php:26
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Factory $dataFactory, \ILIAS\Language\Language $language)
Definition: Group.php:31
language()
description: > Example for rendring a language glyph.
Definition: language.php:41