ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ 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
AbstractValue.php
Go to the documentation of this file.
1
<?php
2
19
namespace
ILIAS\BackgroundTasks\Implementation\Values
;
20
21
use
ILIAS\BackgroundTasks\Task
;
22
use
ILIAS\BackgroundTasks\Types\SingleType
;
23
use
ILIAS\BackgroundTasks\Types\Type
;
24
use
ILIAS\BackgroundTasks\Value
;
25
31
abstract
class
AbstractValue
implements
Value
32
{
33
protected
Task
$parentTask
;
34
35
public
function
getType
():
Type
36
{
37
return
new
SingleType
(static::class);
38
}
39
40
public
function
getParentTask
():
Task
41
{
42
return
$this->parentTask
;
43
}
44
45
public
function
setParentTask
(
Task
$parentTask): void
46
{
47
$this->parentTask =
$parentTask
;
48
}
49
50
public
function
hasParentTask
(): bool
51
{
52
return
isset($this->parentTask);
53
}
54
55
public
function
__serialize
(): array
56
{
57
return
[
'data'
=> $this->serialize()];
58
}
59
60
public
function
__unserialize
(array
$data
): void
61
{
62
$this->unserialize($data[
'data'
]);
63
}
64
}
SingleType
$data
$data
Definition:
ltiregistration.php:29
ILIAS\BackgroundTasks\Implementation\Values\AbstractValue
Definition:
AbstractValue.php:31
ILIAS\BackgroundTasks\Value
Definition:
Value.php:29
ILIAS\BackgroundTasks\Implementation\Values\AbstractValue\getType
getType()
Definition:
AbstractValue.php:35
ILIAS\BackgroundTasks\Types\Type
Definition:
Type.php:21
ILIAS\BackgroundTasks\Task
Definition:
Task.php:35
ILIAS\BackgroundTasks\Implementation\Values\AbstractValue\__serialize
__serialize()
Definition:
AbstractValue.php:55
ILIAS\BackgroundTasks\Types\SingleType
Definition:
SingleType.php:21
ILIAS\BackgroundTasks\Implementation\Values\AbstractValue\$parentTask
Task $parentTask
Definition:
AbstractValue.php:33
ILIAS\BackgroundTasks\Implementation\Values\AbstractValue\getParentTask
getParentTask()
Definition:
AbstractValue.php:40
ILIAS\AdvancedMetaData\Data\FieldDefinition\Type
Type
Definition:
Type.php:23
ILIAS\BackgroundTasks\Implementation\Values\AbstractValue\hasParentTask
hasParentTask()
Definition:
AbstractValue.php:50
ILIAS\BackgroundTasks\Task
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
Job.php:19
ILIAS\BackgroundTasks\Implementation\Values
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
AbstractValue.php:19
ILIAS\BackgroundTasks\Implementation\Values\AbstractValue\__unserialize
__unserialize(array $data)
Definition:
AbstractValue.php:60
ILIAS\BackgroundTasks\Implementation\Values\AbstractValue\setParentTask
setParentTask(Task $parentTask)
Definition:
AbstractValue.php:45
Value
components
ILIAS
BackgroundTasks
src
Implementation
Values
AbstractValue.php
Generated on Wed Apr 2 2025 23:02:15 for ILIAS by
1.8.13 (using
Doxyfile
)