ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
Section.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\UI\Implementation\Component\ViewControl
;
22
23
use
ILIAS\UI\Component
as
C
;
24
use
ILIAS\UI\Implementation\Component\ComponentHelper
;
25
use
ILIAS\UI\Component\Component
;
26
use
ILIAS\UI\Component\Button\Month
;
27
use
ILIAS\UI\Component\Button\Button
;
28
29
class
Section
implements
C\ViewControl\Section
30
{
31
use
ComponentHelper
;
32
33
protected
Button
$previous_action
;
34
protected
Component
$button
;
35
protected
Button
$next_action
;
36
37
public
function
__construct
(
Button
$previous_action,
Component
$button,
Button
$next_action)
38
{
39
if
(!$button instanceof
Month
) {
40
$this->checkArgInstanceOf(
"button"
, $button, Button::class);
41
}
42
$this->previous_action =
$previous_action
;
43
$this->
button
=
$button
;
44
$this->next_action =
$next_action
;
45
}
46
50
public
function
getPreviousActions
():
Button
51
{
52
return
$this->previous_action
;
53
}
54
58
public
function
getNextActions
():
Button
59
{
60
return
$this->next_action
;
61
}
62
68
public
function
getSelectorButton
():
Component
69
{
70
return
$this->button
;
71
}
72
}
ILIAS\Repository\button
button(string $caption, string $cmd)
Definition:
trait.GlobalDICGUIServices.php:187
ILIAS\UI\Implementation\Component\ViewControl
Definition:
Factory.php:21
Standard
Button
ILIAS\UI\Component
Component
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS\UI\Implementation\Component\ViewControl\Section\$next_action
Button $next_action
Definition:
Section.php:35
ILIAS\UI\Component\Button\Month
This describes the Month Button.
Definition:
Month.php:30
ILIAS\UI\Implementation\Component\ViewControl\Section\getSelectorButton
getSelectorButton()
Returns the Default- or Split-Button placed in the middle of the control.
Definition:
Section.php:68
Month
ILIAS\UI\Implementation\Component\ViewControl\Section\getNextActions
getNextActions()
Returns the action executed by clicking on next.
Definition:
Section.php:58
ILIAS\UI\Implementation\Component\ViewControl\Section\$button
Component $button
Definition:
Section.php:34
ILIAS\UI\Implementation\Component\ViewControl\Section\__construct
__construct(Button $previous_action, Component $button, Button $next_action)
Definition:
Section.php:37
ComponentHelper
ComponentHelper
Section
ILIAS\UI\Implementation\Component\ViewControl\Section\$previous_action
Button $previous_action
Definition:
Section.php:33
ILIAS\UI\Implementation\Component\ViewControl\Section\getPreviousActions
getPreviousActions()
Returns the action executed by clicking on previous.
Definition:
Section.php:50
components
ILIAS
UI
src
Implementation
Component
ViewControl
Section.php
Generated on Thu Apr 3 2025 23:04:02 for ILIAS by
1.8.13 (using
Doxyfile
)