ILIAS
release_9 Revision v9.13-25-g2c18ec4c24f
◀ ilDoc Overview
class.ilTestResultsPresentationFactory.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
use
ILIAS\UI\Factory
as
UIFactory
;
22
use
ILIAS\UI\Renderer
as
UIRenderer
;
23
use
ILIAS\Refinery\Factory
as
Refinery
;
24
use
ILIAS\HTTP\Services
as
HTTPService
;
25
use
ILIAS\Data\Factory
as
DataFactory
;
26
31
class
ilTestResultsPresentationFactory
32
{
33
public
function
__construct
(
34
protected
UIFactory
$ui_factory,
35
protected
UIRenderer
$ui_renderer,
36
protected
Refinery
$refinery
,
37
protected
DataFactory
$data_factory,
38
protected
HTTPService
$http
,
39
protected
ilLanguage
$lng
40
) {
41
}
42
43
public
function
getPassResultsPresentationTable
(
44
ilTestPassResult
$pass_results,
45
string
$title =
''
46
):
ilTestPassResultsTable
{
47
return
new
ilTestPassResultsTable
(
48
$this->ui_factory,
49
$this->ui_renderer,
50
$this->
refinery
,
51
$this->
http
,
52
$this->data_factory,
53
$this->
lng
,
54
$pass_results,
55
$title
56
);
57
}
58
}
ilTestResultsPresentationFactory\__construct
__construct(protected UIFactory $ui_factory, protected UIRenderer $ui_renderer, protected Refinery $refinery, protected DataFactory $data_factory, protected HTTPService $http, protected ilLanguage $lng)
Definition:
class.ilTestResultsPresentationFactory.php:33
ilLanguage
Factory
ilTestResultsPresentationFactory
Definition:
class.ilTestResultsPresentationFactory.php:31
Renderer
ilTestPassResultsTable
Definition:
class.ilTestPassResultsTable.php:33
Services
ILIAS\Repository\refinery
refinery()
Definition:
trait.GlobalDICDomainServices.php:73
ILIAS\FileDelivery\http
static http()
Fetches the global http state from ILIAS.
Definition:
HttpServiceAware.php:54
Factory
$lng
$lng
Definition:
save_question_post_data.php:24
ILIAS\Repository\lng
lng()
Definition:
trait.GlobalDICDomainServices.php:58
Factory
$http
$http
Definition:
raiseError.php:7
ilTestResultsPresentationFactory\getPassResultsPresentationTable
getPassResultsPresentationTable(ilTestPassResult $pass_results, string $title='')
Definition:
class.ilTestResultsPresentationFactory.php:43
ilTestPassResult
Definition:
class.ilTestPassResult.php:25
ILIAS\Repository\$refinery
Refinery Factory $refinery
Definition:
trait.BaseGUIRequest.php:36
Modules
Test
classes
Results
class.ilTestResultsPresentationFactory.php
Generated on Wed Sep 10 2025 14:11:07 for ILIAS by
1.8.13 (using
Doxyfile
)