ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
Secondary.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 2019 Jesús López <lopez@leifos.com> Extended GPL, see docs/LICENSE */
4 
6 
7 use ILIAS\UI\Component as C;
9 
14 {
20  public function withFooter(C\Button\Shy $component) : Secondary;
21 
26  public function getFooter() : ?C\Button\Shy;
27 
33  public function withActions(C\Dropdown\Standard $actions) : C\Panel\Secondary\Secondary;
34 
39  public function getActions() : ?C\Dropdown\Standard;
40 }
getFooter()
Gets the Component being displayed below the content.
withFooter(C\Button\Shy $component)
Sets a Component being displayed below the content.
getActions()
Gets the action drop down to be displayed on the right of the title.
A component is the most general form of an entity in the UI.
Definition: Component.php:13
trait HasViewControls
Trait for panels supporting view controls.
This describes a Standard Panel.
Definition: Standard.php:12
withActions(C\Dropdown\Standard $actions)
Sets the action drop down to be displayed on the right of the title.
This describes a Secondary Panel.
Definition: Secondary.php:13