ILIAS
release_8 Revision v8.23
◀ ilDoc Overview
class.InternalService.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
21
namespace
ILIAS\Portfolio
;
22
23
use
ILIAS\DI\Container
;
24
28
class
InternalService
29
{
30
protected
InternalDataService
$data
;
31
protected
InternalRepoService
$repo
;
32
protected
InternalDomainService
$domain
;
33
protected
InternalGUIService
$gui
;
34
35
public
function
__construct
(
Container
$DIC
)
36
{
37
$this->
data
=
new
InternalDataService
();
38
39
$this->
repo
=
new
InternalRepoService
(
40
$this->
data
(),
41
$DIC->
database
()
42
);
43
$this->
domain
=
new
InternalDomainService
(
44
$DIC,
45
$this->
repo
,
46
$this->
data
47
);
48
$this->
gui
=
new
InternalGUIService
(
49
$DIC,
50
$this->
data
,
51
$this->domain
52
);
53
}
54
55
public
function
data
():
InternalDataService
56
{
57
return
$this->data
;
58
}
59
60
public
function
repo
():
InternalRepoService
61
{
62
return
$this->repo
;
63
}
64
65
public
function
domain
():
InternalDomainService
66
{
67
return
$this->domain
;
68
}
69
70
public
function
gui
():
InternalGUIService
71
{
72
return
$this->gui
;
73
}
74
}
ILIAS\Portfolio\InternalDomainService
Definition:
class.InternalDomainService.php:30
ILIAS\DI\Container\database
database()
Get interface to the Database.
Definition:
Container.php:38
ILIAS\Portfolio\InternalService\domain
domain()
Definition:
class.InternalService.php:65
ILIAS\Portfolio\InternalService\__construct
__construct(Container $DIC)
Definition:
class.InternalService.php:35
ILIAS\Portfolio\InternalService\data
data()
Definition:
class.InternalService.php:55
ILIAS\Portfolio
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS\DI\Container
Customizing of pimple-DIC for ILIAS.
Definition:
Container.php:31
ILIAS\Portfolio\InternalService\$repo
InternalRepoService $repo
Definition:
class.InternalService.php:31
$DIC
global $DIC
Definition:
feed.php:28
Container
ILIAS\Portfolio\InternalService
Definition:
class.InternalService.php:28
ILIAS\Portfolio\InternalService\$domain
InternalDomainService $domain
Definition:
class.InternalService.php:32
ILIAS\Portfolio\InternalService\repo
repo()
Definition:
class.InternalService.php:60
ILIAS\Portfolio\InternalDataService
Definition:
class.InternalDataService.php:26
ILIAS\Portfolio\InternalService\$data
InternalDataService $data
Definition:
class.InternalService.php:30
ILIAS\Portfolio\InternalRepoService
Definition:
class.InternalRepoService.php:28
ILIAS\Portfolio\InternalGUIService
Definition:
class.InternalGUIService.php:29
ILIAS\Portfolio\InternalService\gui
gui()
Definition:
class.InternalService.php:70
ILIAS\Portfolio\InternalService\$gui
InternalGUIService $gui
Definition:
class.InternalService.php:33
Modules
Portfolio
Service
class.InternalService.php
Generated on Sun Aug 31 2025 22:01:17 for ILIAS by
1.8.13 (using
Doxyfile
)