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
Listing.php
Go to the documentation of this file.
1
<?php
2
3
namespace
ILIAS\UI\Implementation\Component\Popover
;
4
5
use \ILIAS\UI\Component;
6
use
ILIAS\UI\Implementation\Component\SignalGeneratorInterface
;
7
14
class
Listing
extends
Popover
implements
Component\Popover\Listing
15
{
16
20
protected
$items
;
21
22
27
public
function
__construct
(
$items
,
SignalGeneratorInterface
$signal_generator
)
28
{
29
parent::__construct
($signal_generator);
30
// TODO Correct type hinting and checks on list item, once this component is available in the framework
31
$types = array(
Component
\Component::class );
32
$this->
checkArgListElements
(
'items'
,
$items
, $types);
33
$this->items =
$items
;
34
}
35
36
40
public
function
getItems
()
41
{
42
return
$this->items
;
43
}
44
}
ILIAS\UI\Implementation\Component\Popover\Listing\__construct
__construct($items, SignalGeneratorInterface $signal_generator)
Definition:
Listing.php:27
ILIAS\UI\Component
ILIAS\UI\Implementation\Component\Popover
Definition:
Factory.php:3
ILIAS\UI\Implementation\Component\SignalGeneratorInterface
Definition:
SignalGeneratorInterface.php:9
ILIAS\UI\Implementation\Component\Popover\Listing\$items
$items
Definition:
Listing.php:20
ILIAS\UI\Implementation\Component\Popover\Popover\$signal_generator
$signal_generator
Definition:
Popover.php:44
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:30
SignalGeneratorInterface
ILIAS\UI\Implementation\Component\checkArgListElements
checkArgListElements($which, array &$values, $classes)
Check every element of the list if it is an instance of one of the given classes. ...
Definition:
ComponentHelper.php:217
ILIAS\UI\Implementation\Component\Popover\Popover
Definition:
Popover.php:17
ILIAS\UI\Implementation\Component\Popover\Listing
Definition:
Listing.php:14
ILIAS\UI\Implementation\Component\Popover\Listing\getItems
getItems()
Get the list items of this popover.Item[]
Definition:
Listing.php:40
src
UI
Implementation
Component
Popover
Listing.php
Generated on Fri Apr 25 2025 20:01:37 for ILIAS by
1.8.13 (using
Doxyfile
)