ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
DurationValidator.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  $value = $this->dataValue($element, $ignore_marker);
43  if (!$this->data_helper->matchesDurationPattern($value)) {
44  return false;
45  }
46  foreach ($this->data_helper->durationToIterator($value) as $match) {
47  if (isset($match) && (int) $match < 0) {
48  return false;
49  }
50  }
51  return true;
52  }
53 }
isValid(ElementInterface $element, bool $ignore_marker)