ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
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 Mon Sep 1 2025 21:01:46 for ILIAS by
1.8.13 (using
Doxyfile
)