ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
TaskContainer.php
Go to the documentation of this file.
1 <?php
2 
4 
6 {
7  public static function returnDbTableName()
8  {
9  return "il_bt_task";
10  }
11 
12 
23  protected $id = 0;
31  protected $type;
39  protected $class_path;
47  protected $class_name;
55  protected $bucket_id;
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 getType()
80  {
81  return $this->type;
82  }
83 
84 
88  public function setType($type)
89  {
90  $this->type = $type;
91  }
92 
93 
97  public function getClassPath()
98  {
99  return $this->class_path;
100  }
101 
102 
106  public function setClassPath($class_path)
107  {
108  $this->class_path = $class_path;
109  }
110 
111 
115  public function getClassName()
116  {
117  return $this->class_name;
118  }
119 
120 
124  public function setClassName($class_name)
125  {
126  $this->class_name = $class_name;
127  }
128 
129 
133  public function getBucketId()
134  {
135  return $this->bucket_id;
136  }
137 
138 
142  public function setBucketId($bucket_id)
143  {
144  $this->bucket_id = $bucket_id;
145  }
146 }
Class ActiveRecord.