ILIAS
trunk Revision v11.0_alpha-1723-g8e69f309bab
◀ 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
TableFactory.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\MetaData\Editor\Full\Services\Tables
;
22
23
use
ILIAS\UI\Renderer
;
24
use
ILIAS\UI\Factory
as
UIFactory
;
25
use
ILIAS\MetaData\Editor\Presenter\PresenterInterface
as
PresenterInterface
;
26
use
ILIAS\MetaData\Editor\Full\Services\DataFinder
;
27
use
ILIAS\MetaData\Elements\ElementInterface
;
28
use
ILIAS\MetaData\Paths\FactoryInterface
as
PathFactory
;
29
use
ILIAS\MetaData\Editor\Full\Services\Actions\ButtonFactory
;
30
31
class
TableFactory
32
{
33
protected
UIFactory
$ui_factory
;
34
protected
Renderer
$renderer
;
35
protected
PresenterInterface
$presenter
;
36
protected
DataFinder
$data_finder
;
37
protected
ButtonFactory
$button_factory
;
38
39
public
function
__construct
(
40
UIFactory
$ui_factory,
41
Renderer
$renderer,
42
PresenterInterface
$presenter,
43
DataFinder
$data_finder,
44
ButtonFactory
$button_factory
45
) {
46
$this->ui_factory =
$ui_factory
;
47
$this->
renderer
=
$renderer
;
48
$this->presenter =
$presenter
;
49
$this->data_finder =
$data_finder
;
50
$this->button_factory =
$button_factory
;
51
}
52
53
public
function
table
():
TableBuilder
54
{
55
return
new
TableBuilder
(
56
$this->ui_factory,
57
$this->
renderer
,
58
$this->presenter,
59
$this->data_finder,
60
$this->button_factory
61
);
62
}
63
}
ILIAS\MetaData\Editor\Full\Services\Tables\TableFactory\$presenter
PresenterInterface $presenter
Definition:
TableFactory.php:35
FactoryInterface
ILIAS\MetaData\Editor\Full\Services\Tables\TableFactory\$data_finder
DataFinder $data_finder
Definition:
TableFactory.php:36
ButtonFactory
Factory
ILIAS\MetaData\Editor\Full\Services\Tables
Definition:
Table.php:21
Renderer
renderer
renderer()
Definition:
UITestHelper.php:69
ILIAS\MetaData\Editor\Full\Services\Tables\TableFactory\$button_factory
ButtonFactory $button_factory
Definition:
TableFactory.php:37
Factory
ILIAS\MetaData\Editor\Full\Services\Tables\TableFactory\$ui_factory
UIFactory $ui_factory
Definition:
TableFactory.php:33
ILIAS\MetaData\Editor\Full\Services\DataFinder
Definition:
DataFinder.php:26
ElementInterface
ILIAS\MetaData\Editor\Full\Services\Tables\TableFactory\table
table()
Definition:
TableFactory.php:53
PresenterInterface
ILIAS\MetaData\Editor\Full\Services\Tables\TableFactory\__construct
__construct(UIFactory $ui_factory, Renderer $renderer, PresenterInterface $presenter, DataFinder $data_finder, ButtonFactory $button_factory)
Definition:
TableFactory.php:39
DataFinder
ILIAS\MetaData\Editor\Full\Services\Tables\TableFactory\$renderer
Renderer $renderer
Definition:
TableFactory.php:34
ILIAS\MetaData\Editor\Full\Services\Tables\TableFactory
Definition:
TableFactory.php:31
ILIAS\MetaData\Editor\Full\Services\Tables\TableBuilder
Definition:
TableBuilder.php:34
components
ILIAS
MetaData
classes
Editor
Full
Services
Tables
TableFactory.php
Generated on Sun Apr 6 2025 23:03:43 for ILIAS by
1.8.13 (using
Doxyfile
)