ILIAS
trunk Revision v11.0_alpha-1749-g1a06bdef097
◀ 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
Factory.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\UI\Implementation\Component\Panel
;
22
23
use
ILIAS\UI\Component\Panel
as
P
;
24
25
class
Factory
implements
P\Factory
26
{
27
public
function
__construct
(
28
protected
Listing\
Factory
$listing_factory,
29
protected
Secondary\
Factory
$secondary_factory,
30
) {
31
}
32
33
public
function
standard
(
string
$title, $content):
Standard
34
{
35
return
new
Standard
($title, $content);
36
}
37
38
public
function
sub
(
string
$title, $content):
Sub
39
{
40
return
new
Sub
($title, $content);
41
}
42
43
public
function
report
(
string
$title, $sub_panels):
Report
44
{
45
return
new
Report
($title, $sub_panels);
46
}
47
48
public
function
secondary
(): Secondary\
Factory
49
{
50
return
$this->secondary_factory;
51
}
52
53
public
function
listing
(): Listing\
Factory
54
{
55
return
$this->listing_factory;
56
}
57
}
ILIAS\UI\Implementation\Component\Panel\Factory
Definition:
Factory.php:25
ILIAS\UI\Implementation\Component\Panel\Factory\report
report(string $title, $sub_panels)
Definition:
Factory.php:43
ILIAS\UI\Implementation\Component\Panel
Definition:
Factory.php:21
ILIAS\UI\Implementation\Component\Panel\Factory\standard
standard(string $title, $content)
Definition:
Factory.php:33
ILIAS\UI\Implementation\Component\Panel\Factory\listing
listing()
Definition:
Factory.php:53
ILIAS\UI\Implementation\Component\Panel\Sub
Definition:
Sub.php:30
ILIAS\UI\Component\Panel
Definition:
Factory.php:21
ILIAS\UI\Implementation\Component\Panel\Report
Definition:
Report.php:31
ILIAS\UI\Component\Player
Definition:
Audio.php:21
ILIAS\UI\Implementation\Component\Panel\Factory\sub
sub(string $title, $content)
Definition:
Factory.php:38
ILIAS\UI\Implementation\Component\Panel\Factory\__construct
__construct(protected Listing\Factory $listing_factory, protected Secondary\Factory $secondary_factory,)
Definition:
Factory.php:27
ILIAS\Data\LanguageTag\Standard
Definition:
Standard.php:25
ILIAS\UI\Implementation\Component\Panel\Factory\secondary
secondary()
Definition:
Factory.php:48
components
ILIAS
UI
src
Implementation
Component
Panel
Factory.php
Generated on Wed Apr 9 2025 23:02:20 for ILIAS by
1.8.13 (using
Doxyfile
)