ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
Section.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
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\UI\Implementation\Component\ViewControl\Section
Definition:
Section.php:29
ILIAS\UI\Implementation\Component\ViewControl
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
Factory.php:21
Button
ILIAS\UI\Component
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Component
ILIAS\UI\Implementation\Component\ViewControl\Section\$next_action
Button $next_action
Definition:
Section.php:35
ILIAS\UI\Component\Button
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
Bulky.php:21
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
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
src
UI
Implementation
Component
ViewControl
Section.php
Generated on Fri Apr 4 2025 22:03:14 for ILIAS by
1.8.13 (using
Doxyfile
)