ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilAssLongMenuFeedback.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4require_once 'Modules/TestQuestionPool/classes/feedback/class.ilAssConfigurableMultiOptionQuestionFeedback.php';
11{
12
13 const SPECIFIC_QUESTION_TABLE_NAME = 'qpl_qst_lome';
14
15 protected function getSpecificQuestionTableName()
16 {
18 }
19
20 protected function getAnswerOptionsByAnswerIndex()
21 {
22 return $this->questionOBJ->getAnswers();
23 }
24
25 protected function buildAnswerOptionLabel($index, $answers)
26 {
27 $counter = $index + 1;
28 $caption = 'Longmenu '. $counter ;
29 return $caption;
30 }
31}
buildAnswerOptionLabel($index, $answers)
builds an answer option label from given (mixed type) index and answer (can be overwritten by concret...
getAnswerOptionsByAnswerIndex()
returns the answer options mapped by answer index (can be overwritten by concrete question type class...