ILIAS
trunk Revision v11.0_alpha-3011-gc6b235a2e85
◀ 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\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
}
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\Services\Actions\ButtonFactory
Definition:
ButtonFactory.php:31
ILIAS\MetaData\Editor\Full\Services\DataFinder
Definition:
DataFinder.php:27
ILIAS\MetaData\Editor\Full\Services\Tables\TableBuilder
Definition:
TableBuilder.php:35
ILIAS\MetaData\Editor\Full\Services\Tables\TableFactory
Definition:
TableFactory.php:32
ILIAS\MetaData\Editor\Full\Services\Tables\TableFactory\table
table()
Definition:
TableFactory.php:53
ILIAS\MetaData\Editor\Full\Services\Tables\TableFactory\$data_finder
DataFinder $data_finder
Definition:
TableFactory.php:36
ILIAS\MetaData\Editor\Full\Services\Tables\TableFactory\$ui_factory
UIFactory $ui_factory
Definition:
TableFactory.php:33
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
ILIAS\MetaData\Editor\Full\Services\Tables\TableFactory\$presenter
PresenterInterface $presenter
Definition:
TableFactory.php:35
ILIAS\MetaData\Editor\Full\Services\Tables\TableFactory\$button_factory
ButtonFactory $button_factory
Definition:
TableFactory.php:37
ILIAS\MetaData\Editor\Full\Services\Tables\TableFactory\$renderer
Renderer $renderer
Definition:
TableFactory.php:34
ILIAS\MetaData\Editor\Presenter\PresenterInterface
Definition:
PresenterInterface.php:24
ILIAS\MetaData\Elements\ElementInterface
Definition:
ElementInterface.php:29
ILIAS\MetaData\Paths\FactoryInterface
Definition:
FactoryInterface.php:26
ILIAS\UI\Renderer
An entity that renders components to a string output.
Definition:
Renderer.php:31
ILIAS\MetaData\Editor\Full\Services\Tables
Definition:
Table.php:21
components
ILIAS
MetaData
classes
Editor
Full
Services
Tables
TableFactory.php
Generated on Sat Oct 18 2025 23:03:26 for ILIAS by
1.9.4 (using
Doxyfile
)