ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
LangValidator.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
27 {
28  use DataFetcher;
29 
31 
32  public function __construct(
33  DataHelperInterface $data_helper
34  ) {
35  $this->data_helper = $data_helper;
36  }
37 
38  public function isValid(
39  ElementInterface $element,
40  bool $ignore_marker
41  ): bool {
42  return in_array(
43  $this->dataValue($element, $ignore_marker),
44  iterator_to_array($this->data_helper->getAllLanguages())
45  );
46  }
47 }
isValid(ElementInterface $element, bool $ignore_marker)