ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Secondary.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
27
32{
36 public function withFooter(Shy $component): Secondary;
37
41 public function getFooter(): ?Shy;
42
46 public function withActions(Dropdown\Standard $actions): Secondary;
47
51 public function getActions(): ?Dropdown\Standard;
52}
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 Secondary Panel.
Definition: Secondary.php:32
getActions()
Gets the action dropdown to be displayed on the right of the title.
withActions(Dropdown\Standard $actions)
Sets the action dropdown to be displayed on the right of the title.
getFooter()
Gets the Component being displayed below the content.
withFooter(Shy $component)
Sets a Component being displayed below the content.
Trait for adding view controls to a component.
trait HasViewControls
Trait for panels supporting view controls.