ILIAS  trunk Revision v11.0_alpha-1744-gb0451eebef4
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Group.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\UI\Component\Item;
22 
25 
29 interface Group extends Component
30 {
34  public function getTitle(): string;
35 
41  public function getItems(): array;
42 
46  public function withActions(Standard $dropdown): Group;
47 
51  public function getActions(): ?Standard;
52 }
withActions(Standard $dropdown)
Create a new appointment item with a set of actions to perform on it.
getTitle()
Gets the title of the group.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getActions()
Get the actions Dropdown of the group.
getItems()
Gets item of the group.
This describes a Standard Dropdown.
Definition: Standard.php:26