ILIAS
release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
◀ ilDoc Overview
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
4
require_once
'Modules/TestQuestionPool/classes/feedback/class.ilAssConfigurableMultiOptionQuestionFeedback.php'
;
10
class
ilAssLongMenuFeedback
extends
ilAssMultiOptionQuestionFeedback
11
{
12
13
const
SPECIFIC_QUESTION_TABLE_NAME
=
'qpl_qst_lome'
;
14
15
protected
function
getSpecificQuestionTableName
()
16
{
17
return
self::SPECIFIC_QUESTION_TABLE_NAME
;
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
}
ilAssLongMenuFeedback
Definition:
class.ilAssLongMenuFeedback.php:11
ilAssLongMenuFeedback\buildAnswerOptionLabel
buildAnswerOptionLabel($index, $answers)
builds an answer option label from given (mixed type) index and answer (can be overwritten by concret...
Definition:
class.ilAssLongMenuFeedback.php:25
ilAssLongMenuFeedback\getSpecificQuestionTableName
getSpecificQuestionTableName()
Definition:
class.ilAssLongMenuFeedback.php:15
ilAssLongMenuFeedback\getAnswerOptionsByAnswerIndex
getAnswerOptionsByAnswerIndex()
returns the answer options mapped by answer index (can be overwritten by concrete question type class...
Definition:
class.ilAssLongMenuFeedback.php:20
ilAssLongMenuFeedback\SPECIFIC_QUESTION_TABLE_NAME
const SPECIFIC_QUESTION_TABLE_NAME
Definition:
class.ilAssLongMenuFeedback.php:13
ilAssMultiOptionQuestionFeedback
Definition:
class.ilAssMultiOptionQuestionFeedback.php:18
Modules
TestQuestionPool
classes
feedback
class.ilAssLongMenuFeedback.php
Generated on Wed Sep 24 2025 19:00:50 for ILIAS by
1.9.4 (using
Doxyfile
)