ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilAssMatchingQuestionFeedback.php
Go to the documentation of this file.
1 <?php
2 
28 {
35  public function getAnswerOptionsByAnswerIndex(): array
36  {
37  return $this->questionOBJ->getMatchingPairs();
38  }
39 
49  protected function buildAnswerOptionLabel(int $index, $answer): string
50  {
51  $caption = $ordinal = $index + 1;
52  $caption .= '. <br />"' . $answer->getTerm()->getText() . '" =&gt; ';
53  $caption .= '"' . $answer->getDefinition()->getText() . '"';
54  $caption .= '</i>';
55 
56  return $caption;
57  }
58 }
$index
Definition: metadata.php:145
buildAnswerOptionLabel(int $index, $answer)
builds an answer option label from given (mixed type) index and answer (overwrites parent method from...
getAnswerOptionsByAnswerIndex()
returns the answer options mapped by answer index (overwrites parent method from ilAssMultiOptionQues...