19 require_once
'Modules/TestQuestionPool/classes/feedback/class.ilAssMultiOptionQuestionFeedback.php';
43 if (!$this->questionOBJ->getSelfAssessmentEditingMode()) {
45 $header->setTitle($this->
lng->txt(
'feedback_answers'));
48 require_once
'./Services/Form/classes/class.ilRadioGroupInputGUI.php';
49 require_once
'./Services/Form/classes/class.ilRadioOption.php';
53 new ilRadioOption($this->
lng->txt(
'feedback_all'), self::FEEDBACK_SETTING_ALL)
56 new ilRadioOption($this->
lng->txt(
'feedback_checked'), self::FEEDBACK_SETTING_CHECKED)
59 new ilRadioOption($this->
lng->txt($this->questionOBJ->getSpecificFeedbackAllCorrectOptionLabel()), self::FEEDBACK_SETTING_CORRECT)
62 $feedback->setRequired(
true);
66 $propertyLabel = $this->questionOBJ->prepareTextareaOutput(
71 $propertyPostVar =
"feedback_answer_$index";
76 $this->questionOBJ->isAdditionalContentEditingModePageObject()
84 if (!$this->questionOBJ->getSelfAssessmentEditingMode()) {
86 $this->questionOBJ->getSpecificFeedbackSetting()
90 if ($this->questionOBJ->isAdditionalContentEditingModePageObject()) {
96 $value = $this->questionOBJ->prepareTextareaOutput(
108 $feedback_setting = $form->
getInput(
'feedback_setting');
113 if ($feedback_setting ===
'') {
119 if (!$this->questionOBJ->isAdditionalContentEditingModePageObject()) {
122 $this->questionOBJ->getId(),
125 (string) ($form->
getInput(
"feedback_answer_$index") ??
'')
148 array(
'feedback_setting' => array(
'integer', $specificFeedbackSetting)),
149 array(
'question_fi' => array(
'integer', $questionId))
156 parent::duplicateSpecificFeedback($originalQuestionId, $duplicateQuestionId);
162 parent::syncSpecificFeedback($originalQuestionId, $duplicateQuestionId);
167 $res = $this->db->queryF(
168 "SELECT feedback_setting FROM {$this->getSpecificQuestionTableName()} WHERE question_fi = %s",
170 array($sourceQuestionId)
173 $row = $this->db->fetchAssoc(
$res);
177 array(
'feedback_setting' => array(
'integer', $row[
'feedback_setting']) ),
178 array(
'question_fi' => array(
'integer', $targetQuestionId) )
getSpecificAnswerFeedbackContent(int $questionId, int $questionIndex, int $answerIndex)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
saveSpecificFeedbackSetting(int $questionId, int $specificFeedbackSetting)
saves the given specific feedback setting for the given question id to the db.
getAnswerOptionsByAnswerIndex()
getSpecificAnswerFeedbackPageObjectType()
completeSpecificFormProperties(ilPropertyFormGUI $form)
syncSpecificFeedback(int $originalQuestionId, int $duplicateQuestionId)
getSpecificAnswerFeedbackPageObjectId(int $questionId, int $questionIndex, int $answerIndex)
returns a useable page object id for specific answer feedback page objects for the given question id ...
const FEEDBACK_SETTING_CHECKED
const FEEDBACK_SETTING_CORRECT
duplicateSpecificFeedback(int $originalQuestionId, int $duplicateQuestionId)
saveSpecificFormProperties(ilPropertyFormGUI $form)
buildAnswerOptionLabel(int $index, $answer)
buildFeedbackContentFormProperty(string $label, string $postVar, bool $asNonEditable)
builds and returns a form property gui object with the given label and postvar that is addable to pro...
getPageObjectNonEditableValueHTML(string $pageObjectType, int $pageObjectId)
returns html content to be used as value for non editable value form properties in feedback editing f...
getSpecificQuestionTableName()
initSpecificFormProperties(ilPropertyFormGUI $form)
isSaveableInPageObjectEditingMode()
returns the fact that the feedback editing form is saveable in page object editing mode...
const FEEDBACK_SETTING_ALL
syncSpecificFeedbackSetting(int $sourceQuestionId, int $targetQuestionId)
saveSpecificAnswerFeedbackContent(int $questionId, int $questionIndex, int $answerIndex, string $feedbackContent)