ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ValueContainer.php
Go to the documentation of this file.
1 <?php
2 
20 
22 {
23  public static function returnDbTableName(): string
24  {
25  return "il_bt_value";
26  }
27 
36  protected ?int $id = null;
42  protected ?int $has_parent_task = null;
48  protected ?int $parent_task_id = null;
54  protected ?string $hash = null;
60  protected ?string $type = null;
66  protected ?string $class_path = null;
72  protected ?string $class_name = null;
77  protected ?string $serialized = null;
83  protected ?int $bucket_id = null;
89  protected ?int $position = null;
90 
91  public function getId(): int
92  {
93  return $this->id;
94  }
95 
96  public function setId(int $id): void
97  {
98  $this->id = $id;
99  }
100 
101  public function getHasParenttask(): int
102  {
103  return $this->has_parent_task;
104  }
105 
106  public function setHasParenttask(int $has_parent_task): void
107  {
108  $this->has_parent_task = $has_parent_task;
109  }
110 
111  public function getParentTaskid(): int
112  {
113  return $this->parent_task_id;
114  }
115 
116  public function setParentTaskid(int $parent_task_id): void
117  {
118  $this->parent_task_id = $parent_task_id;
119  }
120 
124  public function getHash(): string
125  {
126  return $this->hash;
127  }
128 
132  public function setHash(?string $hash): void
133  {
134  $this->hash = $hash;
135  }
136 
137  public function getType(): string
138  {
139  return $this->type;
140  }
141 
142  public function setType(string $type): void
143  {
144  $this->type = $type;
145  }
146 
147  public function getClassPath(): string
148  {
149  return $this->class_path;
150  }
151 
152  public function setClassPath(string $class_path): void
153  {
154  $this->class_path = $class_path;
155  }
156 
157  public function getClassName(): string
158  {
159  return $this->class_name;
160  }
161 
162  public function setClassName(string $class_name): void
163  {
164  $this->class_name = $class_name;
165  }
166 
170  public function getSerialized(): string
171  {
172  return $this->serialized;
173  }
174 
178  public function setSerialized(?string $serialized): void
179  {
180  $this->serialized = $serialized;
181  }
182 
183  public function getBucketId(): int
184  {
185  return $this->bucket_id;
186  }
187 
188  public function setBucketId(int $bucket_id): void
189  {
190  $this->bucket_id = $bucket_id;
191  }
192 
193  public function getPosition(): int
194  {
195  return $this->position;
196  }
197 
198  public function setPosition(int $position): void
199  {
200  $this->position = $position;
201  }
202 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ActiveRecord.