ILIAS
trunk Revision v11.0_alpha-1744-gb0451eebef4
◀ 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.InternalDomainService.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Taxonomy
;
22
23
use
ILIAS\DI\Container
;
24
use
ILIAS\Repository\GlobalDICDomainServices
;
25
use
ILIAS\Taxonomy\Settings\SettingsManager
;
26
use
ILIAS\Taxonomy\Usage\UsageManager
;
27
28
class
InternalDomainService
29
{
30
use
GlobalDICDomainServices
;
31
32
protected
InternalRepoService
$repo_service
;
33
protected
InternalDataService
$data_service
;
34
35
public
function
__construct
(
36
Container
$DIC
,
37
InternalRepoService
$repo_service,
38
InternalDataService
$data_service
39
) {
40
$this->repo_service =
$repo_service
;
41
$this->data_service =
$data_service
;
42
$this->
initDomainServices
($DIC);
43
}
44
45
public
function
settings
(
int
$rep_obj_id):
SettingsManager
46
{
47
return
new
SettingsManager
($rep_obj_id);
48
}
49
50
public
function
usage
():
UsageManager
51
{
52
return
new
UsageManager
(
53
$this->repo_service->usage()
54
);
55
}
56
}
ILIAS\Taxonomy\InternalDomainService\usage
usage()
Definition:
class.InternalDomainService.php:50
SettingsManager
UsageManager
ILIAS\Taxonomy
Definition:
class.DomainService.php:21
ILIAS\Repository\initDomainServices
initDomainServices(\ILIAS\DI\Container $DIC)
Definition:
trait.GlobalDICDomainServices.php:41
ILIAS\Taxonomy\InternalDomainService\$repo_service
InternalRepoService $repo_service
Definition:
class.InternalDomainService.php:32
ILIAS\DI\Container
Customizing of pimple-DIC for ILIAS.
Definition:
Container.php:35
Container
ILIAS\Skill\Usage\UsageManager
Definition:
UsageManager.php:23
ILIAS\Taxonomy\InternalDataService
Definition:
class.InternalDataService.php:23
$DIC
global $DIC
Definition:
shib_login.php:22
ILIAS\Taxonomy\InternalDomainService\settings
settings(int $rep_obj_id)
Definition:
class.InternalDomainService.php:45
ILIAS\Taxonomy\InternalDomainService\$data_service
InternalDataService $data_service
Definition:
class.InternalDomainService.php:33
ILIAS\Repository\GlobalDICDomainServices
trait GlobalDICDomainServices
Definition:
trait.GlobalDICDomainServices.php:38
GlobalDICDomainServices
ILIAS\Taxonomy\InternalRepoService
Definition:
class.InternalRepoService.php:26
ILIAS\Taxonomy\InternalDomainService
Definition:
class.InternalDomainService.php:28
ILIAS\Taxonomy\InternalDomainService\__construct
__construct(Container $DIC, InternalRepoService $repo_service, InternalDataService $data_service)
Definition:
class.InternalDomainService.php:35
ILIAS\Taxonomy\Settings\SettingsManager
Definition:
SettingsManager.php:23
components
ILIAS
Taxonomy
Service
class.InternalDomainService.php
Generated on Tue Apr 8 2025 23:02:35 for ILIAS by
1.8.13 (using
Doxyfile
)