ILIAS
trunk Revision v11.0_alpha-1811-gd2d5443e411
◀ 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
Listing.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\UI\Implementation\Component\Panel\Listing
;
22
23
use
ILIAS\UI\Component
as
C
;
24
use
ILIAS\UI\Implementation\Component\ComponentHelper
;
25
use
ILIAS\UI\Component\Item\Group
;
26
31
abstract
class
Listing
implements
C\Panel\Listing\Listing
32
{
33
use
ComponentHelper
;
34
35
protected
string
$title
;
36
protected
?C\Dropdown\Standard
$actions
=
null
;
37
41
protected
array
$item_groups
= array();
42
46
public
function
__construct
(
string
$title, array $item_groups)
47
{
48
$this->title =
$title
;
49
$this->item_groups =
$item_groups
;
50
}
51
55
public
function
getTitle
(): string
56
{
57
return
$this->title
;
58
}
59
63
public
function
getItemGroups
(): array
64
{
65
return
$this->item_groups
;
66
}
67
71
public
function
withActions
(
C
\Dropdown\
Standard
$actions):
C
\
Panel
\
Listing
\
Listing
72
{
73
$clone = clone $this;
74
$clone->actions =
$actions
;
75
return
$clone;
76
}
77
81
public
function
getActions
(): ?
C
\Dropdown\
Standard
82
{
83
return
$this->actions
;
84
}
85
}
ILIAS\UI\Implementation\Component\Panel\Listing\Listing\getTitle
getTitle()
Definition:
Listing.php:55
ILIAS\UI\Implementation\Component\Panel\Listing\Listing\$title
string $title
Definition:
Listing.php:35
ILIAS\UI\Implementation\Component\Panel\Listing
Definition:
Factory.php:21
ILIAS\UI\Implementation\Component\Panel\Listing\Listing\withActions
withActions(C\Dropdown\Standard $actions)
Definition:
Listing.php:71
ILIAS\UI\Implementation\Component\Panel\Listing\Listing\getItemGroups
getItemGroups()
Definition:
Listing.php:63
ILIAS\UI\Implementation\Component\Panel\Listing\Listing\$actions
C Dropdown Standard $actions
Definition:
Listing.php:36
ILIAS\UI\Implementation\Component\Panel\Listing\Listing\getActions
getActions()
Definition:
Listing.php:81
ILIAS\UI\Component
ILIAS\UI\Implementation\Component\Panel\Listing\Listing\$item_groups
array $item_groups
Definition:
Listing.php:41
ILIAS\UI\Implementation\Component\Panel\Listing\Listing
Definition:
Listing.php:31
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ILIAS\UI\Implementation\Component\Panel\Panel
Definition:
Panel.php:31
ILIAS\UI\Implementation\Component\Panel\Listing\Listing\__construct
__construct(string $title, array $item_groups)
Definition:
Listing.php:46
ComponentHelper
ILIAS\UI\Implementation\Component\Panel\Listing\Standard
Definition:
Standard.php:30
ComponentHelper
ILIAS\ILIASObject\Creation\Group
Definition:
AddNewItemElementTypes.php:26
components
ILIAS
UI
src
Implementation
Component
Panel
Listing
Listing.php
Generated on Mon Apr 14 2025 23:04:21 for ILIAS by
1.8.13 (using
Doxyfile
)