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
BackgroundTaskServices.php
Go to the documentation of this file.
1
<?php
2
3
namespace
ILIAS\DI
;
4
5
use
ILIAS\BackgroundTasks\Persistence
;
6
use
ILIAS\BackgroundTasks\Task\TaskFactory
;
7
use
ILIAS\BackgroundTasks\TaskManager
;
8
11
class
BackgroundTaskServices
12
{
13
17
protected
$container
;
18
19
20
public
function
__construct
(
Container
$container
)
21
{
22
$this->container =
$container
;
23
}
24
25
29
public
function
taskFactory
()
30
{
31
return
$this->container[
'bt.task_factory'
];
32
}
33
34
38
public
function
persistence
()
39
{
40
return
$this->container[
'bt.persistence'
];
41
}
42
43
47
public
function
taskManager
()
48
{
49
return
$this->container[
'bt.task_manager'
];
50
}
51
52
56
public
function
injector
()
57
{
58
return
$this->container[
'bt.injector'
];
59
}
60
}
TaskManager
ILIAS\DI\Container
Customizing of pimple-DIC for ILIAS.
Definition:
Container.php:18
ILIAS\DI
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
BackgroundTaskServices.php:3
ILIAS\DI\BackgroundTaskServices\persistence
persistence()
Definition:
BackgroundTaskServices.php:38
ILIAS\DI\BackgroundTaskServices
Definition:
BackgroundTaskServices.php:11
ILIAS\DI\BackgroundTaskServices\taskManager
taskManager()
Definition:
BackgroundTaskServices.php:47
TaskFactory
ILIAS\DI\BackgroundTaskServices\taskFactory
taskFactory()
Definition:
BackgroundTaskServices.php:29
ILIAS\DI\BackgroundTaskServices\injector
injector()
Definition:
BackgroundTaskServices.php:56
Persistence
ILIAS\DI\BackgroundTaskServices\__construct
__construct(Container $container)
Definition:
BackgroundTaskServices.php:20
ILIAS\DI\BackgroundTaskServices\$container
$container
Definition:
BackgroundTaskServices.php:17
src
DI
BackgroundTaskServices.php
Generated on Fri Apr 11 2025 21:01:46 for ILIAS by
1.8.13 (using
Doxyfile
)