ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAssQuestionHint.php
Go to the documentation of this file.
1 <?php
27 {
28  public const PAGE_OBJECT_TYPE = 'qht';
29 
36  private $id = null;
37 
44  private $questionId = null;
45 
53  private $index = null;
54 
62  private $points = null;
63 
70  private $text = null;
71 
77  public function __construct()
78  {
79  }
80 
87  public function getId(): ?int
88  {
89  return $this->id;
90  }
91 
98  public function setId($id): void
99  {
100  $this->id = (int) $id;
101  }
102 
109  public function getQuestionId(): ?int
110  {
111  return $this->questionId;
112  }
113 
120  public function setQuestionId($questionId): void
121  {
122  $this->questionId = (int) $questionId;
123  }
124 
131  public function getIndex(): ?int
132  {
133  return $this->index;
134  }
135 
142  public function setIndex($index): void
143  {
144  $this->index = (int) $index;
145  }
146 
153  public function getPoints(): ?float
154  {
155  return $this->points;
156  }
157 
164  public function setPoints($points): void
165  {
166  $this->points = abs((float) $points);
167  }
168 
175  public function getText(): ?string
176  {
177  return $this->text;
178  }
179 
186  public function setText($text): void
187  {
188  if ($text !== null) {
189  $this->text = $this->getHtmlQuestionContentPurifier()->purify($text);
190  }
191  }
192 
202  public function load($id): bool
203  {
204  global $DIC;
205  $ilDB = $DIC['ilDB'];
206 
207  $query = "
208  SELECT qht_hint_id,
209  qht_question_fi,
210  qht_hint_index,
211  qht_hint_points,
212  qht_hint_text
213 
214  FROM qpl_hints
215 
216  WHERE qht_hint_id = %s
217  ";
218 
219  $res = $ilDB->queryF(
220  $query,
221  ['integer'],
222  [(int) $id]
223  );
224 
225  while ($row = $ilDB->fetchAssoc($res)) {
226  self::assignDbRow($this, $row);
227 
228  return true;
229  }
230 
231  return false;
232  }
233 
243  public function save(): bool
244  {
245  if ($this->getId()) {
246  return $this->update();
247  } else {
248  return $this->insert();
249  }
250  }
251 
260  private function update(): bool
261  {
262  global $DIC;
263  $ilDB = $DIC['ilDB'];
264 
265  return $ilDB->update(
266  'qpl_hints',
267  [
268  'qht_question_fi' => ['integer', $this->getQuestionId()],
269  'qht_hint_index' => ['integer', $this->getIndex()],
270  'qht_hint_points' => ['float', $this->getPoints()],
271  'qht_hint_text' => ['clob', $this->getText()]
272  ],
273  [
274  'qht_hint_id' => ['integer', $this->getId()]
275  ]
276  );
277  }
278 
287  private function insert(): bool
288  {
289  global $DIC;
290  $ilDB = $DIC['ilDB'];
291 
292  $this->setId($ilDB->nextId('qpl_hints'));
293 
294  return $ilDB->insert('qpl_hints', [
295  'qht_hint_id' => ['integer', $this->getId()],
296  'qht_question_fi' => ['integer', $this->getQuestionId()],
297  'qht_hint_index' => ['integer', $this->getIndex()],
298  'qht_hint_points' => ['float', $this->getPoints()],
299  'qht_hint_text' => ['clob', $this->getText()]
300  ]);
301  }
302 
309  public function delete(): int
310  {
311  return self::deleteById($this->getId());
312  }
313 
323  public static function assignDbRow(self $questionHint, $hintDbRow): void
324  {
325  foreach ($hintDbRow as $field => $value) {
326  switch ($field) {
327  case 'qht_hint_id': $questionHint->setId($value);
328  break;
329  case 'qht_question_fi': $questionHint->setQuestionId($value);
330  break;
331  case 'qht_hint_index': $questionHint->setIndex($value);
332  break;
333  case 'qht_hint_points': $questionHint->setPoints($value);
334  break;
335  case 'qht_hint_text': $questionHint->setText($value);
336  break;
337 
338  default: throw new ilTestQuestionPoolException("invalid db field identifier ($field) given!");
339  }
340  }
341  }
342 
353  public static function deleteById($hintId): int
354  {
355  global $DIC;
356  $ilDB = $DIC['ilDB'];
357 
358  $query = "
359  DELETE FROM qpl_hints
360  WHERE qht_hint_id = %s
361  ";
362 
363  return $ilDB->manipulateF(
364  $query,
365  ['integer'],
366  [$hintId]
367  );
368  }
369 
379  public static function getInstanceById($hintId): ilAssQuestionHint
380  {
381  $questionHint = new self();
382  $questionHint->load($hintId);
383  return $questionHint;
384  }
385 
386  public function getPageObjectType(): string
387  {
388  return self::PAGE_OBJECT_TYPE;
389  }
390 
391  public static function getHintIndexLabel(ilLanguage $lng, $hintIndex): string
392  {
393  return sprintf($lng->txt('tst_question_hints_index_column_label'), $hintIndex);
394  }
395 
397  {
398  return ilHtmlPurifierFactory::getInstanceByType('qpl_usersolution');
399  }
400 }
setId($id)
sets the passed hint id
setPoints($points)
sets the passed points to ground-off for this hint
$res
Definition: ltiservices.php:66
load($id)
loads the hint dataset with passed id from database and assigns it the to this hint object instance ...
static getInstanceById($hintId)
creates a hint object instance, loads the persisted hint dataset identified by passed hint id from da...
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
getIndex()
returns the ordering index of hint
static deleteById($hintId)
deletes the persisted hint object in database by deleting the hint dataset identified by hint id ...
update()
persists the current object state to database by updating an existing dataset identified by hint id ...
getQuestionId()
returns the question id the hint currently relates to
setIndex($index)
sets the passed hint ordering index
getId()
returns the hint id
insert()
persists the current object state to database by inserting a new dataset with a new hint id fetched f...
save()
saves the current hint object state to database.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static getHintIndexLabel(ilLanguage $lng, $hintIndex)
setQuestionId($questionId)
sets the passed question id so hint relates to it
global $DIC
Definition: shib_login.php:22
static getInstanceByType(string $type)
setText($text)
sets the passed hint text
static assignDbRow(self $questionHint, $hintDbRow)
assigns the field elements of passed hint db row array to the corresponding hint object properties of...
getPoints()
returns the points to ground-off for this hint
global $lng
Definition: privfeed.php:31
getText()
returns the hint text