ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
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 {
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 {
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...
int $has_parent_task
@con_has_field true @con_fieldtype integer @con_length 1
string $hash
@con_has_field true @con_fieldtype text @con_length 256
string $type
@con_has_field true @con_fieldtype text @con_length 256
int $position
@con_has_field true @con_fieldtype integer @con_length 8
string $class_path
@con_has_field true @con_fieldtype text @con_length 256
int $parent_task_id
@con_has_field true @con_fieldtype integer @con_length 8
int $bucket_id
@con_has_field true @con_fieldtype integer @con_length 8
string $class_name
@con_has_field true @con_fieldtype text @con_length 256
string $serialized
@con_has_field true @con_fieldtype clob
int $id
@con_is_primary true @con_is_unique true @con_has_field true @con_sequence true @con_fieldtype intege...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...