ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
Listing.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
26
31interface Listing extends Component
32{
36 public function getTitle(): string;
37
43 public function getItemGroups(): array;
44
48 public function withActions(Dropdown\Standard $actions): Listing;
49
53 public function getActions(): ?Dropdown\Standard;
54}
A component is the most general form of an entity in the UI.
Definition: Component.php:28
This describes commonalities between all types of Dropdowns.
Definition: Dropdown.php:35
This describes a Standard Dropdown.
Definition: Standard.php:27
withActions(Dropdown\Standard $actions)
Sets the action dropdown to be displayed on the right of the title.
getTitle()
Gets the title of the appointment listing.
getActions()
Gets the action dropdown to be displayed on the right of the title.