ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
NullStructureElement.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 
29 {
30  public function getMDID(): NoID
31  {
32  return NoID::STRUCTURE;
33  }
34 
35  public function getSuperElement(): ?StructureElement
36  {
37  return null;
38  }
39 
43  public function getSubElements(): \Generator
44  {
45  yield from [];
46  }
47 
48  public function getSubElement(string $name): ?StructureElementInterface
49  {
50  return null;
51  }
52 }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getSubElement(string $name)
Return the first sub-element with the given name, if one exists.