ILIAS
trunk Revision v11.0_alpha-3011-gc6b235a2e85
◀ ilDoc Overview
class.InternalGUIService.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Repository
;
22
23
use
ILIAS\DI\Container
;
24
28
class
InternalGUIService
29
{
30
use
GlobalDICGUIServices
;
31
32
protected
InternalDataService
$data_service
;
33
protected
InternalDomainService
$domain_service
;
34
35
public
function
__construct
(
36
Container
$DIC
,
37
InternalDataService
$data_service
,
38
InternalDomainService
$domain_service
39
) {
40
$this->data_service =
$data_service
;
41
$this->domain_service =
$domain_service
;
42
$this->
initGUIServices
($DIC);
43
}
44
45
public
function
administration
():
Administration
\GUIService
46
{
47
return
new
Administration\GUIService
(
48
$this->domain_service,
49
$this
50
);
51
}
52
53
public
function
pluginSlot
(): PluginSlot\GUIService
54
{
55
return
new
PluginSlot\GUIService
(
56
$this->domain_service,
57
$this
58
);
59
}
60
61
public
function
trash
(): Trash\GUIService
62
{
63
return
new
Trash\GUIService
(
64
$this->domain_service,
65
$this
66
);
67
}
68
69
public
function
standardRequest
():
StandardGUIRequest
70
{
71
return
new
StandardGUIRequest
(
72
$this->
http
(),
73
$this->domain_service->refinery()
74
);
75
}
76
77
public
function
ownership
(): Ownership\GUIService
78
{
79
return
new
Ownership\GUIService
(
80
$this->domain_service,
81
$this
82
);
83
}
84
85
}
ILIAS\Administration
Definition:
Administration.php:24
ILIAS\DI\Container
Customizing of pimple-DIC for ILIAS.
Definition:
Container.php:36
ILIAS\Repository\Administration\GUIService
Definition:
class.GUIService.php:30
ILIAS\Repository\InternalDataService
Definition:
class.InternalDataService.php:26
ILIAS\Repository\InternalDomainService
Definition:
class.InternalDomainService.php:28
ILIAS\Repository\InternalGUIService
Definition:
class.InternalGUIService.php:29
ILIAS\Repository\InternalGUIService\pluginSlot
pluginSlot()
Definition:
class.InternalGUIService.php:53
ILIAS\Repository\InternalGUIService\administration
administration()
Definition:
class.InternalGUIService.php:45
ILIAS\Repository\InternalGUIService\$domain_service
InternalDomainService $domain_service
Definition:
class.InternalGUIService.php:33
ILIAS\Repository\InternalGUIService\ownership
ownership()
Definition:
class.InternalGUIService.php:77
ILIAS\Repository\InternalGUIService\standardRequest
standardRequest()
Definition:
class.InternalGUIService.php:69
ILIAS\Repository\InternalGUIService\$data_service
InternalDataService $data_service
Definition:
class.InternalGUIService.php:32
ILIAS\Repository\InternalGUIService\__construct
__construct(Container $DIC, InternalDataService $data_service, InternalDomainService $domain_service)
Definition:
class.InternalGUIService.php:35
ILIAS\Repository\InternalGUIService\trash
trash()
Definition:
class.InternalGUIService.php:61
ILIAS\Repository\Ownership\GUIService
Definition:
class.GUIService.php:27
ILIAS\Repository\PluginSlot\GUIService
Definition:
class.GUIService.php:30
ILIAS\Repository\StandardGUIRequest
Definition:
class.StandardGUIRequest.php:24
ILIAS\Repository\Trash\GUIService
Definition:
class.GUIService.php:30
ILIAS\Repository\GlobalDICGUIServices
trait GlobalDICGUIServices
Definition:
trait.GlobalDICGUIServices.php:44
ILIAS\Repository
ILIAS\Repository\initGUIServices
initGUIServices(\ILIAS\DI\Container $DIC)
Definition:
trait.GlobalDICGUIServices.php:47
ILIAS\Repository\http
http()
Definition:
trait.GlobalDICGUIServices.php:68
$DIC
global $DIC
Definition:
shib_login.php:26
components
ILIAS
Repository
Service
class.InternalGUIService.php
Generated on Sat Oct 18 2025 23:02:33 for ILIAS by
1.9.4 (using
Doxyfile
)