ILIAS  release_8 Revision v8.24
class.ilTestSkillLevelThresholdImport.php
Go to the documentation of this file.
1<?php
2
26{
30 protected $importSkillBaseId = null;
34 protected $importSkillTrefId = null;
35
39 protected $importLevelId = null;
43 protected $orderIndex = null;
44
45 protected ?int $threshold = null;
46
50 protected $originalLevelTitle = null;
54 protected $originalLevelDescription = null;
55
59 public function getImportSkillBaseId(): ?int
60 {
62 }
63
68 {
69 $this->importSkillBaseId = $importSkillBaseId;
70 }
71
75 public function getImportSkillTrefId(): ?int
76 {
78 }
79
84 {
85 $this->importSkillTrefId = $importSkillTrefId;
86 }
87
91 public function getImportLevelId(): ?int
92 {
94 }
95
100 {
101 $this->importLevelId = $importLevelId;
102 }
103
107 public function getOrderIndex(): ?int
108 {
109 return $this->orderIndex;
110 }
111
115 public function setOrderIndex($orderIndex)
116 {
117 $this->orderIndex = $orderIndex;
118 }
119
123 public function getThreshold(): ?int
124 {
125 return $this->threshold;
126 }
127
131 public function setThreshold($threshold)
132 {
133 $this->threshold = (int) $threshold;
134 }
135
139 public function getOriginalLevelTitle(): ?string
140 {
142 }
143
148 {
149 $this->originalLevelTitle = $originalLevelTitle;
150 }
151
155 public function getOriginalLevelDescription(): ?string
156 {
158 }
159
164 {
165 $this->originalLevelDescription = $originalLevelDescription;
166 }
167}