ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ElementHelper.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
32 
34 {
35  protected SlotHandler $slot_handler;
38  protected ConditionChecker $condition_checker;
40 
41  public function __construct(
42  SlotHandler $slot_handler,
43  PathFactory $path_factory,
44  NavigatorFactoryInterface $navigator_factory,
45  ConditionChecker $condition_checker,
46  ReaderInterface $reader
47  ) {
48  $this->slot_handler = $slot_handler;
49  $this->path_factory = $path_factory;
50  $this->navigator_factory = $navigator_factory;
51  $this->condition_checker = $condition_checker;
52  $this->reader = $reader;
53  }
54 
55  public function slotForElement(ElementInterface $element): SlotIdentifier
56  {
57  foreach ($this->slotsForElementWithoutCondition($element) as $slot) {
58  if ($this->condition_checker->doesElementFitSlot($element, $slot)) {
59  return $slot;
60  }
61  }
62  return SlotIdentifier::NULL;
63  }
64 
69  {
70  yield from $this->slot_handler->allSlotsForPath($this->path_factory->toElement($element));
71  }
72 
76  public function vocabulariesForSlot(
77  SlotIdentifier $slot
78  ): \Generator {
79  yield from $this->reader->activeVocabulariesForSlots($slot);
80  }
81 
82  public function findElementOfCondition(
83  SlotIdentifier $slot,
84  ElementInterface $element,
85  ElementInterface ...$all_elements
86  ): ?ElementInterface {
87  if (!$this->slot_handler->isSlotConditional($slot)) {
88  return null;
89  }
90 
91  $condition_path = $this->slot_handler->conditionForSlot($slot)->path();
92  $potential_result = $this->navigator_factory->navigator($condition_path, $element)
93  ->lastElementAtFinalStep();
94 
95  return in_array($potential_result, $all_elements, true) ? $potential_result : null;
96  }
97 }
findElementOfCondition(SlotIdentifier $slot, ElementInterface $element, ElementInterface ... $all_elements)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(SlotHandler $slot_handler, PathFactory $path_factory, NavigatorFactoryInterface $navigator_factory, ConditionChecker $condition_checker, ReaderInterface $reader)