ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
ValueToTaskContainer.php
Go to the documentation of this file.
1<?php
2
4
6{
7 public static function returnDbTableName()
8 {
9 return "il_bt_value_to_task";
10 }
11
12
23 protected $id;
31 protected $task_id;
39 protected $value_id;
47 protected $bucket_id;
55 protected $position;
56
57
61 public function getId()
62 {
63 return $this->id;
64 }
65
66
70 public function setId($id)
71 {
72 $this->id = $id;
73 }
74
75
79 public function getTaskId()
80 {
81 return $this->task_id;
82 }
83
84
88 public function setTaskId($task_id)
89 {
90 $this->task_id = $task_id;
91 }
92
93
97 public function getValueId()
98 {
99 return $this->value_id;
100 }
101
102
106 public function setValueId($value_id)
107 {
108 $this->value_id = $value_id;
109 }
110
111
115 public function getBucketId()
116 {
117 return $this->bucket_id;
118 }
119
120
124 public function setBucketId($bucket_id)
125 {
126 $this->bucket_id = $bucket_id;
127 }
128
132 public function getPosition()
133 {
134 return $this->position;
135 }
136
140 public function setPosition($position)
141 {
142 $this->position = $position;
143 }
144
145
146}
Class ActiveRecord.
An exception for terminatinating execution or to throw for unit testing.