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\Export
;
22
27
class
InternalService
28
{
29
protected
InternalDataService
$data
;
30
protected
InternalGUIService
$gui
;
31
protected
InternalDomainService
$domain
;
32
protected
InternalRepoService
$repo
;
33
34
public
function
__construct
()
35
{
36
global
$DIC
;
37
38
$this->
data
=
new
InternalDataService
();
39
$this->
repo
=
new
InternalRepoService
(
40
$this->
data
(),
41
$DIC->database()
42
);
43
$this->
domain
=
new
InternalDomainService
(
44
$this->
repo
,
45
$this->
data
46
);
47
$this->
gui
=
new
InternalGUIService
(
48
$this->domain
49
);
50
}
51
52
public
function
gui
():
InternalGUIService
53
{
54
return
$this->gui
;
55
}
56
57
public
function
repo
():
InternalRepoService
58
{
59
return
$this->repo
;
60
}
61
62
public
function
data
():
InternalDataService
63
{
64
return
$this->data
;
65
}
66
67
public
function
domain
():
InternalDomainService
68
{
69
return
$this->domain
;
70
}
71
}
ILIAS\Export\InternalService\data
data()
Definition:
class.InternalService.php:62
ILIAS\Export\InternalRepoService
Definition:
class.InternalRepoService.php:25
ILIAS\Export\InternalService\$repo
InternalRepoService $repo
Definition:
class.InternalService.php:32
ILIAS\Export
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS\Export\InternalService\__construct
__construct()
Definition:
class.InternalService.php:34
ILIAS\Export\InternalService\gui
gui()
Definition:
class.InternalService.php:52
ILIAS\Export\InternalDomainService
Definition:
class.InternalDomainService.php:25
ILIAS\Export\InternalDataService
Definition:
class.InternalDataService.php:25
ILIAS\Export\InternalService\$domain
InternalDomainService $domain
Definition:
class.InternalService.php:31
ILIAS\Export\InternalService
Export internal service.
Definition:
class.InternalService.php:27
ILIAS\Export\InternalService\domain
domain()
Definition:
class.InternalService.php:67
ILIAS\Export\InternalService\$data
InternalDataService $data
Definition:
class.InternalService.php:29
$DIC
global $DIC
Definition:
shib_login.php:26
ILIAS\Export\InternalService\$gui
InternalGUIService $gui
Definition:
class.InternalService.php:30
ILIAS\Export\InternalGUIService
Export internal ui service.
Definition:
class.InternalGUIService.php:30
ILIAS\Export\InternalService\repo
repo()
Definition:
class.InternalService.php:57
components
ILIAS
Export
Service
class.InternalService.php
Generated on Sun Aug 31 2025 23:02:15 for ILIAS by
1.8.13 (using
Doxyfile
)