48 $this->
object->loadFromDb(
$id);
57 return $this->
object->feedbackOBJ->isSpecificAnswerFeedbackAvailable($this->
object->getId());
84 if ($this->
object->getSelfAssessmentEditingMode()) {
85 return $this->
object->isSingleline();
89 return $this->request_data_collector->int(
'types') === 0;
92 if (empty($this->
object->getLastChange())
93 && !$this->request_data_collector->isset(
'types')) {
95 return $this->
object->getMultilineAnswerSetting() === 0;
98 return $this->
object->isSingleline();
102 bool $checkonly =
false,
103 ?
bool $is_save_cmd =
null 108 $this->editForm = $form;
110 $form->setFormAction($this->
ctrl->getFormAction($this));
113 if ($is_singleline) {
114 $form->setMultipart(
true);
116 $form->setMultipart(
false);
118 $form->setTableWidth(
'100%');
119 $form->setId(
'asssinglechoice');
132 foreach ($this->request_data_collector->getParsedBody() as $key => $value) {
133 $item = $form->getItemByPostVar($key);
134 if ($item ===
null) {
137 switch (get_class($item)) {
138 case 'ilDurationInputGUI':
139 $item->setHours($value[
'hh']);
140 $item->setMinutes($value[
'mm']);
141 $item->setSeconds($value[
'ss']);
144 $item->setValue($value);
148 $errors = !$form->checkInput();
171 $position = key($this->request_data_collector->raw(
'cmd')[
'removeimagechoice']);
172 $this->
object->removeAnswerImage($position);
179 $position = key($this->request_data_collector->raw(
'cmd')[
'addchoice']);
180 $this->
object->addAnswer(
'', 0, $position + 1);
187 $position = key($this->request_data_collector->raw(
'cmd')[
'removechoice']);
188 $this->
object->deleteAnswer($position);
195 bool $graphical_output =
false,
196 bool $result_output =
false,
197 bool $show_question_only =
true,
198 bool $show_feedback =
false,
199 bool $show_correct_solution =
false,
200 bool $show_manual_scoring =
false,
201 bool $show_question_text =
true,
202 bool $show_inline_feedback =
true 205 if (($active_id > 0) && (!$show_correct_solution)) {
206 $user_solutions = $this->
object->getSolutionValues($active_id, $pass);
211 foreach ($this->
object->answers as $index => $answer) {
212 if ($answer->getPoints() > $max_points) {
213 $max_points = $answer->getPoints();
214 $found_index = $index;
217 $user_solutions = [[
'value1' => $found_index]];
228 $show_correct_solution,
229 $show_manual_scoring,
232 $show_inline_feedback,
237 mixed $user_solutions,
240 bool $graphical_output =
false,
241 bool $result_output =
false,
242 bool $show_question_only =
true,
243 bool $show_feedback =
false,
244 bool $show_correct_solution =
false,
245 bool $show_manual_scoring =
false,
246 bool $show_question_text =
true,
247 bool $show_autosave_title =
false,
248 bool $show_inline_feedback =
false,
251 foreach ($user_solutions as $idx => $solution_value) {
252 $user_solution = $solution_value[
'value1'];
255 $template =
new ilTemplate(
'tpl.il_as_qpl_mc_sr_output_solution.html',
true,
true,
'components/ILIAS/TestQuestionPool');
256 $solutiontemplate =
new ilTemplate(
'tpl.il_as_tst_solution_output.html',
true,
true,
'components/ILIAS/TestQuestionPool');
259 foreach ($keys as $answer_id) {
260 $answer = $this->
object->answers[$answer_id];
261 if (($active_id > 0) && (!$show_correct_solution)) {
262 if ($graphical_output) {
265 if (strcmp($user_solution, $answer_id) == 0) {
266 if ($answer->getPoints() == $this->
object->getMaximumPoints()) {
268 } elseif ($answer->getPoints() > 0) {
272 $template->setCurrentBlock(
'icon_ok');
273 $template->setVariable(
'ICON_OK', $correctness_icon);
274 $template->parseCurrentBlock();
277 if ($answer->hasImage()) {
278 $template->setCurrentBlock(
'answer_image');
279 if ($this->
object->getThumbSize()) {
280 $template->setVariable(
'ANSWER_IMAGE_URL', $this->
object->getImagePathWeb() . $this->
object->getThumbPrefix() . $answer->getImage());
282 $template->setVariable(
'ANSWER_IMAGE_URL', $this->
object->getImagePathWeb() . $answer->getImage());
284 $alt = $answer->getImage();
285 if (strlen($answer->getAnswertext())) {
286 $alt = $answer->getAnswertext();
288 $alt = preg_replace(
'/<[^>]*?>/',
'', $alt);
291 $template->parseCurrentBlock();
297 $template->setCurrentBlock(
'answer_row');
301 if (strcmp($user_solution, $answer_id) == 0) {
303 $template->setVariable(
'SOLUTION_ALT', $this->
lng->txt(
'checked'));
306 $template->setVariable(
'SOLUTION_ALT', $this->
lng->txt(
'unchecked'));
309 $template->setVariable(
'QID', $this->
object->getId());
310 $template->setVariable(
'SUFFIX', $show_correct_solution ?
'bestsolution' :
'usersolution');
311 $template->setVariable(
'SOLUTION_VALUE', $answer_id);
312 if (strcmp($user_solution, $answer_id) == 0) {
313 $template->setVariable(
'SOLUTION_CHECKED',
'checked');
317 if ($result_output) {
318 $points = $this->
object->answers[$answer_id]->getPoints();
319 $resulttext = ($points == 1) ?
"(%s {$this->lng->txt('point')})" :
"(%s {$this->lng->txt('points')})";
320 $template->setVariable(
'RESULT_OUTPUT', sprintf($resulttext, $points));
322 $template->parseCurrentBlock();
325 $questiontext = $this->
object->getQuestionForHTMLOutput();
329 if ($show_question_text ===
true) {
332 $questionoutput = $template->get();
334 if ($feedback !==
'') {
340 $solutiontemplate->setVariable(
'ILC_FB_CSS_CLASS', $cssClass);
343 $solutiontemplate->setVariable(
'SOLUTION_OUTPUT', $questionoutput);
345 $solutionoutput = $solutiontemplate->get();
347 if (!$show_question_only) {
351 return $solutionoutput;
355 bool $show_question_only =
false,
356 bool $show_inline_feedback =
false 360 $template =
new ilTemplate(
'tpl.il_as_qpl_mc_sr_output.html',
true,
true,
'components/ILIAS/TestQuestionPool');
361 foreach ($keys as $answer_id) {
362 $answer = $this->
object->answers[$answer_id];
363 if ($answer->hasImage()) {
364 if ($this->
object->getThumbSize()) {
365 $template->setCurrentBlock(
'preview');
366 $template->setVariable(
'URL_PREVIEW', $this->
object->getImagePathWeb() . $answer->getImage());
367 $template->setVariable(
'TEXT_PREVIEW', $this->
lng->txt(
'preview'));
369 $template->setVariable(
'ANSWER_IMAGE_URL', $this->
object->getImagePathWeb() . $this->
object->getThumbPrefix() . $answer->getImage());
370 list($width, $height, $type, $attr) = getimagesize($this->
object->getImagePath() . $answer->getImage());
371 $alt = $answer->getImage();
372 if (strlen($answer->getAnswertext())) {
373 $alt = $answer->getAnswertext();
375 $alt = preg_replace(
'/<[^>]*?>/',
'', $alt);
378 $template->parseCurrentBlock();
380 $template->setCurrentBlock(
'answer_image');
381 $template->setVariable(
'ANSWER_IMAGE_URL', $this->
object->getImagePathWeb() . $answer->getImage());
382 list($width, $height, $type, $attr) = getimagesize($this->
object->getImagePath() . $answer->getImage());
383 $alt = $answer->getImage();
384 if (strlen($answer->getAnswertext())) {
385 $alt = $answer->getAnswertext();
387 $alt = preg_replace(
'/<[^>]*?>/',
'', $alt);
388 $template->setVariable(
'ATTR', $attr);
391 $template->parseCurrentBlock();
397 $template->setCurrentBlock(
'answer_row');
398 $template->setVariable(
'QID', $this->
object->getId() .
'ID');
399 $template->setVariable(
'ANSWER_ID', $answer_id);
404 if ($user_solution === (
string) $answer_id) {
405 $template->setVariable(
'CHECKED_ANSWER',
' checked="checked"');
409 $template->parseCurrentBlock();
411 $questiontext = $this->
object->getQuestionForHTMLOutput();
416 $questionoutput = $template->get();
417 if (!$show_question_only) {
421 return $questionoutput;
427 bool $is_question_postponed =
false,
428 array|
bool $user_post_solutions =
false,
429 bool $show_specific_inline_feedback =
false 434 if ($active_id !== 0) {
435 $solutions = $this->
object->getTestOutputSolutions($active_id, $pass);
436 foreach ($solutions as $solution_value) {
437 $user_solution = $solution_value[
'value1'];
441 $template =
new ilTemplate(
'tpl.il_as_qpl_mc_sr_output.html',
true,
true,
'components/ILIAS/TestQuestionPool');
442 foreach ($keys as $answer_id) {
443 $answer = $this->
object->answers[$answer_id];
444 if ($answer->hasImage()) {
445 if ($this->
object->getThumbSize()) {
446 $template->setCurrentBlock(
'preview');
447 $template->setVariable(
'URL_PREVIEW', $this->
object->getImagePathWeb() . $answer->getImage());
448 $template->setVariable(
'TEXT_PREVIEW', $this->
lng->txt(
'preview'));
450 $template->setVariable(
'ANSWER_IMAGE_URL', $this->
object->getImagePathWeb() . $this->
object->getThumbPrefix() . $answer->getImage());
451 list($width, $height, $type, $attr) = getimagesize($this->
object->getImagePath() . $answer->getImage());
452 $alt = $answer->getImage();
453 if (strlen($answer->getAnswertext())) {
454 $alt = $answer->getAnswertext();
456 $alt = preg_replace(
'/<[^>]*?>/',
'', $alt);
459 $template->parseCurrentBlock();
461 $template->setCurrentBlock(
'answer_image');
462 $template->setVariable(
'ANSWER_IMAGE_URL', $this->
object->getImagePathWeb() . $answer->getImage());
463 list($width, $height, $type, $attr) = getimagesize($this->
object->getImagePath() . $answer->getImage());
464 $alt = $answer->getImage();
465 if (strlen($answer->getAnswertext())) {
466 $alt = $answer->getAnswertext();
468 $alt = preg_replace(
'/<[^>]*?>/',
'', $alt);
469 $template->setVariable(
'ATTR', $attr);
472 $template->parseCurrentBlock();
475 if ($show_specific_inline_feedback) {
478 $template->setCurrentBlock(
'answer_row');
479 $template->setVariable(
'ANSWER_ID', $answer_id);
481 if (strcmp($user_solution, $answer_id) == 0) {
482 $template->setVariable(
'CHECKED_ANSWER',
' checked="checked"');
484 $template->parseCurrentBlock();
486 $template->setVariable(
'QUESTIONTEXT', $this->
object->getQuestionForHTMLOutput());
487 $questionoutput = $template->get();
488 $pageoutput = $this->
outQuestionPage(
'', $is_question_postponed, $active_id, $questionoutput, $show_specific_inline_feedback);
499 $choice_keys = array_keys($this->
object->answers);
501 if ($this->
object->getShuffle()) {
502 $choice_keys = $this->
object->getShuffler()->transform($choice_keys);
517 $is_multi_line = $this->request_data_collector->string(
'types');
518 if ($is_multi_line ===
'') {
519 $is_multi_line =
'0';
521 $this->
object->setMultilineAnswerSetting($is_multi_line);
522 $this->
object->setShuffle($this->request_data_collector->bool(
'shuffle') ??
false);
524 $choice = $this->request_data_collector->raw(
'choice');
525 if (isset($choice[
'imagename']) && is_array($choice[
'imagename']) && $is_multi_line ===
'1') {
526 $this->
object->setIsSingleline(
true);
527 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'info_answer_type_change'),
true);
529 $this->
object->setIsSingleline($is_multi_line ===
'0');
532 $object_thumb_size = $this->
object->getThumbSize();
533 $thumb_size = $this->request_data_collector->int(
'thumb_size') ?? $object_thumb_size;
534 if ($thumb_size !== $object_thumb_size) {
535 $this->
object->setThumbSize($thumb_size);
536 $this->rebuild_thumbnails =
true;
544 $shuffle->setValue(1);
545 $shuffle->setChecked($this->
object->getShuffle());
546 $shuffle->setRequired(
false);
549 if (!$this->
object->getSelfAssessmentEditingMode()) {
555 0 => $this->
lng->txt(
'answers_singleline'),
556 1 => $this->
lng->txt(
'answers_multiline'),
559 $types->setValue($is_singleline ? 0 : 1);
563 if ($is_singleline) {
566 $thumb_size->
setSuffix($this->
lng->txt(
'thumb_size_unit_pixel'));
567 $thumb_size->setMinValue($this->
object->getMinimumThumbSize());
568 $thumb_size->setMaxValue($this->
object->getMaximumThumbSize());
569 $thumb_size->setDecimals(0);
570 $thumb_size->setSize(6);
571 $thumb_size->setInfo($this->
lng->txt(
'thumb_size_info'));
572 $thumb_size->setValue($this->
object->getThumbSize());
573 $thumb_size->setRequired(
true);
576 $thumb_size->setValue($this->
object->getThumbSize());
600 $this->
object->flushAnswers();
602 $this->request_data_collector->raw(
'choice') ?? [],
603 $this->
object->isSingleline() === false
606 if ($choice === []) {
610 if (!$this->
object->isSingleline()) {
611 foreach ($choice[
'answer'] as $index => $answer) {
612 $answertext = $answer;
613 $this->
object->addAnswer(
615 $choice[
'points'][$index],
618 $choice[
'answer_id'][$index]
625 foreach ($choice[
'answer'] as $index => $answertext) {
626 $answertext = htmlentities($answertext);
627 $picturefile = $choice[
'imagename'][$index] ??
null;
628 $file_org_name = $_FILES[
'choice'][
'name'][
'image'][$index] ??
'';
629 $file_temp_name = $_FILES[
'choice'][
'tmp_name'][
'image'][$index] ??
'';
631 if ($file_temp_name !==
'') {
633 $file_name_parts = explode(
'.', $file_org_name);
634 $suffix = strtolower(array_pop($file_name_parts));
635 if (in_array($suffix, [
'jpg',
'jpeg',
'png',
'gif'])) {
637 $filename = $this->
object->buildHashedImageFilename($file_org_name);
644 $points = (float) str_replace(
',',
'.', $choice[
'points'][$index]);
645 $this->
object->addAnswer(
650 $choice[
'answer_id'][$index]
654 if ($this->rebuild_thumbnails) {
655 $this->
object->setAnswers(
656 $this->
object->rebuildThumbnails(
657 $this->object->isSingleline(),
658 $this->
object->getThumbSize(),
659 $this->
object->getImagePath(),
660 $this->
object->getAnswers()
670 $choices->setQuestionObject($this->
object);
671 $choices->setSingleline($is_singleline);
672 $choices->setAllowMove(
false);
673 if ($this->
object->getSelfAssessmentEditingMode()) {
674 $choices->setSize(40);
676 if ($this->
object->getAnswerCount() == 0) {
677 $this->
object->addAnswer(
'', 0, 0);
681 $value->setAnswerText(html_entity_decode($value->getAnswerText()));
684 $this->
object->getAnswers()
704 private function aggregateAnswers($relevant_answers_chosen, $answers_defined_on_question): array
707 foreach ($answers_defined_on_question as $answer) {
708 $aggregated_info_for_answer = [];
709 $aggregated_info_for_answer[
'answertext'] = $answer->getAnswerText();
710 $aggregated_info_for_answer[
'count_checked'] = 0;
712 foreach ($relevant_answers_chosen as $relevant_answer) {
713 if ($relevant_answer[
'value1'] == $answer->getOrder()) {
714 $aggregated_info_for_answer[
'count_checked']++;
717 $aggregated_info_for_answer[
'count_unchecked'] =
718 ceil(count($relevant_answers_chosen) / count($answers_defined_on_question))
719 - $aggregated_info_for_answer[
'count_checked'];
721 $aggregate[] = $aggregated_info_for_answer;
733 $tpl =
new ilTemplate(
'tpl.il_as_aggregated_answers_table.html',
true,
true,
'components/ILIAS/TestQuestionPool');
743 foreach ($aggregate as $line_data) {
754 $feedbackOutputRequired =
false;
756 switch ($this->
object->getSpecificFeedbackSetting()) {
758 $feedbackOutputRequired =
true;
762 if (strcmp((
string) $user_solution, $answer_id) == 0) {
763 $feedbackOutputRequired =
true;
768 if ($this->
object->getAnswer($answer_id)->getPoints() > 0) {
769 $feedbackOutputRequired =
true;
774 if ($feedbackOutputRequired) {
775 $fb = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation($this->
object->getId(), 0, $answer_id);
777 $template->setCurrentBlock(
'feedback');
779 $template->parseCurrentBlock();
790 foreach ($agg as $ans) {
792 'answer' => $ans[
'answertext'],
793 'frequency' => $ans[
'count_checked']
804 $choices->setQuestionObject($this->
object);
805 $choices->setValues($this->
object->getAnswers());
815 $values = $input->getValues();
817 foreach ($this->
object->getAnswers() as $index => $answer) {
819 $points = (float) str_replace(
',',
'.', $values[$index]->getPoints());
820 $answer->setPoints($points);
isTestPresentationContext()
setAdditionalContentEditingModeFromPost()
hasCorrectSolution($activeId, $passIndex)
__construct(int $id=-1)
assSingleChoiceGUI constructor
populateQuestionSpecificFormPart(\ilPropertyFormGUI $form, bool $is_singleline=false)
generateCorrectnessIconsForCorrectness(int $correctness)
aggregateAnswers($relevant_answers_chosen, $answers_defined_on_question)
setCurrentBlock(string $blockname=self::DEFAULT_BLOCK)
Sets the template to the given block.
editQuestion(bool $checkonly=false, ?bool $is_save_cmd=null)
writeAnswerSpecificPostData(ilPropertyFormGUI $form)
Extracts the answer specific values from the request and applies them to the data object...
Class for answers with a binary state indicator.
getTestOutput(int $active_id, int $pass, bool $is_question_postponed=false, array|bool $user_post_solutions=false, bool $show_specific_inline_feedback=false)
populateInlineFeedback($template, $answer_id, $user_solution)
addBasicQuestionFormProperties(ilPropertyFormGUI $form)
renderAggregateView($aggregate)
parseCurrentBlock(string $blockname=self::DEFAULT_BLOCK)
Parses the given block.
const CSS_CLASS_FEEDBACK_CORRECT
ilGlobalPageTemplate $tpl
getSolutionOutput(int $active_id, ?int $pass=null, bool $graphical_output=false, bool $result_output=false, bool $show_question_only=true, bool $show_feedback=false, bool $show_correct_solution=false, bool $show_manual_scoring=false, bool $show_question_text=true, bool $show_inline_feedback=true)
getSpecificFeedbackOutput(array $user_solution)
getAnswersFrequency($relevantAnswers, $questionIndex)
populateTaxonomyFormSection(ilPropertyFormGUI $form)
addQuestionFormCommandButtons(ilPropertyFormGUI $form)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
writeQuestionGenericPostData()
getAfterParticipationSuppressionAnswerPostVars()
Returns a list of postvars which will be suppressed in the form output when used in scoring adjustmen...
Class for single choice questions.
writePostData(bool $always=false)
{}
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
getAfterParticipationSuppressionQuestionPostVars()
Returns a list of postvars which will be suppressed in the form output when used in scoring adjustmen...
populateAnswerSpecificFormPart(\ilPropertyFormGUI $form, bool $is_singleline=false)
static getHtmlPath(string $relative_path)
get url of path
const CSS_CLASS_FEEDBACK_WRONG
populateCorrectionsFormProperties(ilPropertyFormGUI $form)
saveTaxonomyAssignments()
getILIASPage(string $html="")
Returns the ILIAS Page around a question.
saveCorrectionsFormProperties(ilPropertyFormGUI $form)
outQuestionPage($a_temp_var, $a_postponed=false, $active_id="", $html="", $inlineFeedbackEnabled=false)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
cleanupAnswerText(array $answer_text, bool $is_rte)
sk - 12.05.2023: This is one more of those that we need, but don't want.
isRenderPurposePrintPdf()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getEditAnswersSingleLine($checkonly=false)
Get the single/multiline editing of answers.
setVariable(string $variable, $value='')
Sets the given variable to the given value.
renderSolutionOutput(mixed $user_solutions, int $active_id, ?int $pass, bool $graphical_output=false, bool $result_output=false, bool $show_question_only=true, bool $show_feedback=false, bool $show_correct_solution=false, bool $show_manual_scoring=false, bool $show_question_text=true, bool $show_autosave_title=false, bool $show_inline_feedback=false,)
getPreview(bool $show_question_only=false, bool $show_inline_feedback=false)
renderEditForm(ilPropertyFormGUI $form)
writeQuestionSpecificPostData(ilPropertyFormGUI $form)
Extracts the question specific values from the request and applies them to the data object...
renderPurposeSupportsFormHtml()
getGenericFeedbackOutput(int $active_id, ?int $pass)