ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
ValueContainer.php
Go to the documentation of this file.
1 <?php
2 
4 
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;
94  protected $position;
95 
96 
100  public function getId()
101  {
102  return $this->id;
103  }
104 
105 
109  public function setId($id)
110  {
111  $this->id = $id;
112  }
113 
114 
118  public function getHasParenttask()
119  {
120  return $this->has_parent_task;
121  }
122 
123 
128  {
129  $this->has_parent_task = $has_parent_task;
130  }
131 
132 
136  public function getParentTaskid()
137  {
138  return $this->parent_task_id;
139  }
140 
141 
146  {
147  $this->parent_task_id = $parent_task_id;
148  }
149 
150 
154  public function getHash()
155  {
156  return $this->hash;
157  }
158 
159 
163  public function setHash($hash)
164  {
165  $this->hash = $hash;
166  }
167 
168 
172  public function getType()
173  {
174  return $this->type;
175  }
176 
177 
181  public function setType($type)
182  {
183  $this->type = $type;
184  }
185 
186 
190  public function getClassPath()
191  {
192  return $this->class_path;
193  }
194 
195 
199  public function setClassPath($class_path)
200  {
201  $this->class_path = $class_path;
202  }
203 
204 
208  public function getClassName()
209  {
210  return $this->class_name;
211  }
212 
213 
217  public function setClassName($class_name)
218  {
219  $this->class_name = $class_name;
220  }
221 
222 
226  public function getSerialized()
227  {
228  return $this->serialized;
229  }
230 
231 
235  public function setSerialized($serialized)
236  {
237  $this->serialized = $serialized;
238  }
239 
240 
244  public function getBucketId()
245  {
246  return $this->bucket_id;
247  }
248 
249 
253  public function setBucketId($bucket_id)
254  {
255  $this->bucket_id = $bucket_id;
256  }
257 
261  public function getPosition()
262  {
263  return $this->position;
264  }
265 
269  public function setPosition($position)
270  {
271  $this->position = $position;
272  }
273 
274 }
Class ActiveRecord.
hash(StreamInterface $stream, $algo, $rawOutput=false)
Calculate a hash of a Stream.
Definition: functions.php:406