ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
class.InternalService.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\RootFolder
;
22
23
use
ILIAS\DI
;
24
29
class
InternalService
30
{
31
protected
InternalDataService
$data
;
32
protected
InternalRepoService
$repo
;
33
protected
InternalDomainService
$domain
;
34
protected
InternalGUIService
$gui
;
35
36
public
function
__construct
(
DI
\
Container
$DIC
)
37
{
38
$this->
data
=
new
InternalDataService
();
39
40
$this->
repo
=
new
InternalRepoService
(
41
$this->
data
(),
42
$DIC->database()
43
);
44
$this->
domain
=
new
InternalDomainService
(
45
$DIC,
46
$this->
repo
,
47
$this->
data
48
);
49
$this->
gui
=
new
InternalGUIService
(
50
$DIC,
51
$this->
data
,
52
$this->domain
53
);
54
}
55
56
public
function
data
():
InternalDataService
57
{
58
return
$this->data
;
59
}
60
61
public
function
repo
():
InternalRepoService
62
{
63
return
$this->repo
;
64
}
65
66
public
function
domain
():
InternalDomainService
67
{
68
return
$this->domain
;
69
}
70
71
public
function
gui
():
InternalGUIService
72
{
73
return
$this->gui
;
74
}
75
}
ILIAS\RootFolder\InternalService\repo
repo()
Definition:
class.InternalService.php:61
ILIAS\RootFolder\InternalService\$gui
InternalGUIService $gui
Definition:
class.InternalService.php:34
ILIAS\RootFolder\InternalService\domain
domain()
Definition:
class.InternalService.php:66
ILIAS\RootFolder\InternalService
Repository internal service.
Definition:
class.InternalService.php:29
ILIAS\RootFolder\InternalDataService
Repository internal data service.
Definition:
class.InternalDataService.php:27
ILIAS\DI
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
Container.php:19
ILIAS\RootFolder\InternalRepoService
Repository internal repo service.
Definition:
class.InternalRepoService.php:27
ILIAS\RootFolder\InternalService\data
data()
Definition:
class.InternalService.php:56
DI
Class HTTPServicesTest.
$DIC
global $DIC
Definition:
shib_login.php:26
ILIAS\RootFolder\InternalService\__construct
__construct(DI\Container $DIC)
Definition:
class.InternalService.php:36
ILIAS\RootFolder\InternalService\$domain
InternalDomainService $domain
Definition:
class.InternalService.php:33
ILIAS\RootFolder
Definition:
class.StandardGUIRequest.php:21
ILIAS\RootFolder\InternalGUIService
Definition:
class.InternalGUIService.php:29
ILIAS\RootFolder\InternalService\gui
gui()
Definition:
class.InternalService.php:71
ILIAS\RootFolder\InternalService\$data
InternalDataService $data
Definition:
class.InternalService.php:31
ILIAS\RootFolder\InternalService\$repo
InternalRepoService $repo
Definition:
class.InternalService.php:32
ILIAS\Container
Definition:
Container.php:23
ILIAS\RootFolder\InternalDomainService
Definition:
class.InternalDomainService.php:29
components
ILIAS
RootFolder
Service
class.InternalService.php
Generated on Sun Aug 31 2025 23:02:15 for ILIAS by
1.8.13 (using
Doxyfile
)