ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ValueToTaskContainer.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_to_task";
26 }
27
36 protected ?int $id = null;
42 protected ?int $task_id = null;
48 protected ?int $value_id = null;
54 protected ?int $bucket_id = null;
60 protected ?int $position = null;
61
62 public function getId(): int
63 {
64 return $this->id;
65 }
66
67 public function setId(int $id): void
68 {
69 $this->id = $id;
70 }
71
72 public function getTaskId(): int
73 {
74 return $this->task_id;
75 }
76
77 public function setTaskId(int $task_id): void
78 {
79 $this->task_id = $task_id;
80 }
81
82 public function getValueId(): int
83 {
84 return $this->value_id;
85 }
86
87 public function setValueId(int $value_id): void
88 {
89 $this->value_id = $value_id;
90 }
91
92 public function getBucketId(): int
93 {
94 return $this->bucket_id;
95 }
96
97 public function setBucketId(int $bucket_id): void
98 {
99 $this->bucket_id = $bucket_id;
100 }
101
102 public function getPosition(): int
103 {
104 return $this->position;
105 }
106
107 public function setPosition(int $position): void
108 {
109 $this->position = $position;
110 }
111}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
int $bucket_id
@con_fieldtype integer @con_has_field true @con_length 8
int $id
@con_is_primary true @con_is_unique true @con_has_field true @con_sequence true @con_fieldtype intege...
int $task_id
@con_fieldtype integer @con_has_field true @con_length 8
int $position
@con_fieldtype integer @con_has_field true @con_length 8
int $value_id
@con_fieldtype integer @con_has_field true @con_length 8
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...