ILIAS  release_8 Revision v8.24
Secondary.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
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 Standard Dropdown.
Definition: Standard.php:27
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.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Dropdown.php:21
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...
trait HasViewControls
Trait for panels supporting view controls.