ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
Secondary.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
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 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Factory.php:21
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 file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Dropdown.php:21