ILIAS
trunk Revision v11.0_alpha-2645-g16283d3b3f8
◀ 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
}
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 Mon Sep 1 2025 23:03:31 for ILIAS by
1.8.13 (using
Doxyfile
)