ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ElementHelperInterface.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 
28 {
29  public function slotForElement(ElementInterface $element): SlotIdentifier;
30 
36  public function slotsForElementWithoutCondition(ElementInterface $element): \Generator;
37 
41  public function vocabulariesForSlot(
42  SlotIdentifier $slot
43  ): \Generator;
44 
45  public function findElementOfCondition(
46  SlotIdentifier $slot,
47  ElementInterface $element,
48  ElementInterface ...$all_elements
49  ): ?ElementInterface;
50 }
findElementOfCondition(SlotIdentifier $slot, ElementInterface $element, ElementInterface ... $all_elements)
slotsForElementWithoutCondition(ElementInterface $element)
Does not check the condition of the slots, so can return multiple slots per element.