ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
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
5
namespace
ILIAS\UI\Implementation\Component\Panel\Secondary
;
6
7
use
ILIAS\UI\Component
as
C
;
8
use
ILIAS\UI\Implementation\Component\ComponentHelper
;
9
use
ILIAS\UI\Implementation\Component\ViewControl\HasViewControls
;
10
15
abstract
class
Secondary
implements
C\Panel\Secondary\Secondary
16
{
17
use
ComponentHelper
;
18
use
HasViewControls
;
19
23
protected
$title
;
24
28
protected
$actions
= null;
29
30
34
protected
$footer_component
= null;
35
41
public
function
getTitle
() : string
42
{
43
return
$this->title
;
44
}
45
51
public
function
withActions
(
C
\Dropdown\
Standard
$actions
) :
C
\
Panel
\
Secondary
\
Secondary
52
{
53
$clone = clone $this;
54
$clone->actions =
$actions
;
55
return
$clone;
56
}
57
62
public
function
getActions
() : ?
C
\Dropdown\
Standard
63
{
64
return
$this->actions
;
65
}
66
70
public
function
withFooter
(
C
\
Button
\Shy $component) :
C
\
Panel
\
Secondary
\
Secondary
71
{
72
$clone = clone $this;
73
$clone->footer_component = $component;
74
return
$clone;
75
}
76
80
public
function
getFooter
() : ?
C
\
Button
\Shy
81
{
82
return
$this->footer_component
;
83
}
84
}
ILIAS\UI\Implementation\Component\Panel\Secondary\Secondary\$title
$title
Definition:
Secondary.php:23
ILIAS\UI\Implementation\Component\Panel\Secondary\Secondary\withFooter
withFooter(C\Button\Shy $component)
Definition:
Secondary.php:70
ILIAS\UI\Implementation\Component\Panel\Secondary
Definition:
Factory.php:5
ILIAS\UI\Component
ILIAS\UI\Implementation\Component\ComponentHelper
trait ComponentHelper
Provides common functionality for component implementations.
Definition:
ComponentHelper.php:13
ILIAS\UI\Implementation\Component\Panel\Secondary\Secondary\$actions
$actions
Definition:
Secondary.php:28
ILIAS\UI\Component\Button
Definition:
Bulky.php:4
ILIAS\UI\Implementation\Component\Panel\Secondary\Secondary\$footer_component
$footer_component
Definition:
Secondary.php:34
ILIAS\UI\Implementation\Component\ViewControl\HasViewControls
trait HasViewControls
Trait for panels supporting view controls.
Definition:
HasViewControls.php:11
ILIAS\UI\Implementation\Component\Panel\Secondary\Secondary\getActions
getActions()
Gets the action drop down to be displayed on the right of the title.
Definition:
Secondary.php:62
ILIAS\UI\Implementation\Component\Panel\Secondary\Secondary\getFooter
getFooter()
Definition:
Secondary.php:80
ILIAS\UI\Implementation\Component\Panel\Panel
Definition:
Panel.php:14
ILIAS\UI\Implementation\Component\Panel\Standard
Definition:
Standard.php:14
ILIAS\UI\Implementation\Component\Panel\Secondary\Secondary\withActions
withActions(C\Dropdown\Standard $actions)
Sets the action drop down to be displayed on the right of the title.
Definition:
Secondary.php:51
ILIAS\UI\Implementation\Component\Panel\Secondary\Secondary\getTitle
getTitle()
Gets the secondary panel title.
Definition:
Secondary.php:41
ILIAS\UI\Implementation\Component\Panel\Secondary\Secondary
Definition:
Secondary.php:15
src
UI
Implementation
Component
Panel
Secondary
Secondary.php
Generated on Wed Apr 16 2025 20:01:31 for ILIAS by
1.8.13 (using
Doxyfile
)