ILIAS
trunk Revision v11.0_alpha-3011-gc6b235a2e85
◀ ilDoc Overview
class.GUIService.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\LearningModule\Presentation
;
22
23
use
ILIAS\LearningModule\InternalGUIService
;
24
use
ILIAS\LearningModule\InternalDomainService
;
25
29
class
GUIService
30
{
31
protected
InternalGUIService
$gui_service
;
32
protected
InternalDomainService
$domain_service
;
33
34
public
function
__construct
(
35
InternalDomainService
$domain_service
,
36
InternalGUIService
$gui_service
37
) {
38
$this->gui_service =
$gui_service
;
39
$this->domain_service =
$domain_service
;
40
}
41
42
public
function
request
(
43
?array $passed_query_params =
null
,
44
?array $passed_post_data =
null
45
):
PresentationGUIRequest
{
46
return
new
PresentationGUIRequest
(
47
$this->gui_service->
http
(),
48
$this->domain_service->
refinery
(),
49
$passed_query_params,
50
$passed_post_data
51
);
52
}
53
}
ILIAS\LearningModule\InternalDomainService
Definition:
class.InternalDomainService.php:27
ILIAS\LearningModule\InternalGUIService
Definition:
class.InternalGUIService.php:30
ILIAS\LearningModule\Presentation\GUIService
Definition:
class.GUIService.php:30
ILIAS\LearningModule\Presentation\GUIService\__construct
__construct(InternalDomainService $domain_service, InternalGUIService $gui_service)
Definition:
class.GUIService.php:34
ILIAS\LearningModule\Presentation\GUIService\request
request(?array $passed_query_params=null, ?array $passed_post_data=null)
Definition:
class.GUIService.php:42
ILIAS\LearningModule\Presentation\GUIService\$gui_service
InternalGUIService $gui_service
Definition:
class.GUIService.php:31
ILIAS\LearningModule\Presentation\GUIService\$domain_service
InternalDomainService $domain_service
Definition:
class.GUIService.php:32
ILIAS\LearningModule\Presentation\PresentationGUIRequest
Definition:
class.PresentationGUIRequest.php:24
return
return['delivery_method'=> 'php',]
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
delivery_method.php:21
ILIAS\FileDelivery\http
static http()
Fetches the global http state from ILIAS.
Definition:
HttpServiceAware.php:55
ILIAS\LearningModule\Presentation
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.PresentationGUIRequest.php:19
ILIAS\Repository\refinery
refinery()
Definition:
trait.GlobalDICDomainServices.php:76
components
ILIAS
LearningModule
Presentation
Service
class.GUIService.php
Generated on Sat Oct 18 2025 23:02:38 for ILIAS by
1.9.4 (using
Doxyfile
)