ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilAssImagemapQuestionFeedback.php
Go to the documentation of this file.
1 <?php
2 
28 {
38  protected function buildAnswerOptionLabel(int $index, $answer): string
39  {
40  $text = $this->lng->txt('region') . " " . ($index + 1);
41  if (strlen($answer->getAnswertext())) {
42  $text = $answer->getAnswertext() . ": " . $text;
43  }
44  return $text;
45  }
46 }
$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...