ILIAS
trunk Revision v12.0_alpha-1221-g4e438232683
◀ ilDoc Overview
TableFactory.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\MetaData\Editor\Full\Components\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\Components\DataFinder
;
27
use
ILIAS\MetaData\Editor\Full\Components\Actions\ButtonFactory
;
28
29
class
TableFactory
30
{
31
protected
UIFactory
$ui_factory
;
32
protected
Renderer
$renderer
;
33
protected
PresenterInterface
$presenter
;
34
protected
DataFinder
$data_finder
;
35
protected
ButtonFactory
$button_factory
;
36
37
public
function
__construct
(
38
UIFactory
$ui_factory
,
39
Renderer
$renderer
,
40
PresenterInterface
$presenter
,
41
DataFinder
$data_finder
,
42
ButtonFactory
$button_factory
43
) {
44
$this->ui_factory =
$ui_factory
;
45
$this->
renderer
=
$renderer
;
46
$this->presenter =
$presenter
;
47
$this->data_finder =
$data_finder
;
48
$this->button_factory =
$button_factory
;
49
}
50
51
public
function
table
():
TableBuilder
52
{
53
return
new
TableBuilder
(
54
$this->ui_factory,
55
$this->
renderer
,
56
$this->presenter,
57
$this->data_finder,
58
$this->button_factory
59
);
60
}
61
}
renderer
renderer()
Definition:
UITestHelper.php:69
ILIAS\Data\Color\Factory
Builds a Color from either hex- or rgb values.
Definition:
Factory.php:31
ILIAS\MetaData\Editor\Full\Components\Actions\ButtonFactory
Definition:
ButtonFactory.php:31
ILIAS\MetaData\Editor\Full\Components\DataFinder
Definition:
DataFinder.php:27
ILIAS\MetaData\Editor\Full\Components\Tables\TableBuilder
Definition:
TableBuilder.php:33
ILIAS\MetaData\Editor\Full\Components\Tables\TableFactory
Definition:
TableFactory.php:30
ILIAS\MetaData\Editor\Full\Components\Tables\TableFactory\$data_finder
DataFinder $data_finder
Definition:
TableFactory.php:34
ILIAS\MetaData\Editor\Full\Components\Tables\TableFactory\$renderer
Renderer $renderer
Definition:
TableFactory.php:32
ILIAS\MetaData\Editor\Full\Components\Tables\TableFactory\__construct
__construct(UIFactory $ui_factory, Renderer $renderer, PresenterInterface $presenter, DataFinder $data_finder, ButtonFactory $button_factory)
Definition:
TableFactory.php:37
ILIAS\MetaData\Editor\Full\Components\Tables\TableFactory\table
table()
Definition:
TableFactory.php:51
ILIAS\MetaData\Editor\Full\Components\Tables\TableFactory\$ui_factory
UIFactory $ui_factory
Definition:
TableFactory.php:31
ILIAS\MetaData\Editor\Full\Components\Tables\TableFactory\$button_factory
ButtonFactory $button_factory
Definition:
TableFactory.php:35
ILIAS\MetaData\Editor\Full\Components\Tables\TableFactory\$presenter
PresenterInterface $presenter
Definition:
TableFactory.php:33
ILIAS\MetaData\Editor\Presenter\PresenterInterface
Definition:
PresenterInterface.php:24
ILIAS\UI\Renderer
An entity that renders components to a string output.
Definition:
Renderer.php:31
ILIAS\MetaData\Editor\Full\Components\Tables
Definition:
Table.php:21
components
ILIAS
MetaData
classes
Editor
Full
Components
Tables
TableFactory.php
Generated on Sun Apr 5 2026 23:03:26 for ILIAS by
1.9.4 (using
Doxyfile
)