ILIAS  trunk Revision v11.0_alpha-1862-g4e205cb56d4
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Listing.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 
31 interface 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 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getTitle()
Gets the title of the appointment listing.
This describes commonalities between all types of Dropdowns.
Definition: Dropdown.php:34
withActions(Dropdown\Standard $actions)
Sets the action dropdown to be displayed on the right of the title.
getActions()
Gets the action dropdown to be displayed on the right of the title.
This describes a Standard Dropdown.
Definition: Standard.php:26