ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Dictionary.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
31 
32 abstract class Dictionary
33 {
36 
40  private array $tag_assignments;
41 
42  public function __construct(
43  PathFactoryInterface $path_factory,
44  NavigatorFactoryInterface $navigator_factory,
45  TagAssignmentInterface ...$tag_assignments
46  ) {
47  $this->path_factory = $path_factory;
48  $this->navigator_factory = $navigator_factory;
49  $this->tag_assignments = $tag_assignments;
50  }
51 
57  public function tagsForElement(
58  BaseElementInterface $element
59  ): \Generator {
60  $path = $this->path_factory->toElement($element);
61  foreach ($this->getAssignmentsForElement($path) as $assignment) {
62  $tag = $assignment->tag();
63  if (!$this->doesIndexMatch($path, $element, $tag)) {
64  continue;
65  }
66  yield $tag;
67  }
68  }
69 
73  protected function getAssignmentsForElement(
75  ): \Generator {
76  foreach ($this->tag_assignments as $assignment) {
77  if ($assignment->matchesPath($path)) {
78  yield $assignment;
79  }
80  }
81  }
82 
83  protected function doesIndexMatch(
85  BaseElementInterface $element,
86  TagInterface $tag
87  ): bool {
88  if (!($element instanceof ElementInterface)) {
89  return true;
90  }
91  if (!$tag->isRestrictedToIndices()) {
92  return true;
93  }
94  $index = $this->findIndexOfElement($path, $element);
95  if (in_array($index, iterator_to_array($tag->indices()), true)) {
96  return true;
97  }
98  return false;
99  }
100 
101  protected function findIndexOfElement(
103  ElementInterface $element
104  ): int {
105  $name = $element->getDefinition()->name();
106  $navigator = $this->navigator_factory->navigator($path, $element);
107  $index = 0;
108  foreach ($navigator->elementsAtFinalStep() as $sibling_element) {
109  if ($sibling_element === $element) {
110  return $index;
111  }
112  $index++;
113  }
114  throw new \ilMDStructureException('Invalid metadata set');
115  }
116 }
findIndexOfElement(PathInterface $path, ElementInterface $element)
Definition: Dictionary.php:101
indices()
If this tag only applies to elements with specific indices, these indices are returned.
doesIndexMatch(PathInterface $path, BaseElementInterface $element, TagInterface $tag)
Definition: Dictionary.php:83
$path
Definition: ltiservices.php:29
tagsForElement(BaseElementInterface $element)
If possible, takes into account the index of elements when finding tags (beginning with 0)...
Definition: Dictionary.php:57
NavigatorFactoryInterface $navigator_factory
Definition: Dictionary.php:35
getDefinition()
Defining properties of the metadata element.
__construct(PathFactoryInterface $path_factory, NavigatorFactoryInterface $navigator_factory, TagAssignmentInterface ... $tag_assignments)
Definition: Dictionary.php:42