ILIAS  release_7 Revision v7.30-3-g800a261c036
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
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}
An exception for terminatinating execution or to throw for unit testing.
A component is the most general form of an entity in the UI.
Definition: Component.php:14
This describes how a panel could be modified during construction of UI.
Definition: Panel.php:11
This describes a Secondary Panel.
Definition: Secondary.php:14
getActions()
Gets the action drop down to be displayed on the right of the title.
withActions(C\Dropdown\Standard $actions)
Sets the action drop down to be displayed on the right of the title.
getFooter()
Gets the Component being displayed below the content.
withFooter(C\Button\Shy $component)
Sets a Component being displayed below the content.
This describes a Standard Panel.
Definition: Standard.php:13
Trait for adding view controls to a component.
trait HasViewControls
Trait for panels supporting view controls.