ILIAS
trunk Revision v11.0_alpha-2645-g16283d3b3f8
◀ ilDoc Overview
class.InternalService.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Awareness
;
22
23
use
ILIAS\DI\Container
;
24
25
class
InternalService
26
{
27
protected
Container
$DIC
;
28
protected
array
$instance
= [];
29
30
public
function
__construct
(
Container
$DIC)
31
{
32
$this->
DIC
=
$DIC
;
33
}
34
35
public
function
data
():
InternalDataService
36
{
37
return
$this->instance[
"data"
] ??=
new
InternalDataService
();
38
}
39
40
public
function
repo
():
InternalRepoService
41
{
42
return
$this->instance[
"repo"
] ??=
new
InternalRepoService
(
43
$this->
data
(),
44
$this->
DIC
->database()
45
);
46
}
47
48
public
function
domain
():
InternalDomainService
49
{
50
return
$this->instance[
"domain"
] ??=
new
InternalDomainService
(
51
$this->
DIC
,
52
$this->
repo
(),
53
$this->
data
()
54
);
55
}
56
57
public
function
gui
():
InternalGUIService
58
{
59
return
$this->instance[
"gui"
] ??=
new
InternalGUIService
(
60
$this->
DIC
,
61
$this->
data
(),
62
$this->
domain
()
63
);
64
}
65
}
ILIAS\Awareness\InternalGUIService
Definition:
class.InternalGUIService.php:29
ILIAS\Awareness\InternalService\gui
gui()
Definition:
class.InternalService.php:57
ILIAS\Awareness\InternalRepoService
Notes internal repo service.
Definition:
class.InternalRepoService.php:27
ILIAS\Awareness\InternalDataService
Definition:
class.InternalDataService.php:26
ILIAS\Awareness
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.AdminManager.php:21
Container
ILIAS\Awareness\InternalService\data
data()
Definition:
class.InternalService.php:35
ILIAS\Awareness\InternalService\repo
repo()
Definition:
class.InternalService.php:40
ILIAS\Awareness\InternalService\$DIC
Container $DIC
Definition:
class.InternalService.php:27
ILIAS\Awareness\InternalService\domain
domain()
Definition:
class.InternalService.php:48
DIC
ILIAS\Container
Definition:
Container.php:23
ILIAS\Awareness\InternalDomainService
Definition:
class.InternalDomainService.php:29
ILIAS\Awareness\InternalService\$instance
array $instance
Definition:
class.InternalService.php:28
ILIAS\Awareness\InternalService\__construct
__construct(Container $DIC)
Definition:
class.InternalService.php:30
ILIAS\Awareness\InternalService
Definition:
class.InternalService.php:25
components
ILIAS
Awareness
Service
class.InternalService.php
Generated on Mon Sep 1 2025 23:02:22 for ILIAS by
1.8.13 (using
Doxyfile
)