ILIAS  trunk Revision v11.0_alpha-1866-gfa368f7776e
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Secondary.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 
31 interface Secondary extends Component\Component, HasViewControls
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 }
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.
getActions()
Gets the action dropdown to be displayed on the right of the title.
This describes commonalities between all types of Dropdowns.
Definition: Dropdown.php:34
trait HasViewControls
Trait for panels supporting view controls.
withFooter(Shy $component)
Sets a Component being displayed below the content.
This describes a Secondary Panel.
Definition: Secondary.php:31
This describes a Standard Dropdown.
Definition: Standard.php:26