ILIAS
release_10 Revision v10.1-43-ga1241a92c2f
◀ ilDoc Overview
class.InternalGUIService.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Wiki
;
22
23
use
ILIAS\DI\Container
;
24
use
ILIAS\Repository\GlobalDICGUIServices
;
25
use
ILIAS\Wiki\Content
;
26
use
ILIAS\Wiki\Page
;
27
use
ILIAS\Wiki\Notification\NotificationGUI
;
28
29
class
InternalGUIService
30
{
31
use
GlobalDICGUIServices
;
32
protected
static
array
$instance
= [];
33
34
public
function
__construct
(
35
Container
$DIC
,
36
protected
InternalDataService
$data_service,
37
protected
InternalDomainService
$domain_service
38
) {
39
$this->
initGUIServices
($DIC);
40
}
41
42
public
function
request
(
43
?array $passed_query_params = null,
44
?array $passed_post_data = null
45
):
WikiGUIRequest
{
46
return
new
WikiGUIRequest
(
47
$this->
http
(),
48
$this->domain_service->refinery(),
49
$passed_query_params,
50
$passed_post_data
51
);
52
}
53
54
public
function
content
(): Content\
GUIService
55
{
56
return
self::$instance[
"content"
] ??=
new
Content\GUIService
(
57
$this->domain_service,
58
$this
59
);
60
}
61
62
public
function
page
():
Page
\
GUIService
63
{
64
return
self::$instance[
"page"
] ??=
new
Page\GUIService
(
65
$this->domain_service,
66
$this
67
);
68
}
69
70
public
function
notification
():
NotificationGUI
71
{
72
return
self::$instance[
"notification"
] ??=
new
NotificationGUI
(
73
$this->domain_service,
74
$this
75
);
76
}
77
78
public
function
wiki
(): Wiki\
GUIService
79
{
80
return
self::$instance[
"wiki"
] ??=
new
Wiki\GUIService
(
81
$this->domain_service,
82
$this
83
);
84
}
85
86
public
function
settings
(
87
):
Settings
\
GUIService
{
88
return
self::$instance[
"settings"
] ??=
new
Settings\GUIService(
89
$this->data_service,
90
$this->domain_service,
91
$this
92
);
93
}
94
95
}
ILIAS\Repository\initGUIServices
initGUIServices(\ILIAS\DI\Container $DIC)
Definition:
trait.GlobalDICGUIServices.php:47
ILIAS\Wiki\InternalGUIService\__construct
__construct(Container $DIC, protected InternalDataService $data_service, protected InternalDomainService $domain_service)
Definition:
class.InternalGUIService.php:34
GlobalDICGUIServices
ILIAS\Wiki\Content\GUIService
Definition:
GUIService.php:30
ILIAS\Wiki\InternalGUIService\content
content()
Definition:
class.InternalGUIService.php:54
ILIAS\Wiki\Page\GUIService
Definition:
GUIService.php:30
ILIAS\Export\InternalDomainService
Definition:
class.InternalDomainService.php:25
ILIAS\Repository\GlobalDICGUIServices
trait GlobalDICGUIServices
Definition:
trait.GlobalDICGUIServices.php:44
ILIAS\DI\Container
Customizing of pimple-DIC for ILIAS.
Definition:
Container.php:35
NotificationGUI
ILIAS\Wiki\InternalGUIService\wiki
wiki()
Definition:
class.InternalGUIService.php:78
ILIAS\Export\InternalDataService
Definition:
class.InternalDataService.php:25
Container
ILIAS\FileDelivery\http
static http()
Fetches the global http state from ILIAS.
Definition:
HttpServiceAware.php:57
$DIC
global $DIC
Definition:
shib_login.php:25
ILIAS\Wiki
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS\Wiki\WikiGUIRequest
Definition:
WikiGUIRequest.php:23
ILIAS\Wiki\Page
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
Page.php:21
ILIAS\Wiki\InternalGUIService\$instance
static array $instance
Definition:
class.InternalGUIService.php:32
ILIAS\Wiki\InternalGUIService\settings
settings()
Definition:
class.InternalGUIService.php:86
ILIAS\Wiki\InternalGUIService\notification
notification()
Definition:
class.InternalGUIService.php:70
ILIAS\Wiki\Notification\NotificationGUI
This class is only in GUI layer, since it needs to get the abstracts for the page GUI...
Definition:
NotificationGUI.php:30
ILIAS\Export\InternalGUIService
Export internal ui service.
Definition:
class.InternalGUIService.php:30
SettingsInterface
ILIAS\Wiki\Page\Page
Wiki page.
Definition:
Page.php:26
ILIAS\Wiki\Content
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
NavigationManager.php:21
ILIAS\Wiki\InternalGUIService\page
page()
Definition:
class.InternalGUIService.php:62
ILIAS\Wiki\InternalGUIService\request
request(?array $passed_query_params=null, ?array $passed_post_data=null)
Definition:
class.InternalGUIService.php:42
ILIAS\Wiki\Wiki\GUIService
Definition:
GUIService.php:29
components
ILIAS
Wiki
Service
class.InternalGUIService.php
Generated on Wed Sep 10 2025 15:14:58 for ILIAS by
1.8.13 (using
Doxyfile
)