ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
+
Files
File List
+
Globals
+
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
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
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
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
ToolServices.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
22
namespace
ILIAS\GlobalScreen\Scope\Tool
;
23
24
use
ILIAS\GlobalScreen\Scope\Tool\Factory\ToolFactory
;
25
use
ILIAS\GlobalScreen\ScreenContext\ContextServices
;
26
use
ILIAS\GlobalScreen\SingletonTrait
;
27
32
class
ToolServices
33
{
37
private
$tool_factory
;
41
private
$context_services
;
42
43
public
function
__construct
()
44
{
45
$this->tool_factory =
new
ToolFactory
();
46
$this->context_services =
new
ContextServices
();
47
}
48
49
53
public
function
factory
() :
ToolFactory
54
{
55
return
$this->tool_factory
;
56
}
57
61
public
function
context
() :
ContextServices
62
{
63
return
$this->context_services
;
64
}
65
}
ILIAS\GlobalScreen\Scope\Tool\ToolServices\$tool_factory
$tool_factory
Definition:
ToolServices.php:37
ILIAS\GlobalScreen\ScreenContext\ContextServices
Class ContextServices.
Definition:
ContextServices.php:29
ILIAS\GlobalScreen\Scope\Tool\ToolServices\__construct
__construct()
Definition:
ToolServices.php:43
ILIAS\GlobalScreen\Scope\Tool\ToolServices\factory
factory()
Definition:
ToolServices.php:53
ILIAS\GlobalScreen\Scope\Tool\ToolServices
Class ToolServices.
Definition:
ToolServices.php:32
ILIAS\GlobalScreen\Scope\Tool\ToolServices\$context_services
$context_services
Definition:
ToolServices.php:41
ILIAS\GlobalScreen\Scope\Tool\Factory\ToolFactory
Class ToolFactory This factory provides you all available types for MainMenu GlobalScreen Tools...
Definition:
ToolFactory.php:29
ILIAS\GlobalScreen\Scope\Tool
PhpIncompatibleReturnTypeInspection
ILIAS\GlobalScreen\Scope\Tool\ToolServices\context
context()
Definition:
ToolServices.php:61
ILIAS\GlobalScreen\SingletonTrait
trait SingletonTrait
Class SingletonTrait.
Definition:
SingletonTrait.php:29
ContextServices
ToolFactory
src
GlobalScreen
Scope
Tool
ToolServices.php
Generated on Sat Apr 5 2025 21:01:45 for ILIAS by
1.8.13 (using
Doxyfile
)