ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAssSingleChoiceFeedback.php
Go to the documentation of this file.
1 <?php
2 
28 {
32  public const SPECIFIC_QUESTION_TABLE_NAME = 'qpl_qst_sc';
33 
34  protected function getSpecificQuestionTableName(): string
35  {
36  return self::SPECIFIC_QUESTION_TABLE_NAME;
37  }
38 
39  protected function buildAnswerOptionLabel(int $index, $answer): string
40  {
41  $label = [];
42 
43  if ($answer->hasImage()) {
44  if ($this->questionOBJ->getThumbSize()) {
45  $src = $this->questionOBJ->getImagePathWeb() . $this->questionOBJ->getThumbPrefix() . $answer->getImage();
46  } else {
47  $src = $this->questionOBJ->getImagePathWeb() . $answer->getImage();
48  }
49 
50  $label[] = "<img src='{$src}' />";
51  }
52 
53  if ($answer->getAnswertext() !== null
54  && $answer->getAnswertext() !== '') {
55  $label[] = $answer->getAnswertext();
56  }
57 
58  return implode('<br />', $label);
59  }
60 }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
const SPECIFIC_QUESTION_TABLE_NAME
table name for specific feedback