19 declare(strict_types=1);
82 self::CMD_SAVE_AND_RETURN
164 $this->
lng = $DIC[
'lng'];
165 $this->tpl = $DIC[
'tpl'];
166 $this->
ctrl = $DIC[
'ilCtrl'];
167 $this->
ui = $DIC->ui();
168 $this->ilObjDataCache = $DIC[
'ilObjDataCache'];
169 $this->
access = $DIC->access();
170 $this->
ilHelp = $DIC[
'ilHelp'];
171 $this->tabs_gui = $DIC[
'ilTabs'];
172 $this->rbacsystem = $DIC[
'rbacsystem'];
173 $this->tree = $DIC[
'tree'];
174 $this->db = $DIC->database();
175 $this->
logger = $DIC[
'ilLog'];
176 $this->component_repository = $DIC[
'component.repository'];
179 $local_dic = QuestionPoolDIC::dic();
181 $this->request_data_collector = $local_dic[
'request_data_collector'];
182 $this->questionrepository = $local_dic[
'question.general_properties.repository'];
184 $this->errormessage = $this->
lng->txt(
"fill_out_all_required_fields");
185 $this->notes_gui = $DIC->notes()->gui();
189 bool $checkonly =
false,
190 ?
bool $is_save_cmd =
null 202 bool $graphical_output =
false,
203 bool $result_output =
false,
204 bool $show_question_only =
true,
205 bool $show_feedback =
false,
206 bool $show_correct_solution =
false,
207 bool $show_manual_scoring =
false,
208 bool $show_question_text =
true,
209 bool $show_inline_feedback =
true 213 bool $show_question_only =
false,
214 bool $show_inline_feedback =
false 220 bool $is_question_postponed =
false,
221 array|
bool $user_post_solutions =
false,
222 bool $show_specific_inline_feedback =
false 226 mixed $user_solutions,
229 bool $graphical_output =
false,
230 bool $result_output =
false,
231 bool $show_question_only =
true,
232 bool $show_feedback =
false,
233 bool $show_correct_solution =
false,
234 bool $show_manual_scoring =
false,
235 bool $show_question_text =
true,
236 bool $show_autosave_title =
false,
237 bool $show_inline_feedback =
false,
258 $this->
object = $question;
263 $this->copy_to_existing_pool_on_save = $pool_ref_id;
273 $this->copy_to_new_pool_on_save = $pool_title;
283 $this->move_after_question_with_id = $question_id;
302 echo $this->
getHeaderAction() . $this->
ui->mainTemplate()->getOnLoadCodeForAsynch();
308 $parentObjType = $this->ilObjDataCache->lookupType($this->
object->getObjId());
314 $this->request_data_collector->getRefId(),
315 $this->
object->getObjId()
320 $ha = $dispatcher->initHeaderAction();
321 $ha->enableComments(
true,
false);
323 return $ha->getHeaderAction($this->
ui->mainTemplate());
328 $comment_gui =
new ilCommentGUI($this->
object->getObjId(), $this->
object->getId(),
'quest');
334 $this->
ilHelp->setScreenIdComponent(
'qpl');
336 $next_class = $this->
ctrl->getNextClass($this);
338 switch ($next_class) {
339 case 'ilformpropertydispatchgui':
342 $form_prop_dispatch->setItem($form->getItemByPostVar(
ilUtil::stripSlashes($this->request_data_collector->string(
'postvar'))));
343 $this->
ctrl->forwardCommand($form_prop_dispatch);
346 $cmd = $this->
ctrl->getCmd(
'editQuestion');
348 case self::SUGGESTED_SOLUTION_COMMANDS_CANCEL:
349 case self::SUGGESTED_SOLUTION_COMMANDS_SAVE:
350 case self::SUGGESTED_SOLUTION_COMMANDS_DEFAULT:
351 case 'saveSuggestedSolutionType':
352 case 'saveContentsSuggestedSolution':
353 case 'deleteSuggestedSolution':
355 case 'cancelExplorer':
356 case 'outSolutionExplorer':
362 case self::CMD_SYNC_QUESTION:
363 case self::CMD_SYNC_QUESTION_AND_RETURN:
368 if (method_exists($this, $cmd)) {
377 return static::HAS_SPECIAL_QUESTION_COMMANDS;
537 if (is_object($this->
object)) {
561 $this->tpl->setContent(implode(
'<br />', [
562 $stats_table->getHTML(),
563 $usage_table->getHTML()
573 $ilCtrl = $DIC[
'ilCtrl'];
574 $ilDB = $DIC[
'ilDB'];
577 if (($question_type ===
'') && ($question_id > 0)) {
578 $question_type = QuestionPoolDIC::dic()[
'question.general_properties.repository']
579 ->getForQuestionId($question_id)?->getClassName();
582 if ($question_type ===
null || $question_type ===
'') {
586 $question_type_gui = $question_type .
'GUI';
587 $question =
new $question_type_gui();
590 $question->object->feedbackOBJ =
new $feedbackObjectClassname($question->object, $ilCtrl,
$ilDB, $lng);
592 if ($question_id > 0) {
593 $question->object->loadFromDb($question_id);
614 if (!$this->tpl->blockExists(
'content')) {
615 $this->tpl->addBlockFile(
"CONTENT",
"content",
"tpl.il_as_qpl_content.html",
"components/ILIAS/TestQuestionPool");
618 if (!$this->tpl->blockExists(
'statusline')) {
619 $this->tpl->addBlockFile(
"STATUSLINE",
"statusline",
"tpl.statusline.html");
622 if (!$this->tpl->blockExists(
'adm_content')) {
623 $this->tpl->addBlockFile(
"ADM_CONTENT",
"adm_content",
"tpl.il_as_question.html",
"components/ILIAS/TestQuestionPool");
641 [$this->
object->getId() => $html]
643 $presentation = $page_gui->presentation();
644 $presentation = preg_replace(
"/src=\"\\.\\//ims",
"src=\"" . ILIAS_HTTP_PATH .
"/", $presentation);
645 return $presentation;
648 public function outQuestionPage($a_temp_var, $a_postponed =
false, $active_id =
"", $html =
"", $inlineFeedbackEnabled =
false): string
650 if ($this->
object->getTestPresentationConfig()->isSolutionInitiallyPrefilled()) {
654 } elseif ($this->
object->getTestPresentationConfig()->isUnchangedAnswerPossible()) {
658 $this->
lng->loadLanguageModule(
"content");
662 $page_gui->setTemplateTargetVar($a_temp_var);
666 $page_gui->setQuestionActionsHTML($this->
getNavigationGUI()->getActionsHTML());
670 $page_gui->setQuestionHTML([$this->
object->getId() => $html]);
673 $page_gui->setPresentationTitle($this->questionHeaderBlockBuilder->getPresentationTitle());
674 $page_gui->setQuestionInfoHTML($this->questionHeaderBlockBuilder->getQuestionInfoHTML());
676 return $page_gui->presentation();
681 $tpl =
new ilTemplate(
'tpl.tst_question_additional_behaviour_checkbox.html',
true,
true,
'components/ILIAS/TestQuestionPool');
682 $tpl->
setVariable(
'TXT_FORCE_FORM_DIFF_LABEL', $this->
object->getTestPresentationConfig()->getUseUnchangedAnswerLabel());
688 return $this->
lng->txt(
'use_previous_solution_advice');
693 $tpl =
new ilTemplate(
'tpl.tst_question_additional_behaviour_checkbox.html',
true,
true,
'components/ILIAS/TestQuestionPool');
694 $tpl->
setVariable(
'TXT_FORCE_FORM_DIFF_LABEL', $this->
lng->txt(
'use_previous_solution'));
700 $original_id = $this->
object->getOriginalId();
701 if ($original_id !==
null) {
702 $this->
object->syncWithOriginal();
703 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"msg_obj_modified"),
true);
709 $old_id = $this->request_data_collector->getQuestionId();
713 $this->tabs_gui->setTabActive(
'edit_question');
717 $this->
object->getCurrentUser()->setPref(
'tst_lastquestiontype', $this->
object->getQuestionType());
718 $this->
object->getCurrentUser()->writePref(
'tst_lastquestiontype', $this->
object->getQuestionType());
719 $this->
object->saveToDb($old_id);
721 $this->questionrepository->questionExistsInPool($this->
object->getOriginalId());
722 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_obj_modified'),
true);
730 $this->tabs_gui->activateTab(
'edit_question');
736 $this->
object->getCurrentUser()->setPref(
'tst_lastquestiontype', $this->
object->getQuestionType());
737 $this->
object->getCurrentUser()->writePref(
'tst_lastquestiontype', $this->
object->getQuestionType());
739 if ($this->request_data_collector->getQuestionId() === 0) {
740 if ($this->
object->getId() < 1) {
741 $this->
object->createNewQuestion();
747 $cmd = strpos($this->
ctrl->getCmd(),
'Return') ===
false 748 ? self::CMD_SYNC_QUESTION
749 : self::CMD_SYNC_QUESTION_AND_RETURN;
753 $this->
object->saveToDb();
759 $additional_content_editing_mode = $this->request_data_collector->string(
'additional_content_editing_mode');
760 if ($additional_content_editing_mode !==
'' 761 && in_array($additional_content_editing_mode, $this->
object->getValidAdditionalContentEditingModes())) {
762 $this->
object->setAdditionalContentEditingMode($additional_content_editing_mode);
768 if ($this->request_data_collector->isset(
'pool_ref')) {
769 $this->copy_to_existing_pool_on_save = $this->request_data_collector->int(
'pool_ref');
772 if ($this->request_data_collector->isset(
'pool_title')) {
773 $this->copy_to_new_pool_on_save = $this->request_data_collector->string(
'pool_title');
776 if ($this->request_data_collector->isset(
'move_after_question_with_id')) {
777 $this->move_after_question_with_id = $this->request_data_collector->int(
'move_after_question_with_id');
784 public function getContextPath($cont_obj,
int $a_endnode_id,
int $a_startnode_id = 1): string
788 $tmpPath = $cont_obj->getLMTree()->getPathFull($a_endnode_id, $a_startnode_id);
791 for ($i = 1; $i < (count($tmpPath) - 1); $i++) {
796 $path .= $tmpPath[$i][
"title"];
804 $this->sequence_no = $nr;
814 $this->question_count = $a_question_count;
834 $this->errormessage .= ((strlen($this->errormessage)) ?
"<br />" :
"") .
$errormessage;
839 return $this->
object->getQuestionType();
845 if (strlen($a_value)) {
846 $result =
" value=\"$a_value\" ";
853 if (!$this->
object->getSelfAssessmentEditingMode()) {
862 $title->setMaxLength(100);
863 $title->setValue($this->
object->getTitle());
864 $title->setRequired(
true);
867 if (!$this->
object->getSelfAssessmentEditingMode()) {
870 $author->setValue($this->
object->getAuthor());
871 $author->setMaxLength(512);
872 $author->setRequired(
true);
877 $description->setValue($this->
object->getComment());
878 $description->setRequired(
false);
879 $description->setMaxLength(1000);
885 if (trim($author) ==
"") {
888 $hi->setValue($author);
901 $question->setRequired(
true);
902 $question->setRows(10);
903 $question->setCols(80);
905 if (!$this->
object->getSelfAssessmentEditingMode()) {
907 $question->setUseRte(
true);
909 $question->setRTESupport($this->
object->getId(),
'qpl',
'assessment');
913 $question->setUseTagsForRteOnly(
false);
919 $form->
addItem($question_type);
921 if ($this->copy_to_existing_pool_on_save !==
null) {
923 $pool_ref->setValue((
string) $this->copy_to_existing_pool_on_save);
927 if ($this->copy_to_new_pool_on_save !==
null) {
929 $pool_title->setValue($this->copy_to_new_pool_on_save);
933 if ($this->move_after_question_with_id !==
null) {
934 $move_after_question_id =
new ilHiddenInputGUI(
'move_after_question_with_id');
935 $move_after_question_id->setValue((
string) $this->move_after_question_with_id);
936 $form->
addItem($move_after_question_id);
939 $additional_content_editing_mode =
new ilHiddenInputGUI(
'additional_content_editing_mode');
940 $additional_content_editing_mode->setValue($this->
object->getAdditionalContentEditingMode());
941 $form->
addItem($additional_content_editing_mode);
948 if (!$this->
object->getSelfAssessmentEditingMode()) {
952 $nr_tries = $this->
object->getNrOfTries() ?? $this->
object->getDefaultNrOfTries();
962 $ni->setMaxLength(5);
970 $postvar =
"tax_node_assign_$taxonomyId";
974 $tax_node_assign->saveInput(
"qpl", $this->
object->getObjId(),
"quest", $this->
object->getId());
983 $sectHeader->setTitle($this->
lng->txt(
'qpl_qst_edit_form_taxonomy_section'));
988 $label = sprintf($this->
lng->txt(
'qpl_qst_edit_form_taxonomy'), $taxonomy->getTitle());
989 $postvar =
"tax_node_assign_$taxonomyId";
998 $taxSelect->setValue(
array_map(
function ($assignedNode) {
999 return $assignedNode[
'node_id'];
1000 }, $assignedNodes));
1013 if ($manual_feedback !==
'') {
1014 return $manual_feedback;
1017 $correct_feedback = $this->
object->feedbackOBJ->getGenericFeedbackTestPresentation($this->
object->getId(),
true);
1018 $incorrect_feedback = $this->
object->feedbackOBJ->getGenericFeedbackTestPresentation($this->
object->getId(),
false);
1019 if ($correct_feedback . $incorrect_feedback !==
'') {
1023 if ($this->
object->isAdditionalContentEditingModePageObject()) {
1030 string $feedback_correct,
1031 string $feedback_incorrect,
1035 if ($pass ===
null) {
1038 $reached_points = $this->
object->calculateReachedPoints($active_id, $pass);
1039 $max_points = $this->
object->getMaximumPoints();
1040 if ($reached_points == $max_points) {
1041 return $feedback_correct;
1044 return $feedback_incorrect;
1050 $this->
object->feedbackOBJ->getGenericFeedbackTestPresentation($this->object->getId(),
true),
1058 $this->
object->feedbackOBJ->getGenericFeedbackTestPresentation($this->object->getId(),
false),
1065 $count = $this->questionrepository->usageCount($this->
object->getId());
1067 if ($this->questionrepository->questionExistsInPool($this->object->getId()) && $count) {
1068 if ($this->rbacsystem->checkAccess(
"write", $this->request_data_collector->getRefId())) {
1069 $this->tpl->setOnScreenMessage(
'info', sprintf($this->
lng->txt(
"qpl_question_is_in_use"), $count));
1073 return $this->questionrepository->getForQuestionId($this->
object->getId())->getTypeName($this->
lng);
1078 foreach (SuggestedSolution::TYPES as $k => $v) {
1079 $options[$k] = $this->
lng->txt($v);
1096 if ($save && $this->request_data_collector->int(
'deleteSuggestedSolution') === 1) {
1097 $this->
object->deleteSuggestedSolutions();
1098 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"msg_obj_modified"),
true);
1099 $this->
ctrl->redirect($this,
'suggestedsolution');
1104 $solution = $this->
object->getSuggestedSolution();
1107 $solution_type = $this->
ctrl->getCmd() ===
'cancelSuggestedSolution' 1108 ? $solution->getType()
1109 : $this->request_data_collector->string(
'solutiontype');
1110 if ($solution_type === SuggestedSolution::TYPE_FILE
1111 && ($solution ===
null || $solution->getType() !== SuggestedSolution::TYPE_FILE)
1115 SuggestedSolution::TYPE_FILE
1119 $solution_filename = $this->request_data_collector->string(
'filename');
1120 if ($save && !empty($solution_filename)) {
1121 $solution = $solution->withTitle($solution_filename);
1124 if ($solution !==
null) {
1126 $form->setFormAction($this->
ctrl->getFormAction($this));
1127 $form->setTitle($this->
lng->txt(
'solution_hint'));
1128 $form->setMultipart(
true);
1129 $form->setTableWidth(
'100%');
1130 $form->setId(
'suggestedsolutiondisplay');
1134 'tpl.il_as_qpl_suggested_solution_input_presentation.html',
1137 'components/ILIAS/TestQuestionPool' 1140 if ($solution->isOfTypeLink()) {
1141 $href = $this->
object->getInternalLinkHref($solution->getInternalLink());
1142 $template->setCurrentBlock(
'preview');
1143 $template->setVariable(
'TEXT_SOLUTION', $this->
lng->txt(
'suggested_solution'));
1144 $template->setVariable(
1146 " <a href='{$href}' target='content'>{$this->lng->txt('view')}</a> " 1148 $template->parseCurrentBlock();
1150 $solution->isOfTypeFile()
1151 && $solution->getFilename()
1153 $href = $this->
object->getSuggestedSolutionPathWeb() . $solution->getFilename();
1154 $link =
" <a href='{$href}' target='content'>" 1157 $template->setCurrentBlock(
'preview');
1158 $template->setVariable(
'TEXT_SOLUTION', $this->
lng->txt(
'suggested_solution'));
1159 $template->setVariable(
'VALUE_SOLUTION', $link);
1160 $template->parseCurrentBlock();
1163 $template->setVariable(
'TEXT_TYPE', $this->
lng->txt(
'type'));
1164 $template->setVariable(
'VALUE_TYPE', $options[$solution->getType()]);
1166 $title->
setHtml($template->get());
1168 $deletesolution->setOptionTitle($this->
lng->txt(
'deleteSuggestedSolution'));
1169 $title->addSubItem($deletesolution);
1170 $form->addItem($title);
1172 if ($solution->isOfTypeFile()) {
1175 $file->enableFileNameSelection(
'filename');
1177 if ($save && $_FILES && $_FILES[
'file'][
'tmp_name'] && $file->checkInput()) {
1178 if (!file_exists($this->
object->getSuggestedSolutionPath())) {
1183 $_FILES[
'file'][
'tmp_name'],
1184 $_FILES[
'file'][
'name'],
1185 $this->
object->getSuggestedSolutionPath() . $_FILES[
'file'][
'name']
1191 if ($solution->getFilename()) {
1192 @unlink($this->
object->getSuggestedSolutionPath() . $solution->getFilename());
1195 $file->setValue($_FILES[
'file'][
'name']);
1196 $solution = $solution
1197 ->withFilename($_FILES[
'file'][
'name'])
1198 ->withMime($_FILES[
'file'][
'type'])
1199 ->withSize($_FILES[
'file'][
'size'])
1200 ->withTitle($this->request_data_collector->string(
'filename'));
1204 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'suggested_solution_added_successfully'),
true);
1205 $this->
ctrl->redirect($this,
'suggestedsolution');
1208 $this->tpl->setOnScreenMessage(
'info', $res);
1211 if ($solution->getFilename()) {
1212 $file->setValue($solution->getFilename());
1213 $file->setFilename($solution->getTitle());
1216 $form->addItem($file);
1218 $hidden->setValue(
'file');
1219 $form->addItem($hidden);
1221 if ($this->
access->checkAccess(
'write',
'', $this->request_data_collector->getRefId())) {
1222 $form->addCommandButton(
'cancelSuggestedSolution', $this->
lng->txt(
'cancel'));
1223 $form->addCommandButton(
'saveSuggestedSolution', $this->
lng->txt(
'save'));
1227 if ($form->checkInput()) {
1228 if ($solution->isOfTypeFile()) {
1229 $solution = $solution->withTitle($this->request_data_collector->string(
'filename'));
1232 if (!$solution->isOfTypeLink()) {
1236 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_obj_modified'),
true);
1237 $this->
ctrl->redirect($this,
'suggestedsolution');
1241 $output = $form->getHTML();
1244 $savechange = $this->
ctrl->getCmd() ===
'saveSuggestedSolutionType';
1247 if ($this->
access->checkAccess(
'write',
'', $this->request_data_collector->getRefId())) {
1249 $formchange->setFormAction($this->
ctrl->getFormAction($this));
1251 $title = $solution ? $this->
lng->txt(
'changeSuggestedSolution') : $this->
lng->txt(
'addSuggestedSolution');
1252 $formchange->setTitle($title);
1253 $formchange->setMultipart(
false);
1254 $formchange->setTableWidth(
'100%');
1255 $formchange->setId(
'suggestedsolution');
1258 foreach ($options as $opt_value => $opt_caption) {
1262 $solutiontype->setValue($solution->getType());
1264 $solutiontype->setRequired(
true);
1265 $formchange->addItem($solutiontype);
1267 $formchange->addCommandButton(
'saveSuggestedSolutionType', $this->
lng->txt(
'select'));
1270 $formchange->checkInput();
1272 $changeoutput = $formchange->getHTML();
1274 $this->tabs_gui->activateTab(
'suggested_solution');
1275 $this->tpl->setVariable(
'ADM_CONTENT', $changeoutput . $output);
1280 $type = $this->request_data_collector->string(
"link_new_type");
1281 $search = $this->request_data_collector->string(
"search_link_type");
1282 $this->
ctrl->setParameter($this,
"link_new_type", $type);
1283 $this->
ctrl->setParameter($this,
"search_link_type", $search);
1284 $this->
ctrl->saveParameter($this, [
"subquestion_index",
"link_new_type",
"search_link_type"]);
1286 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"select_object_to_link"));
1288 $parent_ref_id = $this->tree->getParentId($this->request_data_collector->getRefId());
1290 $exp->
setExpand($this->request_data_collector->raw(
'expand_sol') ? $this->request_data_collector->raw(
'expand_sol') : $parent_ref_id);
1291 $exp->setExpandTarget($this->
ctrl->getLinkTarget($this,
'outSolutionExplorer'));
1292 $exp->setTargetGet(
"ref_id");
1293 $exp->setRefId($this->request_data_collector->getRefId());
1294 $exp->addFilter($type);
1295 $exp->setSelectableType($type);
1296 if ($this->request_data_collector->isset(
'expandCurrentPath') && $this->request_data_collector->raw(
'expandCurrentPath')) {
1297 $exp->expandPathByRefId($parent_ref_id);
1303 $template =
new ilTemplate(
"tpl.il_as_qpl_explorer.html",
true,
true,
"components/ILIAS/TestQuestionPool");
1304 $template->setVariable(
"EXPLORER_TREE", $exp->getOutput());
1305 $template->setVariable(
"BUTTON_CANCEL", $this->
lng->txt(
"cancel"));
1306 $template->setVariable(
"FORMACTION", $this->
ctrl->getFormAction($this,
"suggestedsolution"));
1307 $this->tpl->setVariable(
"ADM_CONTENT", $template->get());
1312 $solution_type = $this->request_data_collector->string(
'solutiontype');
1314 switch ($solution_type) {
1338 if (isset($solution_type)) {
1339 $this->
ctrl->setParameter($this,
'expandCurrentPath', 1);
1341 $this->
ctrl->setParameter($this,
'link_new_type', $type);
1342 $this->
ctrl->setParameter($this,
'search_link_type', $search);
1343 $this->
ctrl->redirect($this,
'outSolutionExplorer');
1348 $this->
ctrl->redirect($this,
'suggestedsolution');
1353 $this->
ctrl->setParameter($this,
'q_id', $this->
object->getId());
1355 $cont_obj_gui =
new ilObjContentObjectGUI(
'', $this->request_data_collector->int(
'source_id'),
true);
1359 $tree = $cont_obj->getLMTree();
1364 foreach ($chapters as $chapter) {
1366 foreach ($chapterpages as $page) {
1367 if ($page[
'type'] == $this->request_data_collector->raw(
'search_link_type')) {
1368 array_push($shownpages, $page[
'obj_id']);
1370 if ($tree->
isInTree($page[
'obj_id'])) {
1376 $this->
ctrl->setParameter($this, $page[
'type'], $page[
'obj_id']);
1378 'title' => $page[
'title'],
1380 'text_add' => $this->
lng->txt(
'add'),
1381 'href_add' => $this->
ctrl->getLinkTarget($this,
'add' . strtoupper($page[
'type']))
1386 foreach ($pages as $page) {
1387 if (!in_array($page[
'obj_id'], $shownpages)) {
1388 $this->
ctrl->setParameter($this, $page[
'type'], $page[
'obj_id']);
1390 'title' => $page[
'title'],
1391 'description' =>
'---',
1392 'text_add' => $this->
lng->txt(
'add'),
1393 'href_add' => $this->
ctrl->getLinkTarget($this,
'add' . strtoupper($page[
'type']))
1399 $table->setTitle($this->
lng->txt(
'obj_' .
ilUtil::stripSlashes($this->request_data_collector->string(
'search_link_type'))));
1400 $table->setData($rows);
1402 $this->tpl->setContent($table->getHTML());
1407 $this->
ctrl->setParameter($this,
'q_id', $this->
object->getId());
1409 $cont_obj_gui =
new ilObjContentObjectGUI(
'', $this->request_data_collector->int(
'source_id'),
true);
1411 $ctree = $cont_obj->getLMTree();
1412 $nodes = $ctree->getSubtree($ctree->getNodeData($ctree->getRootId()));
1416 foreach ($nodes as $node) {
1417 if ($node[
'type'] == $this->request_data_collector->raw(
'search_link_type')) {
1418 $this->
ctrl->setParameter($this, $node[
'type'], $node[
'obj_id']);
1420 'title' => $node[
'title'],
1421 'description' =>
'',
1422 'text_add' => $this->
lng->txt(
'add'),
1423 'href_add' => $this->
ctrl->getLinkTarget($this,
'add' . strtoupper($node[
'type']))
1429 $table->setTitle($this->
lng->txt(
'obj_' .
ilUtil::stripSlashes($this->request_data_collector->string(
'search_link_type'))));
1430 $table->setData($rows);
1432 $this->tpl->setContent($table->getHTML());
1437 $this->
ctrl->setParameter($this,
'q_id', $this->
object->getId());
1439 $glossary =
new ilObjGlossary($this->request_data_collector->int(
'source_id'),
true);
1444 foreach ($terms as $term) {
1445 $this->
ctrl->setParameter($this,
'git', $term[
'id']);
1447 'title' => $term[
'term'],
1448 'description' =>
'',
1449 'text_add' => $this->
lng->txt(
'add'),
1450 'href_add' => $this->
ctrl->getLinkTarget($this,
'addGIT')
1455 $table->setTitle($this->
lng->txt(
'glossary_term'));
1456 $table->setData($rows);
1458 $this->tpl->setContent($table->getHTML());
1464 $question_id = $this->
object->getId();
1465 $subquestion_index = $this->request_data_collector->int(
'subquestion_index');
1466 $subquestion_index = ($subquestion_index > 0) ? $subquestion_index : 0;
1468 $solution = $repo->create($question_id, $type)
1469 ->withSubquestionIndex($subquestion_index)
1470 ->withInternalLink($target);
1472 $repo->update([$solution]);
1477 $this->
ctrl->saveParameter($this, [
"subquestion_index",
"link_new_type",
"search_link_type"]);
1478 switch ($this->request_data_collector->string(
"search_link_type")) {
1489 $target =
"il__lm_" . $this->request_data_collector->raw(
"source_id");
1491 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"suggested_solution_added_successfully"),
true);
1492 $this->
ctrl->redirect($this,
'suggestedsolution');
1499 $target =
"il__pg_" . $this->request_data_collector->raw(
"pg");
1501 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"suggested_solution_added_successfully"),
true);
1502 $this->
ctrl->redirect($this,
'suggestedsolution');
1507 $target =
"il__st_" . $this->request_data_collector->raw(
"st");
1509 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"suggested_solution_added_successfully"),
true);
1510 $this->
ctrl->redirect($this,
'suggestedsolution');
1515 $target =
"il__git_" . $this->request_data_collector->raw(
"git");
1517 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"suggested_solution_added_successfully"),
true);
1518 $this->
ctrl->redirect($this,
'suggestedsolution');
1523 return in_array($this->
ctrl->getCmd(), self::QUESTION_SAVE_CMDS);
1527 string $guiClassName,
1528 string $cmdConstantNameBegin =
'CMD_' 1537 foreach ($reflectionClass->getConstants() as $constName => $constValue) {
1538 if (substr($constName, 0, strlen($cmdConstantNameBegin)) == $cmdConstantNameBegin) {
1539 $commands[] = $constValue;
1549 $this->tabs_gui->clearTargets();
1551 if ($this->
object->getId() > 0) {
1560 $this->
ctrl->setParameterByClass(ilAssQuestionPageGUI::class,
'q_id', $this->
object->getId());
1561 $this->
ctrl->setParameterByClass(static::class,
'q_id', $this->
object->getId());
1575 $this->
ctrl->setParameterByClass($classname,
'q_id', $this->
object->getId());
1577 'suggested_solution',
1578 $this->
ctrl->getLinkTargetByClass($classname,
'suggestedsolution'),
1580 'suggestedsolution',
1581 'saveSuggestedSolution',
1582 'outSolutionExplorer',
1584 'addSuggestedSolution',
1587 'removeSuggestedSolution' 1599 return [
'editQuestion',
'save',
'originalSyncForm'];
1609 $tabCommands = self::getCommandsFromClassConstants(ilAssQuestionFeedbackEditingGUI::class);
1611 $this->
ctrl->setParameterByClass(ilAssQuestionFeedbackEditingGUI::class,
'q_id', $this->
object->getId());
1614 $tabs->
addTarget(
'feedback', $tabLink, $tabCommands, $this->
ctrl->getCmdClass(),
'');
1619 switch (strtolower($this->
ctrl->getCmdClass())) {
1620 case 'ilassquestionhintsgui':
1621 $tab_commands = self::getCommandsFromClassConstants(ilAssQuestionHintsGUI::class);
1624 case 'ilassquestionhintgui':
1625 $tab_commands = self::getCommandsFromClassConstants(ilAssQuestionHintGUI::class);
1632 $this->
ctrl->setParameterByClass(ilAssQuestionHintsGUI::class,
'q_id', $this->
object->getId());
1634 'tst_question_hints_tab',
1637 $this->
ctrl->getCmdClass(),
1646 $this->
ctrl->getLinkTargetByClass(
1659 $reachedPoints = $this->
object->getAdjustedReachedPoints((
int) $activeId, (
int) $passIndex,
true);
1660 $maximumPoints = $this->
object->getMaximumPoints();
1662 return $reachedPoints == $maximumPoints;
1672 $this->
object->setTitle($this->request_data_collector->string(
'title'));
1673 $this->
object->setAuthor($this->request_data_collector->string(
'author'));
1674 $this->
object->setComment($this->request_data_collector->string(
'comment'));
1676 $nr_of_tries = $this->request_data_collector->int(
'nr_of_tries');
1677 if ($this->
object->getSelfAssessmentEditingMode()) {
1678 $this->
object->setNrOfTries($nr_of_tries);
1683 $this->request_data_collector->string(
'lifecycle')
1689 $this->
object->setQuestion(
1691 $this->request_data_collector->string(
'question')
1702 bool $is_question_postponed =
false,
1703 array|
bool $user_post_solutions =
false,
1704 bool $show_specific_inline_feedback =
false 1711 $is_question_postponed,
1712 $user_post_solutions,
1713 $show_specific_inline_feedback
1718 $this->tpl->setVariable(
"QUESTION_OUTPUT", $test_output);
1719 $this->tpl->setVariable(
"FORMACTION", $formaction);
1721 $this->tpl->setVariable(
"FORM_TIMESTAMP", (
string) time());
1725 string $form_action,
1729 return $form_action;
1739 return self::FORM_ENCODING_URLENCODE;
1744 if ($this->
object->getId() <= 0) {
1746 $this->
lng->txt(
'cancel'),
1747 $this->
ctrl->getParentReturnByClass(
1755 $this->
ctrl->setParameterByClass(
1756 ilAssQuestionPreviewGUI::class,
1760 $this->
ctrl->saveParameterByClass(ilAssQuestionPreviewGUI::class,
'prev_qid');
1762 $this->
lng->txt(
'backtocallingpage'),
1763 $this->
ctrl->getLinkTargetByClass(
1764 ilAssQuestionPreviewGUI::class,
1768 $this->
ctrl->clearParameterByClass(ilAssQuestionPreviewGUI::class,
'prev_qid');
1787 $form->setFormAction($this->
ctrl->getFormAction($this));
1788 $form->setId($this->
getType());
1790 $form->setTableWidth(
'100%');
1791 $form->setMultipart(
true);
1802 return str_replace([
'{',
'}'], [
'{',
'}'], $text);
1813 return '<div id="focus"></div>';
1834 $table->setQuestionIndex($questionIndex);
1836 $table->initColumns();
1855 switch ($correctness) {
1856 case self::CORRECTNESS_NOT_OK:
1857 $icon_name =
'standard/icon_not_ok.svg';
1858 $label = $this->
lng->txt(
"answer_is_wrong");
1860 case self::CORRECTNESS_MOSTLY_OK:
1861 $icon_name =
'standard/icon_ok.svg';
1862 $label = $this->
lng->txt(
"answer_is_not_correct_but_positive");
1864 case self::CORRECTNESS_OK:
1865 $icon_name =
'standard/icon_ok.svg';
1866 $label = $this->
lng->txt(
"answer_is_right");
1872 $icon = $this->
ui->factory()->symbol()->icon()->custom(
1876 return $this->
ui->renderer()->render($icon);
1888 ?
string $txt_output,
1889 bool $prepare_for_latex_output =
false,
1890 bool $omitNl2BrWhenTextArea =
false 1892 if ($txt_output ===
null || $txt_output ===
'') {
1896 $result = $txt_output;
1899 if (strlen(strip_tags($result)) < strlen($result)) {
1905 if (!$omitNl2BrWhenTextArea) {
1907 $result = preg_replace(
"/[\n]/",
"<br />", $result);
1911 if (preg_match_all(
"/(<pre>.*?<\/pre>)/ims", $result, $matches)) {
1912 foreach ($matches[0] as $found) {
1914 if (strpos(
"\n", $found) ===
false) {
1915 $replacement =
"\n";
1917 $removed = preg_replace(
"/<br\s*?\/>/ims", $replacement, $found);
1918 $result = str_replace($found, $removed, $result);
1925 if ($prepare_for_latex_output) {
1930 if ($prepare_for_latex_output) {
1933 $result = str_replace(
"{",
"{", $result);
1934 $result = str_replace(
"}",
"}", $result);
1935 $result = str_replace(
"\\",
"\", $result);
1944 if (is_null($this->suggestedsolution_repo)) {
1945 $dic = QuestionPoolDIC::dic();
1946 $this->suggestedsolution_repo =
$dic[
'question.repo.suggestedsolutions'];
1957 if (!is_array($answer_text)) {
1972 self::ALLOWED_PLAIN_TEXT_TAGS
1982 $this->parent_type_is_lm = $flag;
1987 $this->tpl->addOnloadCode(
" 1988 let form = document.querySelector('#ilContentContainer form'); 1989 let button = form.querySelector('input[name=\"cmd[save]\"]'); 1990 if (form && button) { 1991 form.addEventListener('keydown', function (e) { 1992 if (e.key === 'Enter' 1993 && e.target.type !== 'textarea' 1994 && e.target.type !== 'submit' 1995 && e.target.type !== 'file' 1998 form.requestSubmit(button); 2007 return in_array($cmd, static::ADDITIONAL_CMDS_NEEDING_EXISTING_QST);
2012 $this->context_allows_sync_to_pool = $sync_allowed;
2017 return $this->context_allows_sync_to_pool
2018 && $this->
object->hasWritableOriginalInQuestionPool();
2023 if ($cmd_class ===
'') {
2024 $cmd_class = static::class;
2026 $modal = $this->
ui->factory()->modal()->interruptive(
2027 $this->
lng->txt(
'confirm'),
2028 $this->
lng->txt(
'confirm_sync_questions'),
2029 $this->
ctrl->getFormActionByClass($cmd_class, $cmd)
2030 )->withAffectedItems([
2031 $this->
ui->factory()->modal()->interruptiveItem()->standard(
2032 (
string) $this->
object->getOriginalId(),
2033 $this->
object->getTitleForHTMLOutput()
2035 ])->withActionButtonLabel($this->
lng->txt(
'sync_question_to_pool'));
2036 return $this->
ui->renderer()->render(
2037 $modal->withOnLoad($modal->getShowSignal())
2044 bool $graphical_output =
false,
2045 bool $result_output =
false,
2046 bool $show_question_only =
true,
2047 bool $show_feedback =
false,
2048 bool $show_correct_solution =
false,
2049 bool $show_manual_scoring =
false,
2050 bool $show_question_text =
true,
2051 bool $show_autosave_title =
false,
2052 bool $show_inline_feedback =
false 2054 $autosave_solutions = $this->
object->getSolutionValues($active_id, $pass,
false);
2055 if ($autosave_solutions === []) {
2059 $autosave_solutions,
2064 $show_question_only,
2066 $show_correct_solution,
2067 $show_manual_scoring,
2068 $show_question_text,
2069 $show_autosave_title,
2070 $show_inline_feedback
isTestPresentationContext()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const ADDITIONAL_CONTENT_EDITING_MODE_IPE
setAdditionalContentEditingModeFromPost()
hasCorrectSolution($activeId, $passIndex)
saveCorrectionsFormProperties(ilPropertyFormGUI $form)
This class represents an option in a radio group.
static getInstance($identifier)
setCopyToExistingPoolOnSave(?int $pool_ref_id)
Readable part of repository interface to ilComponentDataDB.
GeneralQuestionPropertiesRepository $questionrepository
genericFeedbackOutputBuilder(string $feedback_correct, string $feedback_incorrect, int $active_id, ?int $pass)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const CMD_SAVE_AND_RETURN
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
generateCorrectnessIconsForCorrectness(int $correctness)
getAnswersFrequency($relevantAnswers, $questionIndex)
getTermList(string $searchterm="", string $a_letter="", string $a_def="", int $a_tax_node=0, bool $a_include_offline_childs=false, bool $a_add_amet_fields=false, ?array $a_amet_filter=null, bool $a_omit_virtual=false, bool $a_include_references=false)
getNodeData(int $a_node_id, ?int $a_tree_pk=null)
get all information of a node.
static stripSlashesRecursive($a_data, bool $a_strip_html=true, string $a_allow="")
int $sequence_no
sequence number in test
getPreviousSolutionConfirmationCheckboxHtml()
bool $context_allows_sync_to_pool
addTab_SuggestedSolution(ilTabsGUI $tabs, string $classname)
getAutoSavedSolutionOutput(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)
addTab_QuestionHints(ilTabsGUI $tabs)
ilTestQuestionNavigationGUI $navigationGUI
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const CMD_SYNC_QUESTION_AND_RETURN
setContextAllowsSyncToPool(bool $sync_allowed)
setTargetGuiClass(string $targetGuiClass)
setTaxonomyIds(array $taxonomyIds)
addTarget(string $a_text, string $a_link, $a_cmd="", $a_cmdClass="", string $a_frame="", bool $a_activate=false, bool $a_dir_text=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setOutputMode(string $a_mode=self::PRESENTATION)
int $question_count
question count in test
cancelSuggestedSolution()
getEditQuestionTabCommands()
getSuggestedSolutionsRepo()
const ADDITIONAL_CMDS_NEEDING_EXISTING_QST
There are functions that need an existing question.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilPropertyFormGUI $editForm
string $question_sync_modal
const SESSION_PREVIEW_DATA_BASE_INDEX
buildBasicEditFormObject()
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
createSuggestedSolutionLinkingTo(string $type, string $target)
getTestOutput(int $active_id, int $pass, bool $is_question_postponed=false, array|bool $user_post_solutions=false, bool $show_specific_inline_feedback=false)
addBasicQuestionFormProperties(ilPropertyFormGUI $form)
getBasicEditQuestionTabCommands()
isInTree(?int $a_node_id)
get all information of a node.
static prepareTextareaOutput(?string $txt_output, bool $prepare_for_latex_output=false, bool $omitNl2BrWhenTextArea=false)
Prepares a string for a text area output where latex code may be in it If the text is HTML-free...
setQuestionHeaderBlockBuilder(\ilQuestionHeaderBlockBuilder $questionHeaderBlockBuilder)
getAsValueAttribute(string $a_value)
const CORRECTNESS_MOSTLY_OK
escapeTemplatePlaceholders(string $text)
getPresentationJavascripts()
setDefaultTabs(ilTabsGUI $tabs_gui)
setObject(assQuestion $question)
string $questionActionCmd
getGenericFeedbackOutputForCorrectSolution()
const SUGGESTED_SOLUTION_COMMANDS_CANCEL
writePostData(bool $always=false)
Evaluates a posted edit form and writes the form data in the question object.
bool $previousSolutionPrefilled
getUseUnchangedAnswerCheckboxHtml()
ilGlobalPageTemplate $tpl
suggestedsolution(bool $save=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
isInLearningModuleContext()
isRenderPurposePlayback()
setQuestionCount(int $a_question_count)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
populateTaxonomyFormSection(ilPropertyFormGUI $form)
setPreviewSession(ilAssQuestionPreviewSession $preview_session)
static _getQuestionGUI(string $question_type='', int $question_id=-1)
Creates a question gui representation and returns the alias to the question gui.
const CMD_SHOW_LIST
command constants
SuggestedSolutionsDatabaseRepository $suggestedsolution_repo
addQuestionFormCommandButtons(ilPropertyFormGUI $form)
ilAssQuestionPreviewSession $preview_session
isAnswerFrequencyStatisticSupported()
getContextPath($cont_obj, int $a_endnode_id, int $a_startnode_id=1)
get context path in content object tree
readonly RequestDataCollector $request_data_collector
prepareReprintableCorrectionsForm(ilPropertyFormGUI $form)
editQuestion(bool $checkonly=false, ?bool $is_save_cmd=null)
populateJavascriptFilesRequiredForWorkForm(ilGlobalTemplateInterface $tpl)
setValue(string $a_value)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static renameExecutables(string $a_dir)
const SUGGESTED_SOLUTION_COMMANDS_SAVE
getType()
needed for page editor compliance
getChildsByType(int $a_node_id, string $a_type)
get child nodes of given node by object type
setPresentationContext(string $presentationContext)
populateCorrectionsFormProperties(ilPropertyFormGUI $form)
int $copy_to_existing_pool_on_save
hasSpecialQuestionCommands()
setErrorMessage(string $errormessage)
writeQuestionGenericPostData()
readonly ilTestLegacyFormsHelper $forms_helper
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
setQuestionActionCmd(string $questionActionCmd)
const PRESENTATION_CONTEXT_RESULTS
isRenderPurposeDemoplay()
setAdjustmentEditContext()
outQuestionForTest(string $formaction, int $active_id, ?int $pass, bool $is_question_postponed=false, array|bool $user_post_solutions=false, bool $show_specific_inline_feedback=false)
setInLearningModuleContext(bool $flag)
const FORM_ENCODING_MULTIPART
setBackTarget(string $a_title, string $a_target, string $a_frame="")
isAdjustmentEditContext()
Repository for suggested solutions.
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const EDIT_CONTEXT_ADJUSTMENT
addTab_Question(ilTabsGUI $tabs_gui)
static _getUsedHTMLTagsAsString(string $a_module="")
Returns a string of all allowed HTML tags for text editing.
addTab_QuestionFeedback(ilTabsGUI $tabs)
isRenderPurposeInputValue()
const RENDER_PURPOSE_DEMOPLAY
setTargetGui($linkTargetGui)
static moveUploadedFile(string $a_file, string $a_name, string $a_target, bool $a_raise_errors=true, string $a_mode="move_uploaded")
move uploaded file
int $move_after_question_with_id
getCopyToExistingPoolOnSave()
const EDIT_CONTEXT_AUTHORING
const PRESENTATION_CONTEXT_TEST
setSequenceNumber(int $nr)
cmdNeedsExistingQuestion(string $cmd)
getAssignmentsOfItem(int $a_item_id)
Get assignments for item.
setRenderPurpose(string $renderPurpose)
static getClassByType(string $obj_type)
getPreviousSolutionProvidedMessage()
const FORM_ENCODING_URLENCODE
const RENDER_PURPOSE_PLAYBACK
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setEditContext(string $editContext)
getGenericFeedbackOutputForIncorrectSolution()
setQuestionHTML(array $question_html)
saveTaxonomyAssignments()
getSpecificFeedbackOutput(array $userSolution)
Returns the answer specific feedback for the question.
const ALLOWED_PLAIN_TEXT_TAGS
sk - 12.05.2023: This const is also used in ilKprimChoiceWizardInputGUI.
Class ilQuestionUsagesTableGUI.
getILIASPage(string $html="")
Returns the ILIAS Page around a question.
const HAS_SPECIAL_QUESTION_COMMANDS
addSaveOnEnterOnLoadCode()
setMoveAfterQuestionId(?int $question_id)
setQuestionSpecificTabs(ilTabsGUI $tabs_gui)
outQuestionPage($a_temp_var, $a_postponed=false, $active_id="", $html="", $inlineFeedbackEnabled=false)
static getInstance()
Singleton: get instance for use in ILIAS requests with a config loaded from the settings.
static getPageList(int $lm_id)
__construct(Container $dic, ilPlugin $plugin)
addJavaScript(string $a_js_file, bool $a_add_version_parameter=true, int $a_batch=2)
Add a javascript file that should be included in the header.
getAdditionalEditQuestionCommands()
This class represents a text area property in a property form.
ilComponentRepository $component_repository
setCopyToNewPoolOnSave(?string $pool_title)
getQuestionHeaderBlockBuilder()
Class ilObjContentObjectGUI.
cleanupAnswerText(array $answer_text, bool $is_rte)
sk - 12.05.2023: This is one more of those that we need, but don't want.
const RENDER_PURPOSE_PRINT_PDF
addErrorMessage(string $errormessage)
string $presentationContext
getPreview(bool $show_question_only=false, bool $show_inline_feedback=false)
isRenderPurposePrintPdf()
saveSuggestedSolutionType()
setPreviousSolutionPrefilled(bool $previousSolutionPrefilled)
const SUGGESTED_SOLUTION_COMMANDS_DEFAULT
isPreviousSolutionPrefilled()
addNumberOfTriesToFormIfNecessary(ilPropertyFormGUI $form)
completeTestOutputFormAction(string $form_action, int $active_id, int $pass)
getQuestionSyncModal(string $cmd, string $cmd_class='')
setSubObject(?string $sub_obj_type, ?int $sub_obj_id)
Set sub object attributes.
static _lookupType(int $id, bool $reference=false)
static getManualFeedback(int $active_id, int $question_id, ?int $pass)
Retrieves the feedback comment for a question in a test if it is finalized.
ilObjectDataCache $ilObjDataCache
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const RENDER_PURPOSE_INPUT_VALUE
const RENDER_PURPOSE_PREVIEW
addBackTab(ilTabsGUI $tabs_gui)
setVariable(string $variable, $value='')
Sets the given variable to the given value.
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)
string $copy_to_new_pool_on_save
Class ilCommonActionDispatcherGUI.
getAnswerFrequencyTableGUI($parentGui, $parentCmd, $relevantAnswers, $questionIndex)
ilQuestionHeaderBlockBuilder $questionHeaderBlockBuilder
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,)
setExpand($a_node_id)
set the expand option this value is stored in a SESSION variable to save it different view (lo view...
static getCommandsFromClassConstants(string $guiClassName, string $cmdConstantNameBegin='CMD_')
static _getUsedHTMLTags(string $a_module="")
Returns an array of all allowed HTML tags for text editing.
setTestSpecificProperties()
setNavigationGUI(?ilTestQuestionNavigationGUI $navigationGUI)
renderEditForm(ilPropertyFormGUI $form)
static getFeedbackClassNameByQuestionType(string $questionType)
static stripOnlySlashes(string $a_str)
renderPurposeSupportsFormHtml()
getGenericFeedbackOutput(int $active_id, ?int $pass)