4 require_once
'./Modules/TestQuestionPool/classes/class.assQuestionGUI.php';
5 require_once
'./Modules/TestQuestionPool/interfaces/interface.ilGuiQuestionScoringAdjustable.php';
6 require_once
'./Modules/TestQuestionPool/interfaces/interface.ilGuiAnswerScoringAdjustable.php';
7 require_once
'./Modules/Test/classes/inc.AssessmentConstants.php';
60 include_once
"./Modules/TestQuestionPool/classes/class.assOrderingQuestion.php";
63 $this->
object->loadFromDb($id);
69 if (!$this->object->isImageOrderingType()) {
73 $this->
object->setContentType($this->object::OQ_CT_PICTURES);
74 $this->
object->saveToDb();
76 $values = $this->request->getParsedBody();
82 $ordering_element_list = $this->
object->getOrderingElementList();
83 foreach ($ordering_element_list as $element) {
84 $this->
object->dropImageFile($element->getContent());
87 $this->
object->setContentType($this->object::OQ_CT_TERMS);
88 $this->
object->saveToDb();
97 $ordering_element_list = $this->
object->getOrderingElementList();
98 $ordering_element_list->resetElements();
101 $form->setValuesByArray($values);
110 $form->setValuesByPost();
111 $post =
$_POST[self::F_NESTED_ORDER];
112 if ($form->checkInput()) {
113 $list = $this->
object->getOrderingElementList();
116 foreach (array_keys($post[self::F_NESTED_ORDER_ORDER]) as $idx => $identifier) {
117 $element_identifier = str_replace(self::F_NESTED_IDENTIFIER_PREFIX,
'', $identifier);
118 $element = $list->getElementByRandomIdentifier($element_identifier);
120 $ordered[] = $element
122 ->withIndentation($post[self::F_NESTED_ORDER_INDENT][$identifier]);
125 $list = $list->withElements($ordered);
126 $this->
object->setOrderingElementList($list);
127 $this->tpl->setOnScreenMessage(
'success', $this->lng->txt(
'saved_successfully'),
true);
129 $this->tpl->setOnScreenMessage(
'error', $this->lng->txt(
'form_input_not_valid'),
true);
144 $form->setValuesByPost();
148 foreach ($submitted_list->getElements() as $submitted_element) {
149 if ($submitted_element->isImageUploadAvailable()) {
150 $filename = $this->
object->storeImageFile(
151 $submitted_element->getUploadImageFile(),
152 $submitted_element->getUploadImageName()
158 $submitted_element = $submitted_element->withContent(
$filename);
162 if ($submitted_element->isImageRemovalRequest()) {
163 $this->
object->dropImageFile($submitted_element->getContent());
164 $submitted_element = $submitted_element->withContent(
'');
167 $elements[] = $submitted_element;
170 $list = $this->
object->getOrderingElementList()->withElements($elements);
171 $this->
object->setOrderingElementList($list);
182 $thumb_geometry = (int) ($post[
"thumb_geometry"] ?? $this->object->getThumbGeometry());
183 $this->
object->setThumbGeometry($thumb_geometry);
185 $points = (float) str_replace(
',',
'.', $post[
'points']);
187 $this->
object->setPoints($points);
189 $use_nested = $post[self::F_USE_NESTED] ===
"1";
191 $this->
object->setNestingType($use_nested);
198 ->getElementList($this->object->getId());
200 $use_nested =
$_POST[self::F_USE_NESTED] ===
"1";
203 $existing_list = $this->
object->getOrderingElementList();
207 foreach ($list->getElements() as $element) {
208 $element = $list->ensureValidIdentifiers($element);
210 if ($existing = $existing_list->getElementByRandomIdentifier($element->getRandomIdentifier())) {
211 if ($existing->getIndentation() == $parent_indent + 1) {
213 ->withIndentation($existing->getIndentation());
216 $parent_indent = $element->getIndentation();
219 $list = $list->withElements($nu);
228 $this->
object->setOrderingElementList($list);
235 $header->setTitle($this->lng->txt(
'oq_header_ordering_elements'));
238 $orderingElementInput = $this->
object->buildOrderingElementInputGui();
240 $this->
object->initOrderingElementAuthoringProperties($orderingElementInput);
242 $list = $this->
object->getOrderingElementList();
243 $orderingElementInput->setElementList($list);
244 $form->
addItem($orderingElementInput);
251 if ($this->object->isImageOrderingType()) {
252 $geometry =
new ilNumberInputGUI($this->lng->txt(
"thumb_geometry"),
"thumb_geometry");
253 $geometry->
setValue($this->object->getThumbGeometry());
254 $geometry->setRequired(
true);
255 $geometry->setMaxLength(6);
256 $geometry->setMinValue(20);
257 $geometry->setSize(6);
258 $geometry->setInfo($this->lng->txt(
"thumb_geometry_info"));
265 $points->setValue($this->object->getPoints());
266 $points->setRequired(
true);
268 $points->setMinValue(0);
269 $points->setMinvalueShouldBeGreater(
true);
273 $this->lng->txt(
'qst_use_nested_answers'),
276 $nested_answers_options = [
277 0 => $this->lng->txt(
'qst_nested_nested_answers_off'),
278 1 => $this->lng->txt(
'qst_nested_nested_answers_on')
280 $nested_answers->setOptions($nested_answers_options);
281 $nested_answers->setValue($this->object->isOrderingTypeNested());
282 $form->
addItem($nested_answers);
296 $form->setValuesByPost();
298 if (!$form->checkInput()) {
316 self::TAB_EDIT_QUESTION,
317 $this->lng->txt(
'edit_question'),
318 $this->ctrl->getLinkTarget($this,
'editQuestion')
320 if ($this->object->isOrderingTypeNested()) {
322 self::TAB_EDIT_NESTING,
323 $this->lng->txt(
'tab_nest_answers'),
324 $this->ctrl->getLinkTarget($this, self::CMD_EDIT_NESTING)
327 $tabs->setTabActive(
'edit_question');
328 $tabs->setSubTabActive($active);
348 require_once
'Modules/TestQuestionPool/classes/forms/class.ilAssOrderingQuestionAuthoringFormGUI.php';
350 $form->setFormAction($this->ctrl->getFormAction($this));
352 $form->setMultipart($this->object->isImageOrderingType());
353 $form->setTableWidth(
"100%");
354 $form->setId(
"ordering");
361 $form->addSpecificOrderingQuestionCommandButtons($this->
object);
362 $form->addGenericAssessmentQuestionCommandButtons($this->
object);
370 $form->setFormAction($this->ctrl->getFormAction($this));
372 $form->setTableWidth(
"100%");
375 $header->setTitle($this->lng->txt(
'oq_header_ordering_elements'));
376 $form->addItem($header);
378 $orderingElementInput = $this->
object->buildNestedOrderingElementInputGui();
381 $this->
object->initOrderingElementAuthoringProperties($orderingElementInput);
383 $list = $this->
object->getOrderingElementList();
384 foreach ($list->getElements() as $element) {
385 $element = $list->ensureValidIdentifiers($element);
388 $orderingElementInput->setElementList($list);
390 $form->addItem($orderingElementInput);
391 $form->addCommandButton(self::CMD_SAVE_NESTING, $this->lng->txt(
"save"));
424 $graphicalOutput =
false,
425 $result_output =
false,
426 $show_question_only =
true,
427 $show_feedback =
false,
428 $show_correct_solution =
false,
429 $show_manual_scoring =
false,
430 $show_question_text =
true 432 $solutionOrderingList = $this->
object->getOrderingElementListForSolutionOutput(
433 $show_correct_solution,
439 $answers_gui = $this->
object->buildNestedOrderingElementInputGui();
441 if ($show_correct_solution) {
447 $answers_gui->setInteractionEnabled(
false);
448 $answers_gui->setElementList($solutionOrderingList);
450 if ($graphicalOutput) {
451 $answers_gui->setShowCorrectnessIconsEnabled(
true);
453 $answers_gui->setCorrectnessTrueElementList(
454 $solutionOrderingList->getParityTrueElementList($this->object->getOrderingElementList())
456 $solution_html = $answers_gui->getHTML();
458 $template =
new ilTemplate(
"tpl.il_as_qpl_nested_ordering_output_solution.html",
true,
true,
"Modules/TestQuestionPool");
459 $template->setVariable(
'SOLUTION_OUTPUT', $solution_html);
460 if ($show_question_text ==
true) {
461 $template->setVariable(
"QUESTIONTEXT", $this->object->getQuestionForHTMLOutput());
463 $questionoutput = $template->get();
465 $solutiontemplate =
new ilTemplate(
"tpl.il_as_tst_solution_output.html",
true,
true,
"Modules/TestQuestionPool");
466 $solutiontemplate->setVariable(
"SOLUTION_OUTPUT", $questionoutput);
468 if ($show_feedback) {
473 $feedback .= strlen($fb) ? $fb :
'';
477 $feedback .= strlen($fb) ? $fb :
'';
479 if (strlen($feedback)) {
485 $solutiontemplate->setVariable(
"ILC_FB_CSS_CLASS", $cssClass);
486 $solutiontemplate->setVariable(
"FEEDBACK", $this->object->prepareTextareaOutput($feedback,
true));
490 if ($show_question_only) {
491 return $solutiontemplate->get();
500 public function getPreview($show_question_only =
false, $showInlineFeedback =
false)
503 $solutionOrderingElementList = unserialize(
507 $solutionOrderingElementList = $this->
object->getShuffledOrderingElementList();
510 $answers = $this->
object->buildNestedOrderingElementInputGui();
511 $answers->setNestingEnabled($this->object->isOrderingTypeNested());
514 $answers->setElementList($solutionOrderingElementList);
516 $template =
new ilTemplate(
"tpl.il_as_qpl_ordering_output.html",
true,
true,
"Modules/TestQuestionPool");
518 $template->setCurrentBlock(
'nested_ordering_output');
519 $template->setVariable(
'NESTED_ORDERING', $answers->getHTML());
520 $template->parseCurrentBlock();
522 $template->setVariable(
"QUESTIONTEXT", $this->object->getQuestionForHTMLOutput());
524 if ($show_question_only) {
525 return $template->get();
537 if ($DIC[
'ilBrowser']->isMobile() || $DIC[
'ilBrowser']->isIpad()) {
538 $files[] =
'./node_modules/@andxor/jquery-ui-touch-punch-fix/jquery.ui.touch-punch.js';
545 public function getTestOutput($activeId,
$pass, $isPostponed =
false, $userSolutionPost =
false, $inlineFeedback =
false)
549 $userSolutionPost = is_array($userSolutionPost) ? $userSolutionPost : array();
552 $orderingGUI = $this->
object->buildNestedOrderingElementInputGui();
553 $orderingGUI->setNestingEnabled($this->object->isOrderingTypeNested());
555 $solutionOrderingElementList = $this->
object->getSolutionOrderingElementListForTestOutput(
562 $template =
new ilTemplate(
'tpl.il_as_qpl_ordering_output.html',
true,
true,
'Modules/TestQuestionPool');
565 $orderingGUI->setElementList($solutionOrderingElementList);
567 $template->setCurrentBlock(
'nested_ordering_output');
568 $template->setVariable(
'NESTED_ORDERING', $orderingGUI->getHTML());
569 $template->parseCurrentBlock();
571 $template->setVariable(
'QUESTIONTEXT', $this->object->getQuestionForHTMLOutput());
573 $pageoutput = $this->
outQuestionPage(
'', $isPostponed, $activeId, $template->get());
594 return $DIC[
'ilTabs'];
599 if (!$this->object->feedbackOBJ->specificAnswerFeedbackExists()) {
603 $tpl =
new ilTemplate(
'tpl.il_as_qpl_ordering_elem_fb.html',
true,
true,
'Modules/TestQuestionPool');
605 foreach ($this->object->getOrderingElementList() as $element) {
606 $feedback = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation(
607 $this->object->getId(),
609 $element->getPosition()
612 if ($this->object->isImageOrderingType()) {
613 $imgSrc = $this->
object->getImagePathWeb() . $element->getContent();
614 $tpl->setCurrentBlock(
'image');
615 $tpl->setVariable(
'IMG_SRC', $imgSrc);
617 $tpl->setCurrentBlock(
'text');
619 $tpl->setVariable(
'CONTENT', $element->getContent());
620 $tpl->parseCurrentBlock();
622 $tpl->setCurrentBlock(
'element');
623 $tpl->setVariable(
'FEEDBACK', $feedback);
624 $tpl->parseCurrentBlock();
627 return $this->
object->prepareTextareaOutput(
$tpl->get(),
true);
670 $this->object->getOrderingElementList()
679 foreach ($relevant_answers_chosen as $answer_chosen) {
680 $passdata[$answer_chosen[
'active_fi'] .
'-' . $answer_chosen[
'pass']][$answer_chosen[
'value2']] = $answer_chosen[
'value1'];
684 foreach ($passdata as $key =>
$data) {
685 $hash = md5(implode(
'-',
$data));
687 foreach ($variants as $vkey => $variant) {
688 if ($variant[
'hash'] == $hash) {
694 $variants[$key][
'hash'] = $hash;
695 $variants[$key][
'count'] = 1;
699 $aggregate = array();
700 foreach ($variants as $key => $variant_entry) {
701 $variant = $passdata[$key];
703 foreach ($variant as $variant_key => $variant_line) {
705 $aggregated_info_for_answer[
'count'] = $variant_entry[
'count'];
706 foreach ($answers_defined_on_question as $element) {
709 if ($this->object->isImageOrderingType()) {
710 $element->setImageThumbnailPrefix($this->object->getThumbPrefix());
711 $element->setImagePathWeb($this->object->getImagePathWeb());
712 $element->setImagePathFs($this->object->getImagePath());
714 $src = $element->getPresentationImageUrl();
715 $alt = $element->getContent();
716 $content =
"<img src='{$src}' alt='{$alt}' title='{$alt}'/>";
718 $content = $element->getContent();
721 $aggregated_info_for_answer[
$i .
' - ' . $content]
722 = $passdata[$key][
$i];
725 $aggregate[] = $aggregated_info_for_answer;
737 $tpl =
new ilTemplate(
'tpl.il_as_aggregated_answers_table.html',
true,
true,
"Modules/TestQuestionPool");
739 foreach ($aggregate as $line_data) {
740 $tpl->setCurrentBlock(
'aggregaterow');
741 $count = array_shift($line_data);
743 foreach ($line_data as $key => $line) {
744 $html .=
'<li>' . ++$line .
' - ' . $key .
'</li>';
747 $tpl->setVariable(
'COUNT', $count);
748 $tpl->setVariable(
'OPTION', $html);
750 $tpl->parseCurrentBlock();
757 if ($this->object->isImageOrderingType()) {
764 $content =
"<img src='{$src}' alt='{$alt}' title='{$alt}'/>";
779 foreach ($list as $elem) {
780 if ($elem->getIndentation() > $lastIndent) {
782 } elseif ($elem->getIndentation() < $lastIndent) {
783 $html .=
'</li></ul><li>';
784 } elseif (!$firstElem) {
785 $html .=
'</li><li>';
793 $lastIndent = $elem->getIndentation();
798 for (
$i = $lastIndent;
$i > 0;
$i--) {
799 $html .=
'</ul></li>';
809 $answersByActiveAndPass = array();
811 foreach ($relevantAnswers as $row) {
812 $key = $row[
'active_fi'] .
':' . $row[
'pass'];
814 if (!isset($answersByActiveAndPass[$key])) {
815 $answersByActiveAndPass[$key] = array();
818 $answersByActiveAndPass[$key][$row[
'value1']] = $row[
'value2'];
821 $solutionLists = array();
823 foreach ($answersByActiveAndPass as $indexedSolutions) {
824 $solutionLists[] = $this->
object->getSolutionOrderingElementList($indexedSolutions);
830 foreach ($solutionLists as $orderingElementList) {
831 $hash = $orderingElementList->getHash();
833 if (!isset($answers[$hash])) {
838 $answers[$hash] = array(
839 'answer' => $variantHtml,
'frequency' => 0
843 $answers[$hash][
'frequency']++;
846 return array_values($answers);
855 $orderingInput->prepareReprintable($this->
object);
865 $points->setValue($this->object->getPoints());
866 $points->setRequired(
true);
868 $points->setMinValue(0);
869 $points->setMinvalueShouldBeGreater(
true);
873 $header->setTitle($this->lng->txt(
'oq_header_ordering_elements'));
876 $orderingElementInput = $this->
object->buildNestedOrderingElementInputGui();
878 $this->
object->initOrderingElementAuthoringProperties($orderingElementInput);
880 $orderingElementInput->setElementList($this->object->getOrderingElementList());
882 $form->
addItem($orderingElementInput);
890 $this->
object->setPoints((
float) $form->
getInput(
'points'));
894 $curElementList = $this->
object->getOrderingElementList();
897 $newElementList->setQuestionId($this->object->getId());
899 foreach ($submittedElementList as $submittedElement) {
900 if (!$curElementList->elementExistByRandomIdentifier($submittedElement->getRandomIdentifier())) {
904 $curElement = $curElementList->getElementByRandomIdentifier($submittedElement->getRandomIdentifier());
906 $curElement->setPosition($submittedElement->getPosition());
908 if ($this->object->isOrderingTypeNested()) {
909 $curElement->setIndentation($submittedElement->getIndentation());
912 $newElementList->addElement($curElement);
915 $this->
object->setOrderingElementList($newElementList);
isTestPresentationContext()
__construct($id=-1)
assOrderingQuestionGUI constructor
static getContentStylePath($a_style_id, $add_random=true, $add_token=true)
get content style path
populateQuestionSpecificFormPart(\ilPropertyFormGUI $form)
const F_NESTED_ORDER_ORDER
hasCorrectSolution($activeId, $passIndex)
getAggregatedAnswersView($relevant_answers)
Returns an html string containing a question specific representation of the answers so far given in t...
prepareReprintableCorrectionsForm(ilPropertyFormGUI $form)
addBasicQuestionFormProperties($form)
Add basic question form properties: assessment: title, author, description, question, working time.
const IDENTIFIER_INDICATOR_PREFIX
aggregateAnswers($relevant_answers_chosen, $answers_defined_on_question)
getAnswerStatisticOrderingVariantHtml(ilAssOrderingElementList $list)
renderAggregateView($aggregate)
populateAnswerSpecificFormPart(ilPropertyFormGUI $form)
Adds the answer specific form parts to a question property form gui.
getSolutionOutput( $active_id, $pass=null, $graphicalOutput=false, $result_output=false, $show_question_only=true, $show_feedback=false, $show_correct_solution=false, $show_manual_scoring=false, $show_question_text=true)
Get the question solution output.
const F_NESTED_ORDER_INDENT
const CMD_SWITCH_TO_PICTURESS
const CSS_CLASS_FEEDBACK_CORRECT
isRenderPurposePlayback()
populateTaxonomyFormSection(ilPropertyFormGUI $form)
getUseIntermediateSolution()
Get if intermediate solution should be used for solution output.
setImagePathFs($imagePathFs)
editQuestion($checkonly=false)
setImagePathWeb($imagePathWeb)
fetchSolutionListFromSubmittedForm(ilPropertyFormGUI $form)
getSpecificFeedbackOutput($userSolution)
writeQuestionGenericPostData()
const ORDERING_ELEMENT_FORM_FIELD_POSTVAR
isInteractivePresentation()
writeAnswerSpecificPostData(ilPropertyFormGUI $form)
Extracts the answer specific values from $_POST and applies them to the data object.
isRenderPurposeDemoplay()
const CMD_SWITCH_TO_TERMS
getILIASPage($html="")
Returns the ILIAS Page around a question.
buildEditFormAfterTypeChange(array $values)
getTestOutput($activeId, $pass, $isPostponed=false, $userSolutionPost=false, $inlineFeedback=false)
getAfterParticipationSuppressionAnswerPostVars()
Returns a list of postvars which will be suppressed in the form output when used in scoring adjustmen...
addEditSubtabs($active=self::TAB_EDIT_QUESTION)
getPresentationImageUrl()
Ordering question GUI representation.
getAfterParticipationSuppressionQuestionPostVars()
Returns a list of postvars which will be suppressed in the form output when used in scoring adjustmen...
static getSyntaxStylePath()
get syntax style path
const CSS_CLASS_FEEDBACK_WRONG
Basic GUI class for assessment questions.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
supportsIntermediateSolutionOutput()
Question type specific support of intermediate solution output The function getSolutionOutput respect...
setImageThumbnailPrefix($imageThumbnailPrefix)
saveTaxonomyAssignments()
saveCorrectionsFormProperties(ilPropertyFormGUI $form)
outQuestionPage($a_temp_var, $a_postponed=false, $active_id="", $html="", $inlineFeedbackEnabled=false)
output question page
__construct(Container $dic, ilPlugin $plugin)
getPresentationJavascripts()
writePostData($forceSaving=false)
{}
Class for ordering questions.
getPreview($show_question_only=false, $showInlineFeedback=false)
isRenderPurposePrintPdf()
Interface ilGuiAnswerScoringAdjustable.
getAnswersFrequency($relevantAnswers, $questionIndex)
getGenericFeedbackOutput($active_id, $pass)
Returns the answer specific feedback for the question.
Interface ilGuiQuestionScoringAdjustable.
getAnswerStatisticOrderingElementHtml(ilAssOrderingElement $element)
const F_NESTED_IDENTIFIER_PREFIX
populateCorrectionsFormProperties(ilPropertyFormGUI $form)
writeQuestionSpecificPostData(ilPropertyFormGUI $form)
Extracts the question specific values from $_POST and applies them to the data object.