ILIAS  release_8 Revision v8.24
Group.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
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.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Factory.php:21
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...