ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
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;
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 
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 
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 }
Class ActiveRecord.
hash(StreamInterface $stream, $algo, $rawOutput=false)
Calculate a hash of a Stream.
Definition: functions.php:406