ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
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...
Class ActiveRecord.