ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
AddNewItemElement.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 use ILIAS\Data\URI;
25 
27 {
31  public function __construct(
32  private readonly AddNewItemElementTypes $type,
33  private readonly string $label,
34  private readonly ?Icon $icon = null,
35  private readonly ?URI $creation_uri = null,
36  private readonly array $sub_elements = []
37  ) {
38  }
39 
40  public function getType(): AddNewItemElementTypes
41  {
42  return $this->type;
43  }
44 
45  public function getLabel(): string
46  {
47  return $this->label;
48  }
49 
50  public function getIcon(): Icon
51  {
52  return $this->icon;
53  }
54 
55  public function getCreationUri(): URI
56  {
57  return $this->creation_uri;
58  }
59 
63  public function getSubElements(): array
64  {
65  return $this->sub_elements;
66  }
67 }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(private readonly AddNewItemElementTypes $type, private readonly string $label, private readonly ?Icon $icon=null, private readonly ?URI $creation_uri=null, private readonly array $sub_elements=[])