ILIAS
trunk Revision v11.0_alpha-1769-g99a433fe2dc
◀ 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\Input
;
22
23
use
ILIAS\UI\Implementation\Component\SignalGeneratorInterface
;
24
use
ILIAS\UI\Component
as
C
;
25
26
class
Factory
implements
C\Input\Factory
27
{
28
protected
SignalGeneratorInterface
$signal_generator
;
29
protected
Field\Factory
$field_factory
;
30
protected
Container\Factory
$container_factory
;
31
protected
ViewControl\Factory
$control_factory
;
32
33
public
function
__construct
(
34
SignalGeneratorInterface
$signal_generator,
35
Field\
Factory
$field_factory,
36
Container
\
Factory
$container_factory,
37
ViewControl\
Factory
$control_factory
38
) {
39
$this->signal_generator =
$signal_generator
;
40
$this->field_factory =
$field_factory
;
41
$this->container_factory =
$container_factory
;
42
$this->control_factory =
$control_factory
;
43
}
44
45
public
function
field
(): Field\
Factory
46
{
47
return
$this->field_factory
;
48
}
49
50
public
function
container
():
Container
\
Factory
51
{
52
return
$this->container_factory
;
53
}
54
55
public
function
viewControl
(): ViewControl\
Factory
56
{
57
return
$this->control_factory
;
58
}
59
}
ILIAS\UI\Implementation\Component\Input\Factory\$field_factory
Field Factory $field_factory
Definition:
Factory.php:29
ILIAS\UI\Implementation\Component\Input\Factory\$control_factory
ViewControl Factory $control_factory
Definition:
Factory.php:31
ILIAS\UI\Component
ILIAS\UI\Implementation\Component\Input\Factory\$container_factory
Container Factory $container_factory
Definition:
Factory.php:30
ILIAS\Data\DateFormat\Factory
Factory for Date Formats.
Definition:
Factory.php:26
ILIAS\UI\Implementation\Component\Input\Factory\viewControl
viewControl()
Definition:
Factory.php:55
ILIAS\UI\Implementation\Component\Input\Factory\__construct
__construct(SignalGeneratorInterface $signal_generator, Field\Factory $field_factory, Container\Factory $container_factory, ViewControl\Factory $control_factory)
Definition:
Factory.php:33
ILIAS\UI\Implementation\Component\Input\Factory\container
container()
Definition:
Factory.php:50
ILIAS\UI\Implementation\Component\SignalGeneratorInterface
Definition:
SignalGeneratorInterface.php:28
ILIAS\Data\Factory
Builds data types.
Definition:
Factory.php:35
ILIAS\UI\Implementation\Component\Input\Factory\field
field()
Definition:
Factory.php:45
ILIAS\UI\Implementation\Component\Input\Factory\$signal_generator
SignalGeneratorInterface $signal_generator
Definition:
Factory.php:28
SignalGeneratorInterface
ILIAS\Container
Definition:
Container.php:23
ILIAS\UI\Implementation\Component\Input
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
ArrayInputData.php:21
components
ILIAS
UI
src
Implementation
Component
Input
Factory.php
Generated on Sun Apr 13 2025 23:01:59 for ILIAS by
1.8.13 (using
Doxyfile
)