ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
DataValidator.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
27 {
29 
30  public function __construct(
31  DataValidatorService $validators
32  ) {
33  $this->validators = $validators;
34  }
35 
36  public function isValid(ElementInterface $element, bool $ignore_marker): bool
37  {
38  return $this->validators->validator($element->getDefinition()->dataType())
39  ->isValid($element, $ignore_marker);
40  }
41 
42  protected function getValidator(Type $type): DataValidatorInterface
43  {
44  $validator = $this->validators[$type->value];
45  if (isset($validator)) {
46  return $validator;
47  }
48  throw new \ilMDRepositoryException('Unhandled data type');
49  }
50 }
isValid(ElementInterface $element, bool $ignore_marker)
getDefinition()
Defining properties of the metadata element.