ILIAS
trunk Revision v11.0_alpha-1715-g7fc467680fb
◀ 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\BookingManager
;
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\BookingManager\InternalService\gui
gui()
Definition:
class.InternalService.php:57
ILIAS\BookingManager\InternalGUIService
Definition:
class.InternalGUIService.php:29
ILIAS\BookingManager\InternalService\__construct
__construct(Container $DIC)
Definition:
class.InternalService.php:30
ILIAS\BookingManager\InternalService\data
data()
Definition:
class.InternalService.php:35
ILIAS\BookingManager
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Container
ILIAS\BookingManager\InternalDomainService
Author: Alexander Killing killing@leifos.de
Definition:
class.InternalDomainService.php:34
ILIAS\BookingManager\InternalRepoService
Definition:
class.InternalRepoService.php:32
ILIAS\BookingManager\InternalService\$instance
array $instance
Definition:
class.InternalService.php:28
ILIAS\BookingManager\InternalService\repo
repo()
Definition:
class.InternalService.php:40
ILIAS\BookingManager\InternalDataService
Repository internal data service.
Definition:
class.InternalDataService.php:32
DIC
ILIAS\BookingManager\InternalService\$DIC
Container $DIC
Definition:
class.InternalService.php:27
ILIAS\BookingManager\InternalService\domain
domain()
Definition:
class.InternalService.php:48
ILIAS\BookingManager\InternalService
Definition:
class.InternalService.php:25
ILIAS\Container
Definition:
Container.php:23
components
ILIAS
BookingManager
Service
class.InternalService.php
Generated on Sat Apr 5 2025 23:02:32 for ILIAS by
1.8.13 (using
Doxyfile
)