ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Group.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
25
29interface 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}
A component is the most general form of an entity in the UI.
Definition: Component.php:28
This describes a Standard Dropdown.
Definition: Standard.php:27
Common interface to item groups.
Definition: Group.php:30
getTitle()
Gets the title of the group.
getActions()
Get the actions Dropdown of the group.
withActions(Standard $dropdown)
Create a new appointment item with a set of actions to perform on it.
getItems()
Gets item of the group.