166 $this->points = abs((
float)
$points);
205 $ilDB = $DIC[
'ilDB'];
216 WHERE qht_hint_id = %s 226 self::assignDbRow($this, $row);
245 if ($this->
getId()) {
263 $ilDB = $DIC[
'ilDB'];
265 return $ilDB->update(
269 'qht_hint_index' => [
'integer', $this->
getIndex()],
270 'qht_hint_points' => [
'float', $this->
getPoints()],
271 'qht_hint_text' => [
'clob', $this->
getText()]
274 'qht_hint_id' => [
'integer', $this->
getId()]
290 $ilDB = $DIC[
'ilDB'];
294 return $ilDB->insert(
'qpl_hints', [
295 'qht_hint_id' => [
'integer', $this->
getId()],
297 'qht_hint_index' => [
'integer', $this->
getIndex()],
298 'qht_hint_points' => [
'float', $this->
getPoints()],
299 'qht_hint_text' => [
'clob', $this->
getText()]
309 public function delete():
int 311 return self::deleteById($this->
getId());
323 public static function assignDbRow(
self $questionHint, $hintDbRow): void
325 foreach ($hintDbRow as $field => $value) {
327 case 'qht_hint_id': $questionHint->setId($value);
329 case 'qht_question_fi': $questionHint->setQuestionId($value);
331 case 'qht_hint_index': $questionHint->setIndex($value);
333 case 'qht_hint_points': $questionHint->setPoints($value);
335 case 'qht_hint_text': $questionHint->setText($value);
356 $ilDB = $DIC[
'ilDB'];
359 DELETE FROM qpl_hints 360 WHERE qht_hint_id = %s 363 return $ilDB->manipulateF(
381 $questionHint =
new self();
382 $questionHint->
load($hintId);
383 return $questionHint;
388 return self::PAGE_OBJECT_TYPE;
393 return sprintf($lng->
txt(
'tst_question_hints_index_column_label'), $hintIndex);
setId($id)
sets the passed hint id
setPoints($points)
sets the passed points to ground-off for this hint
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...
getHtmlQuestionContentPurifier()
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
__construct()
Constructor.
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
getText()
returns the hint text