ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
◀ ilDoc Overview
ValueContainer.php
Go to the documentation of this file.
1
<?php
2
3
namespace
ILIAS\BackgroundTasks\Implementation\Persistence
;
4
5
class
ValueContainer
extends
\ActiveRecord
6
{
7
public
static
function
returnDbTableName
()
8
{
9
return
"il_bt_value"
;
10
}
11
12
23
protected
$id
;
31
protected
$has_parent_task
;
39
protected
$parent_task_id
;
47
protected
$hash
;
55
protected
$type
;
63
protected
$class_path
;
71
protected
$class_name
;
78
protected
$serialized
;
86
protected
$bucket_id
;
87
88
92
public
function
getId
()
93
{
94
return
$this->id
;
95
}
96
97
101
public
function
setId
(
$id
)
102
{
103
$this->
id
=
$id
;
104
}
105
106
110
public
function
getHasParenttask
()
111
{
112
return
$this->has_parent_task
;
113
}
114
115
119
public
function
setHasParenttask
(
$has_parent_task
)
120
{
121
$this->has_parent_task =
$has_parent_task
;
122
}
123
124
128
public
function
getParentTaskid
()
129
{
130
return
$this->parent_task_id
;
131
}
132
133
137
public
function
setParentTaskid
(
$parent_task_id
)
138
{
139
$this->parent_task_id =
$parent_task_id
;
140
}
141
142
146
public
function
getHash
()
147
{
148
return
$this->hash
;
149
}
150
151
155
public
function
setHash
(
$hash
)
156
{
157
$this->
hash
=
$hash
;
158
}
159
160
164
public
function
getType
()
165
{
166
return
$this->type
;
167
}
168
169
173
public
function
setType
(
$type
)
174
{
175
$this->type =
$type
;
176
}
177
178
182
public
function
getClassPath
()
183
{
184
return
$this->class_path
;
185
}
186
187
191
public
function
setClassPath
(
$class_path
)
192
{
193
$this->class_path =
$class_path
;
194
}
195
196
200
public
function
getClassName
()
201
{
202
return
$this->class_name
;
203
}
204
205
209
public
function
setClassName
(
$class_name
)
210
{
211
$this->class_name =
$class_name
;
212
}
213
214
218
public
function
getSerialized
()
219
{
220
return
$this->serialized
;
221
}
222
223
227
public
function
setSerialized
(
$serialized
)
228
{
229
$this->serialized =
$serialized
;
230
}
231
232
236
public
function
getBucketId
()
237
{
238
return
$this->bucket_id
;
239
}
240
241
245
public
function
setBucketId
(
$bucket_id
)
246
{
247
$this->bucket_id =
$bucket_id
;
248
}
249
}
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\getHash
getHash()
Definition:
ValueContainer.php:146
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer
Definition:
ValueContainer.php:5
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\setClassPath
setClassPath($class_path)
Definition:
ValueContainer.php:191
ILIAS\BackgroundTasks\Implementation\Persistence
Definition:
BasicPersistence.php:3
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\setSerialized
setSerialized($serialized)
Definition:
ValueContainer.php:227
ActiveRecord
Class ActiveRecord.
Definition:
class.ActiveRecord.php:24
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\getSerialized
getSerialized()
Definition:
ValueContainer.php:218
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\getBucketId
getBucketId()
Definition:
ValueContainer.php:236
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\$class_name
$class_name
Definition:
ValueContainer.php:71
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\getClassName
getClassName()
Definition:
ValueContainer.php:200
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\setBucketId
setBucketId($bucket_id)
Definition:
ValueContainer.php:245
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\setClassName
setClassName($class_name)
Definition:
ValueContainer.php:209
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\returnDbTableName
static returnDbTableName()
Definition:
ValueContainer.php:7
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\setHasParenttask
setHasParenttask($has_parent_task)
Definition:
ValueContainer.php:119
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\$class_path
$class_path
Definition:
ValueContainer.php:63
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\getClassPath
getClassPath()
Definition:
ValueContainer.php:182
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\getId
getId()
Definition:
ValueContainer.php:92
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\$id
$id
Definition:
ValueContainer.php:23
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\getType
getType()
Definition:
ValueContainer.php:164
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\setParentTaskid
setParentTaskid($parent_task_id)
Definition:
ValueContainer.php:137
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\getParentTaskid
getParentTaskid()
Definition:
ValueContainer.php:128
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\setId
setId($id)
Definition:
ValueContainer.php:101
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\$type
$type
Definition:
ValueContainer.php:55
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\$bucket_id
$bucket_id
Definition:
ValueContainer.php:86
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\$serialized
$serialized
Definition:
ValueContainer.php:78
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\getHasParenttask
getHasParenttask()
Definition:
ValueContainer.php:110
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\$parent_task_id
$parent_task_id
Definition:
ValueContainer.php:39
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\$has_parent_task
$has_parent_task
Definition:
ValueContainer.php:31
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\setType
setType($type)
Definition:
ValueContainer.php:173
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\$hash
$hash
Definition:
ValueContainer.php:47
ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\setHash
setHash($hash)
Definition:
ValueContainer.php:155
GuzzleHttp\Psr7\hash
hash(StreamInterface $stream, $algo, $rawOutput=false)
Calculate a hash of a Stream.
Definition:
functions.php:406
src
BackgroundTasks
Implementation
Persistence
ValueContainer.php
Generated on Sat Jan 18 2025 19:01:42 for ILIAS by
1.8.13 (using
Doxyfile
)