4 require_once
'./Modules/TestQuestionPool/classes/class.assQuestionGUI.php';
5 require_once
'./Modules/TestQuestionPool/interfaces/interface.ilGuiQuestionScoringAdjustable.php';
6 include_once
'./Modules/Test/classes/inc.AssessmentConstants.php';
24 include_once
'./Modules/TestQuestionPool/classes/class.assLongMenu.php';
27 $this->
object->loadFromDb($id);
45 $user_solution = array();
49 #include_once "./Modules/Test/classes/class.ilObjTest.php"; 50 #if (!ilObjTest::_getUsePreviousAnswers($active_id, true)) 52 # if (is_null($pass)) $pass = ilObjTest::_getPass($active_id); 57 foreach ($solutions as $idx => $solution_value) {
58 $user_solution[$solution_value[
"value1"]] = $solution_value[
"value2"];
60 return $user_solution;
62 return $user_solution;
76 $form->setValuesByPost();
81 $custom_check = $this->
object->checkQuestionCustomPart($form);
82 if (!$check || !$custom_check) {
99 $this->
object->setQuestion(
$_POST[
'question']);
100 $this->
object->setLongMenuTextValue(
$_POST[
"longmenu_text"]);
101 $this->
object->setMinAutoComplete((
int)
$_POST[
"min_auto_complete"]);
102 $this->
object->setIdenticalScoring((
int) $_POST[
"identical_scoring"]);
108 $longmenu_text =
$_POST[
'longmenu_text'] ??
'';
109 $hidden_text_files =
$_POST[
'hidden_text_files'] ??
'';
110 $answer_options_from_text = preg_split(
115 if (count($answer_options_from_text) - 1 !== count($answer_options_from_files)) {
116 $this->tpl->setOnScreenMessage(
'failure', $this->lng->txt(
'longmenu_answeroptions_differ'));
124 foreach ($data as $k => $v) {
128 $data[$k] = trim($v);
136 if ($form === null) {
142 $this->tpl->setVariable(
"QUESTION_DATA", $this->ctrl->getHTML($form));
168 $long_menu_text =
new ilTextAreaInputGUI($this->lng->txt(
"longmenu_text"),
'longmenu_text');
171 $long_menu_text->setRows(10);
172 $long_menu_text->setCols(80);
173 if (!$this->object->getSelfAssessmentEditingMode()) {
175 include_once
"./Services/AdvancedEditing/classes/class.ilObjAdvancedEditing.php";
177 $long_menu_text->addPlugin(
"latex");
178 $long_menu_text->addButton(
"latex");
179 $long_menu_text->addButton(
"pastelatex");
180 $long_menu_text->setRTESupport($this->object->getId(),
"qpl",
"assessment");
181 $long_menu_text->setUseRte(
true);
184 require_once
'Modules/TestQuestionPool/classes/questions/class.ilAssSelfAssessmentQuestionFormatter.php';
186 $long_menu_text->setUseTagsForRteOnly(
false);
189 $long_menu_text->setValue($this->object->getLongMenuTextValue());
190 $form->
addItem($long_menu_text);
192 $tpl =
new ilTemplate(
"tpl.il_as_qpl_longmenu_question_gap_button_code.html",
true,
true,
"Modules/TestQuestionPool");
193 $tpl->setVariable(
'INSERT_GAP', $this->lng->txt(
'insert_gap'));
194 $tpl->parseCurrentBlock();
196 $button->setHtml(
$tpl->get());
199 require_once(
"./Services/UIComponent/Modal/classes/class.ilModalGUI.php");
201 $modal->setHeading(
'');
202 $modal->setId(
"ilGapModal");
206 $min_auto_complete =
new ilNumberInputGUI($this->lng->txt(
"min_auto_complete"),
'min_auto_complete');
208 $auto_complete = $this->
object->getMinAutoComplete();
209 if ($auto_complete == 0) {
212 $min_auto_complete->setValue($auto_complete);
213 $min_auto_complete->setMinValue(1);
214 $min_auto_complete->setMaxValue(99);
215 $min_auto_complete->setSize(5);
216 $form->
addItem($min_auto_complete);
218 $identical_scoring =
new ilCheckboxInputGUI($this->lng->txt(
"identical_scoring"),
"identical_scoring");
220 $identical_scoring->setChecked($this->object->getIdenticalScoring());
221 $identical_scoring->setInfo($this->lng->txt(
'identical_scoring_desc'));
222 $identical_scoring->setRequired(
false);
223 $form->
addItem($identical_scoring);
228 $form->
addItem($hidden_correct);
230 $long_menu_language = [
231 'edit' =>
'[' . $this->lng->txt(
'edit') .
']',
232 'type' => $this->lng->txt(
'type'),
233 'answers' => $this->lng->txt(
'answers'),
234 'answer_options' => $this->lng->txt(
'answer_options'),
235 'correct_answers' => $this->lng->txt(
'correct_answers'),
236 'add_answers' =>
'[' . $this->lng->txt(
'add_answers') .
']',
237 'manual_editing' => $this->lng->txt(
'manual_editing')
241 'list' => json_decode($this->object->getJsonStructure()),
243 'last_updated_element' => 0,
244 'replacement_word' =>
'',
245 'filereader_usable' =>
false,
248 $answers = $this->
object->getAnswersObject();
250 if (is_array(
$_POST) && array_key_exists(
'hidden_text_files',
$_POST)) {
251 $question_parts[
'list'] = json_decode(
$_POST[
'hidden_correct_answers']);
252 $answers =
$_POST[
'hidden_text_files'];
255 $this->tpl->addJavaScript(
'./Modules/TestQuestionPool/templates/default/longMenuQuestionGapBuilder.js');
256 $this->tpl->addJavaScript(
'./Modules/TestQuestionPool/templates/default/longMenuQuestion.js');
257 $tpl =
new ilTemplate(
"tpl.il_as_qpl_longmenu_question_gap.html",
true,
true,
"Modules/TestQuestionPool");
258 $tpl->setVariable(
'SELECT_BOX', $this->lng->txt(
'insert_gap'));
259 $tpl->setVariable(
"SELECT", $this->lng->txt(
'answers_select'));
260 $tpl->setVariable(
"TEXT", $this->lng->txt(
'answers_text_box'));
261 $tpl->setVariable(
"POINTS", $this->lng->txt(
'points'));
262 $tpl->setVariable(
"INFO_TEXT_UPLOAD", $this->lng->txt(
'info_text_upload'));
263 $tpl->setVariable(
"TXT_BROWSE", $this->lng->txt(
'select_file'));
264 $tpl->setVariable(
'POINTS_ERROR', $this->lng->txt(
'enter_enough_positive_points'));
265 $tpl->setVariable(
'AUTOCOMPLETE_ERROR', $this->lng->txt(
'autocomplete_error'));
266 $tpl->setVariable(
'MISSING_VALUE', $this->lng->txt(
'msg_input_is_required'));
267 $tpl->setVariable(
'SAVE', $this->lng->txt(
'save'));
268 $tpl->setVariable(
'CANCEL', $this->lng->txt(
'cancel'));
270 $tag_input->setTypeAhead(
true);
271 $tag_input->setPostVar(
'taggable');
272 $tag_input->setJsSelfInit(
false);
273 $tag_input->setTypeAheadMinLength(1);
274 $tpl->setVariable(
"TAGGING_PROTOTYPE", $tag_input->render(
''));
276 $tpl->setVariable(
"MY_MODAL", $modal->getHTML());
278 $tpl->parseCurrentBlock();
279 $this->tpl->addOnLoadCode(
'longMenuQuestion.Init(' .
280 json_encode($long_menu_language) .
', ' .
281 json_encode($question_parts) .
', ' .
284 $button->setHtml(
$tpl->get());
324 $graphicalOutput =
false,
325 $result_output =
false,
326 $show_question_only =
true,
327 $show_feedback =
false,
328 $show_correct_solution =
false,
329 $show_manual_scoring =
false,
330 $show_question_text =
true 332 include_once
"./Services/UICore/classes/class.ilTemplate.php";
333 $template =
new ilTemplate(
"tpl.il_as_qpl_longmenu_question_output_solution.html",
true,
true,
"Modules/TestQuestionPool");
335 if ($show_question_text) {
336 $template->setVariable(
"QUESTIONTEXT", $this->object->getQuestionForHTMLOutput());
338 if (($active_id > 0) && (!$show_correct_solution)) {
341 $correct_solution = $this->
object->getCorrectAnswersForQuestionSolution($this->object->getId());
344 $solution_template =
new ilTemplate(
"tpl.il_as_tst_solution_output.html",
true,
true,
"Modules/TestQuestionPool");
345 $question_output = $template->get();
347 if ($show_feedback) {
350 $feedback .= strlen($fb) ? $fb :
'';
354 $feedback .= strlen($fb) ? $fb :
'';
356 if (strlen($feedback)) {
362 $solution_template->setVariable(
"ILC_FB_CSS_CLASS", $cssClass);
363 $solution_template->setVariable(
"FEEDBACK", $this->object->prepareTextareaOutput($feedback,
true));
366 $solution_template->setVariable(
"SOLUTION_OUTPUT", $question_output);
368 $solution_output = $solution_template->get();
370 if (!$show_question_only) {
371 $solution_output = $this->
getILIASPage($solution_output);
374 return $solution_output;
377 public function getPreview($show_question_only =
false, $showInlineFeedback =
false)
380 $user_solution = array_values($user_solution);
382 include_once
"./Services/UICore/classes/class.ilTemplate.php";
383 $template =
new ilTemplate(
"tpl.il_as_qpl_longmenu_question_output.html",
true,
true,
"Modules/TestQuestionPool");
385 $question_text = $this->
object->getQuestion();
386 $template->setVariable(
"QUESTIONTEXT", $this->object->getQuestionForHTMLOutput());
387 $template->setVariable(
"ANSWER_OPTIONS_JSON", json_encode($this->object->getAvailableAnswerOptions()));
388 $template->setVariable(
'AUTOCOMPLETE_LENGTH', $this->object->getMinAutoComplete());
391 $question_output = $template->get();
392 if (!$show_question_only) {
393 $question_output = $this->
getILIASPage($question_output);
395 return $question_output;
405 $is_postponed =
false,
406 $use_post_solutions =
false,
407 $show_feedback =
false 409 $user_solution = array();
412 include_once
"./Modules/Test/classes/class.ilObjTest.php";
414 if (is_null(
$pass)) {
418 $solutions = $this->
object->getUserSolutionPreferingIntermediate($active_id,
$pass);
419 foreach ($solutions as $idx => $solution_value) {
420 $user_solution[$solution_value[
"value1"]] = $solution_value[
"value2"];
425 include_once
"./Services/UICore/classes/class.ilTemplate.php";
426 $template =
new ilTemplate(
"tpl.il_as_qpl_longmenu_question_output.html",
true,
true,
"Modules/TestQuestionPool");
428 $question_text = $this->
object->getQuestion();
429 $template->setVariable(
"QUESTIONTEXT", $this->object->getQuestionForHTMLOutput());
430 $template->setVariable(
"ANSWER_OPTIONS_JSON", json_encode($this->object->getAvailableAnswerOptions()));
432 $template->setVariable(
'AUTOCOMPLETE_LENGTH', $this->object->getMinAutoComplete());
433 $question_output = $template->get();
434 $page_output = $this->
outQuestionPage(
"", $is_postponed, $active_id, $question_output);
440 if (!$this->object->feedbackOBJ->specificAnswerFeedbackExists()) {
444 $feedback =
'<table class="test_specific_feedback"><tbody>';
445 $gaps = $this->
object->getCorrectAnswers();
446 foreach ($gaps as
$index => $answer) {
448 $caption .=
$index + 1 .
': ';
450 $feedback .=
'<tr><td>';
452 $feedback .= $caption .
'</td><td>';
453 $feedback .= $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation(
454 $this->object->getId(),
459 $feedback .=
'</tbody></table>';
460 return $this->
object->prepareTextareaOutput($feedback,
true);
489 $aggregation = array();
490 foreach ($relevant_answers as $answer) {
491 $overview[$answer[
'active_fi']][$answer[
'pass']][$answer[
'value1']] = $answer[
'value2'];
494 foreach ($overview as $active) {
495 foreach ($active as $answer) {
496 foreach ($answer as $option => $value) {
497 $aggregation[$option][$value] = $aggregation[$option][$value] + 1;
501 $tpl =
new ilTemplate(
'tpl.il_as_aggregated_longmenu_question_answers_table.html',
true,
true,
"Modules/TestQuestionPool");
502 $json = json_decode($this->object->getJsonStructure());
503 foreach ($json as $key => $value) {
504 $tpl->setVariable(
'TITLE',
'Longmenu ' . ($key + 1));
505 if (array_key_exists($key, $aggregation)) {
506 $aggregate = $aggregation[$key];
507 foreach ($aggregate as $answer => $counts) {
508 $tpl->setVariable(
'OPTION', $answer);
509 $tpl->setVariable(
'COUNT', $counts);
510 $tpl->parseCurrentBlock();
522 $correct_answers = $this->
object->getCorrectAnswers();
523 $answers = $this->
object->getAnswers();
524 foreach ($text_array as $key => $value) {
525 $answer_is_correct =
false;
527 $return_value .= $this->
object->prepareTextareaOutput($value,
true);
528 if ($key <
sizeof($text_array) - 1) {
529 if (!array_key_exists($key, $correct_answers)) {
530 $this->tpl->setOnScreenMessage(
'failure', $this->lng->txt(
'longmenu_answeroptions_differ'));
534 if (array_key_exists($key, $user_solution)) {
535 $user_value = $user_solution[$key];
536 if (in_array($user_value, $correct_answers[$key][0])) {
537 $answer_is_correct =
true;
541 $return_value .= $this->
getTextGapTemplate($key, $user_value, $solution, $answer_is_correct, $graphical);
543 if (array_key_exists($key, $user_solution)) {
544 $user_value = $user_solution[$key];
545 if (in_array($user_value, $correct_answers[$key][0])) {
546 $answer_is_correct =
true;
549 $return_value .= $this->
getSelectGapTemplate($key, $answers[$key], $user_value, $solution, $answer_is_correct, $graphical);
553 return $return_value;
558 $tpl =
new ilTemplate(
"tpl.il_as_qpl_longmenu_question_text_gap.html",
true,
true,
"Modules/TestQuestionPool");
560 $tpl->setVariable(
'DISABLED',
'disabled');
561 $tpl->setVariable(
'JS_IGNORE',
'_ignore');
565 $tpl->setVariable(
"TEXT_OK", $this->lng->txt(
"answer_is_right"));
568 $tpl->setVariable(
"TEXT_OK", $this->lng->txt(
"answer_is_wrong"));
572 $tpl->setVariable(
'VALUE', $value);
573 $tpl->setVariable(
'KEY', $key);
580 $tpl =
new ilTemplate(
"tpl.il_as_qpl_longmenu_question_select_gap.html",
true,
true,
"Modules/TestQuestionPool");
581 $tpl->setVariable(
'KEY', $key);
583 $tpl->setVariable(
'DISABLED',
'disabled');
584 $tpl->setVariable(
'JS_IGNORE',
'_ignore');
585 $tpl->setCurrentBlock(
'best_solution');
586 if ($user_value == -1) {
587 $tpl->setVariable(
"SOLUTION", $this->lng->txt(
"please_select"));
589 $tpl->setVariable(
'SOLUTION', $user_value);
594 $tpl->setVariable(
"TEXT_OK", $this->lng->txt(
"answer_is_right"));
597 $tpl->setVariable(
"TEXT_OK", $this->lng->txt(
"answer_is_wrong"));
600 $tpl->parseCurrentBlock();
602 $tpl->setVariable(
"PLEASE_SELECT", $this->lng->txt(
"please_select"));
603 foreach ($answers as $value) {
604 $tpl->setCurrentBlock(
'select_option');
605 $tpl->setVariable(
'VALUE', $value);
606 if ($value == $user_value) {
607 $tpl->setVariable(
'SELECTED',
'selected');
609 $tpl->parseCurrentBlock();
617 return array_keys($this->object->getAnswers());
624 foreach ($relevant_answers as $row) {
625 if ($row[
'value1'] != $questionIndex) {
629 if (!isset($answers[$row[
'value2']])) {
632 $answers[$row[
'value2']] = array(
633 'answer' => $row[
'value2'],
'frequency' => 0
637 $answers[$row[
'value2']][
'frequency']++;
647 $table = parent::getAnswerFrequencyTableGUI(
654 $table->setTitle(sprintf(
655 $DIC->language()->txt(
'tst_corrections_answers_tbl_subindex'),
656 $DIC->language()->txt(
'longmenu') .
' ' . ($questionIndex + 1)
664 $correctAnswers = $this->
object->getCorrectAnswers();
666 foreach ($this->object->getAnswers() as $lmIndex => $lm) {
668 'answers_all' => array(0 => $lm),
669 'answers_all_count' => count($lm),
670 'answers_correct' => $correctAnswers[$lmIndex][0]
673 $lmPoints = $correctAnswers[$lmIndex][1];
676 $section->setTitle($this->lng->txt(
'longmenu') .
' ' . ($lmIndex + 1));
680 $this->lng->txt(
'answers'),
681 'longmenu_' . $lmIndex
686 $lmInput->setValues($lmValues);
690 $pointsInp =
new ilNumberInputGUI($this->lng->txt(
"points"),
'points_' . $lmIndex);
692 $pointsInp->allowDecimals(
true);
693 $pointsInp->setSize(4);
694 $pointsInp->setMinValue(0);
695 $pointsInp->setMinvalueShouldBeGreater(
false);
696 $pointsInp->setValue($lmPoints);
706 $correctAnswers = $this->
object->getCorrectAnswers();
708 foreach ($this->object->getAnswers() as $lmIndex => $lm) {
709 $pointsInput = (float) $form->
getInput(
'points_' . $lmIndex);
710 $correctAnswersInput = (array) $form->
getInput(
'longmenu_' . $lmIndex .
'_tags');
712 foreach ($correctAnswersInput as $idx => $answer) {
713 if (in_array($answer, $lm)) {
717 unset($correctAnswersInput[$idx]);
720 $correctAnswersInput = array_values($correctAnswersInput);
722 $correctAnswers[$lmIndex][0] = $correctAnswersInput;
723 $correctAnswers[$lmIndex][1] = $pointsInput;
726 $this->
object->setCorrectAnswers($correctAnswers);
isTestPresentationContext()
hasCorrectSolution($activeId, $passIndex)
addBasicQuestionFormProperties($form)
Add basic question form properties: assessment: title, author, description, question, working time.
static _getPass($active_id)
Retrieves the actual pass of a given user for a given test.
buildBasicEditFormObject()
static _getUsedHTMLTags($a_module="")
Returns an array of all allowed HTML tags for text editing.
getQuestionTemplate()
get question template
const CSS_CLASS_FEEDBACK_CORRECT
populateTaxonomyFormSection(ilPropertyFormGUI $form)
getUseIntermediateSolution()
Get if intermediate solution should be used for solution output.
writeQuestionGenericPostData()
getILIASPage($html="")
Returns the ILIAS Page around a question.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static stripSlashesRecursive($a_data, $a_strip_html=true, $a_allow="")
Strip slashes from array and sub-arrays.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
const CSS_CLASS_FEEDBACK_WRONG
Basic GUI class for assessment questions.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
static getInstance()
Get instance.
saveTaxonomyAssignments()
outQuestionPage($a_temp_var, $a_postponed=false, $active_id="", $html="", $inlineFeedbackEnabled=false)
output question page
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
const ADDITIONAL_CONTENT_EDITING_MODE_RTE
constant for additional content editing mode "default"
getGenericFeedbackOutput($active_id, $pass)
Returns the answer specific feedback for the question.
Interface ilGuiQuestionScoringAdjustable.
static _getUsePreviousAnswers($active_id, $user_active_user_setting=false)
Returns if the previous results should be hidden for a learner.
addQuestionFormCommandButtons($form)
Add the command buttons of a question properties form.