ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.InternalService.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Blog
;
22
23
use
ILIAS\DI\Container
;
24
28
class
InternalService
29
{
30
protected
Container
$DIC
;
31
protected
array
$instance
= [];
32
33
public
function
__construct
(
Container
$DIC)
34
{
35
$this->
DIC
=
$DIC
;
36
}
37
38
public
function
data
():
InternalDataService
39
{
40
return
$this->instance[
"data"
] ??
41
$this->instance[
"data"
] =
new
InternalDataService
();
42
}
43
44
public
function
repo
():
InternalRepoService
45
{
46
return
$this->instance[
"repo"
] ??
47
$this->instance[
"repo"
] =
new
InternalRepoService
(
48
$this->
data
(),
49
$this->
DIC
->database()
50
);
51
}
52
53
public
function
domain
():
InternalDomainService
54
{
55
return
$this->instance[
"domain"
] ??
56
$this->instance[
"domain"
] =
new
InternalDomainService
(
57
$this->
DIC
,
58
$this->
repo
(),
59
$this->
data
()
60
);
61
}
62
63
public
function
gui
():
InternalGUIService
64
{
65
return
$this->instance[
"gui"
] ??
66
$this->instance[
"gui"
] =
new
InternalGUIService
(
67
$this->
DIC
,
68
$this->
data
(),
69
$this->
domain
()
70
);
71
}
72
}
ILIAS\Blog\InternalService\data
data()
Definition:
class.InternalService.php:38
ILIAS\Notes\InternalService\domain
domain()
Definition:
class.InternalService.php:66
ILIAS\Blog\InternalService\$instance
array $instance
Definition:
class.InternalService.php:31
ILIAS\Blog\InternalDomainService
Definition:
class.InternalDomainService.php:34
ILIAS\Blog\InternalService\__construct
__construct(Container $DIC)
Definition:
class.InternalService.php:33
Container
ILIAS\Blog\InternalService\domain
domain()
Definition:
class.InternalService.php:53
ILIAS\Blog\InternalService\$DIC
Container $DIC
Definition:
class.InternalService.php:30
$DIC
global $DIC
Definition:
shib_login.php:22
ILIAS\Blog\InternalDataService
Definition:
class.InternalDataService.php:26
ILIAS\Blog\InternalService\repo
repo()
Definition:
class.InternalService.php:44
ILIAS\Notes\InternalService\repo
repo()
Definition:
class.InternalService.php:61
ILIAS\Blog
DIC
ILIAS\Blog\InternalRepoService
Definition:
class.InternalRepoService.php:25
ILIAS\Blog\InternalGUIService
Definition:
class.InternalGUIService.php:28
ILIAS\Blog\InternalService
Definition:
class.InternalService.php:28
ILIAS\Notes\InternalService\data
data()
Definition:
class.InternalService.php:56
ILIAS\Container
Definition:
Container.php:23
ILIAS\Blog\InternalService\gui
gui()
Definition:
class.InternalService.php:63
components
ILIAS
Blog
Service
class.InternalService.php
Generated on Thu Apr 3 2025 23:02:17 for ILIAS by
1.8.13 (using
Doxyfile
)