ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.assQuestionGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
30 
35 abstract class assQuestionGUI
36 {
42  public const ALLOWED_PLAIN_TEXT_TAGS = "<em>, <strong>";
43 
44  public const SESSION_PREVIEW_DATA_BASE_INDEX = 'ilAssQuestionPreviewAnswers';
45 
46  public const FORM_MODE_EDIT = 'edit';
47  public const FORM_MODE_ADJUST = 'adjust';
48 
49  public const FORM_ENCODING_URLENCODE = 'application/x-www-form-urlencoded';
50  public const FORM_ENCODING_MULTIPART = 'multipart/form-data';
51 
52  public const CORRECTNESS_NOT_OK = 0;
53  public const CORRECTNESS_MOSTLY_OK = 1;
54  public const CORRECTNESS_OK = 2;
55 
56  public const RENDER_PURPOSE_PLAYBACK = 'renderPurposePlayback';
57  public const RENDER_PURPOSE_DEMOPLAY = 'renderPurposeDemoplay';
58  public const RENDER_PURPOSE_PREVIEW = 'renderPurposePreview';
59  public const RENDER_PURPOSE_PRINT_PDF = 'renderPurposePrintPdf';
60  public const RENDER_PURPOSE_INPUT_VALUE = 'renderPurposeInputValue';
61 
62  public const EDIT_CONTEXT_AUTHORING = 'authoring';
63  public const EDIT_CONTEXT_ADJUSTMENT = 'adjustment';
64 
65  public const PRESENTATION_CONTEXT_TEST = 'pContextTest';
66  public const PRESENTATION_CONTEXT_RESULTS = 'pContextResults';
67 
68  protected const HAS_SPECIAL_QUESTION_COMMANDS = false;
69 
70  protected const SUGGESTED_SOLUTION_COMMANDS_CANCEL = 'cancelSuggestedSolution';
71  protected const SUGGESTED_SOLUTION_COMMANDS_SAVE = 'saveSuggestedSolution';
72  protected const SUGGESTED_SOLUTION_COMMANDS_DEFAULT = 'suggestedsolution';
73 
74  private const CMD_SAVE = 'save';
75  private const CMD_SAVE_AND_RETURN = 'saveReturn';
76 
77  private const CMD_SYNC_QUESTION = 'syncQuestion';
78  public const CMD_SYNC_QUESTION_AND_RETURN = 'syncQuestionReturn';
79 
80  protected const QUESTION_SAVE_CMDS = [
81  self::CMD_SAVE,
82  self::CMD_SAVE_AND_RETURN
83  ];
84 
93  'uploadchoice',
94  'uploadImage',
95  'changeToPictures',
96  'uploadElementImage',
97  'uploadterms',
98  'uploaddefintions'
99  ];
100 
101  private $ui;
107  private ilTree $tree;
109  protected ilLogger $logger;
113  protected ilCtrl $ctrl;
115  protected assQuestion $object;
117  protected ilLanguage $lng;
118  protected Refinery $refinery;
119 
120  protected $error;
121  protected string $errormessage;
122 
124  protected int $sequence_no;
125 
127  protected int $question_count;
128 
129  private $taxonomyIds = [];
130 
132 
133  private string $questionActionCmd = 'handleQuestionAction';
134 
136 
138 
139 
140  private ?string $presentationContext = null;
141 
142  private string $renderPurpose = self::RENDER_PURPOSE_PLAYBACK;
143 
144  private string $editContext = self::EDIT_CONTEXT_AUTHORING;
145 
146  private bool $previousSolutionPrefilled = false;
147 
151  protected bool $parent_type_is_lm = false;
152 
154  private ?string $copy_to_new_pool_on_save = null;
155 
157  private bool $context_allows_sync_to_pool = false;
158  private string $question_sync_modal = '';
159 
160  public function __construct()
161  {
163  global $DIC;
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'];
177  $this->refinery = $DIC['refinery'];
178 
179  $local_dic = QuestionPoolDIC::dic();
180  $this->forms_helper = new ilTestLegacyFormsHelper();
181  $this->request_data_collector = $local_dic['request_data_collector'];
182  $this->questionrepository = $local_dic['question.general_properties.repository'];
183 
184  $this->errormessage = $this->lng->txt("fill_out_all_required_fields");
185  $this->notes_gui = $DIC->notes()->gui();
186  }
187 
188  abstract public function editQuestion(
189  bool $checkonly = false,
190  ?bool $is_save_cmd = null
191  ): bool;
192 
197  abstract public function getSpecificFeedbackOutput(array $userSolution): string;
198 
199  abstract public function getSolutionOutput(
200  int $active_id,
201  ?int $pass = 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
210  ): string;
211 
212  abstract public function getPreview(
213  bool $show_question_only = false,
214  bool $show_inline_feedback = false
215  ): string;
216 
217  abstract public function getTestOutput(
218  int $active_id,
219  int $pass,
220  bool $is_question_postponed = false,
221  array|bool $user_post_solutions = false,
222  bool $show_specific_inline_feedback = false
223  ): string;
224 
225  public function renderSolutionOutput(
226  mixed $user_solutions,
227  int $active_id,
228  ?int $pass,
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,
238  ): ?string {
239  return null;
240  }
241 
247  public function getObject(): assQuestion
248  {
249  return $this->object;
250  }
251 
256  public function setObject(assQuestion $question): void
257  {
258  $this->object = $question;
259  }
260 
261  public function setCopyToExistingPoolOnSave(?int $pool_ref_id): void
262  {
263  $this->copy_to_existing_pool_on_save = $pool_ref_id;
264  }
265 
266  public function getCopyToExistingPoolOnSave(): ?int
267  {
269  }
270 
271  public function setCopyToNewPoolOnSave(?string $pool_title): void
272  {
273  $this->copy_to_new_pool_on_save = $pool_title;
274  }
275 
276  public function getCopyToNewPoolOnSave(): ?string
277  {
279  }
280 
281  public function setMoveAfterQuestionId(?int $question_id): void
282  {
283  $this->move_after_question_with_id = $question_id;
284  }
285 
286  public function getMoveAfterQuestionId(): ?int
287  {
289  }
290 
291  public function hasInlineFeedback(): bool
292  {
293  return false;
294  }
295 
296  public function addHeaderAction(): void
297  {
298  }
299 
300  public function redrawHeaderAction(): void
301  {
302  echo $this->getHeaderAction() . $this->ui->mainTemplate()->getOnLoadCodeForAsynch();
303  exit;
304  }
305 
306  public function getHeaderAction(): string
307  {
308  $parentObjType = $this->ilObjDataCache->lookupType($this->object->getObjId());
309 
310  $dispatcher = new ilCommonActionDispatcherGUI(
312  $this->access,
313  $parentObjType,
314  $this->request_data_collector->getRefId(),
315  $this->object->getObjId()
316  );
317 
318  $dispatcher->setSubObject("quest", $this->object->getId());
319 
320  $ha = $dispatcher->initHeaderAction();
321  $ha->enableComments(true, false);
322 
323  return $ha->getHeaderAction($this->ui->mainTemplate());
324  }
325 
326  public function getCommentsPanelHTML(): string
327  {
328  $comment_gui = new ilCommentGUI($this->object->getObjId(), $this->object->getId(), 'quest');
329  return $comment_gui->getListHTML();
330  }
331 
332  public function executeCommand()
333  {
334  $this->ilHelp->setScreenIdComponent('qpl');
335 
336  $next_class = $this->ctrl->getNextClass($this);
337 
338  switch ($next_class) {
339  case 'ilformpropertydispatchgui':
340  $form = $this->buildEditForm();
341  $form_prop_dispatch = new ilFormPropertyDispatchGUI();
342  $form_prop_dispatch->setItem($form->getItemByPostVar(ilUtil::stripSlashes($this->request_data_collector->string('postvar'))));
343  $this->ctrl->forwardCommand($form_prop_dispatch);
344  break;
345  default:
346  $cmd = $this->ctrl->getCmd('editQuestion');
347  switch ($cmd) {
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':
354  case 'linkChilds':
355  case 'cancelExplorer':
356  case 'outSolutionExplorer':
357  case 'addST':
358  case 'addPG':
359  case 'addGIT':
360  case 'save':
361  case 'saveReturn':
362  case self::CMD_SYNC_QUESTION:
363  case self::CMD_SYNC_QUESTION_AND_RETURN:
364  case 'editQuestion':
365  $this->$cmd();
366  break;
367  default:
368  if (method_exists($this, $cmd)) {
369  $this->$cmd();
370  }
371  }
372  }
373  }
374 
375  protected function hasSpecialQuestionCommands(): bool
376  {
377  return static::HAS_SPECIAL_QUESTION_COMMANDS;
378  }
379 
381  public function getType(): string
382  {
383  return $this->getQuestionType();
384  }
385 
386  public function getPresentationContext(): ?string
387  {
389  }
390 
391  public function setPresentationContext(string $presentationContext): void
392  {
393  $this->presentationContext = $presentationContext;
394  }
395 
396  public function isTestPresentationContext(): bool
397  {
398  return $this->getPresentationContext() == self::PRESENTATION_CONTEXT_TEST;
399  }
400 
401  // hey: previousPassSolutions - setter/getter for Previous Solution Prefilled flag
402  public function isPreviousSolutionPrefilled(): bool
403  {
405  }
406 
407  public function setPreviousSolutionPrefilled(bool $previousSolutionPrefilled): void
408  {
409  $this->previousSolutionPrefilled = $previousSolutionPrefilled;
410  }
411  // hey.
412 
413  public function getRenderPurpose(): string
414  {
415  return $this->renderPurpose;
416  }
417 
418  public function setRenderPurpose(string $renderPurpose): void
419  {
420  $this->renderPurpose = $renderPurpose;
421  }
422 
423  public function isRenderPurposePrintPdf(): bool
424  {
425  return $this->getRenderPurpose() == self::RENDER_PURPOSE_PRINT_PDF;
426  }
427 
428  public function isRenderPurposePreview(): bool
429  {
430  return $this->getRenderPurpose() == self::RENDER_PURPOSE_PREVIEW;
431  }
432 
433  public function isRenderPurposeInputValue(): bool
434  {
435  return $this->getRenderPurpose() == self::RENDER_PURPOSE_INPUT_VALUE;
436  }
437 
438  public function isRenderPurposePlayback(): bool
439  {
440  return $this->getRenderPurpose() == self::RENDER_PURPOSE_PLAYBACK;
441  }
442 
443  public function isRenderPurposeDemoplay(): bool
444  {
445  return $this->getRenderPurpose() == self::RENDER_PURPOSE_DEMOPLAY;
446  }
447 
448  public function renderPurposeSupportsFormHtml(): bool
449  {
450  if ($this->isRenderPurposePrintPdf()) {
451  return false;
452  }
453 
454  if ($this->isRenderPurposeInputValue()) {
455  return false;
456  }
457 
458  return true;
459  }
460 
461  public function getEditContext(): string
462  {
463  return $this->editContext;
464  }
465 
466  public function setEditContext(string $editContext): void
467  {
468  $this->editContext = $editContext;
469  }
470 
471  public function isAuthoringEditContext(): bool
472  {
473  return $this->getEditContext() == self::EDIT_CONTEXT_AUTHORING;
474  }
475 
476  public function isAdjustmentEditContext(): bool
477  {
478  return $this->getEditContext() == self::EDIT_CONTEXT_ADJUSTMENT;
479  }
480 
481  public function setAdjustmentEditContext(): void
482  {
483  $this->setEditContext(self::EDIT_CONTEXT_ADJUSTMENT);
484  }
485 
487  {
488  return $this->navigationGUI;
489  }
490 
491  public function setNavigationGUI(?ilTestQuestionNavigationGUI $navigationGUI): void
492  {
493  $this->navigationGUI = $navigationGUI;
494  }
495 
496  public function setTaxonomyIds(array $taxonomyIds): void
497  {
498  $this->taxonomyIds = $taxonomyIds;
499  }
500 
501  public function getTaxonomyIds(): array
502  {
503  return $this->taxonomyIds;
504  }
505 
506  public function setTargetGui($linkTargetGui): void
507  {
508  $this->setTargetGuiClass(get_class($linkTargetGui));
509  }
510 
511  public function setTargetGuiClass(string $targetGuiClass): void
512  {
513  $this->targetGuiClass = $targetGuiClass;
514  }
515 
516  public function getTargetGuiClass(): ?string
517  {
518  return $this->targetGuiClass;
519  }
520 
521  public function setQuestionHeaderBlockBuilder(\ilQuestionHeaderBlockBuilder $questionHeaderBlockBuilder): void
522  {
523  $this->questionHeaderBlockBuilder = $questionHeaderBlockBuilder;
524  }
525 
526  // fau: testNav - get the question header block bulder (for tweaking)
528  {
530  }
531  // fau.
532 
533  public function setQuestionActionCmd(string $questionActionCmd): void
534  {
535  $this->questionActionCmd = $questionActionCmd;
536 
537  if (is_object($this->object)) {
538  $this->object->questionActionCmd = $questionActionCmd;
539  }
540  }
541 
542  public function getQuestionActionCmd(): string
543  {
545  }
546 
551  protected function writePostData(bool $always = false): int
552  {
553  return 0;
554  }
555 
556  public function assessment(): void
557  {
558  $stats_table = new ilQuestionCumulatedStatisticsTableGUI($this, 'assessment', '', $this->object, $this->questionrepository);
559  $usage_table = new ilQuestionUsagesTableGUI($this, 'assessment', '', $this->object);
560 
561  $this->tpl->setContent(implode('<br />', [
562  $stats_table->getHTML(),
563  $usage_table->getHTML()
564  ]));
565  }
566 
570  public static function _getQuestionGUI(string $question_type = '', int $question_id = -1): ?assQuestionGUI
571  {
572  global $DIC;
573  $ilCtrl = $DIC['ilCtrl'];
574  $ilDB = $DIC['ilDB'];
575  $lng = $DIC['lng'];
576 
577  if (($question_type === '') && ($question_id > 0)) {
578  $question_type = QuestionPoolDIC::dic()['question.general_properties.repository']
579  ->getForQuestionId($question_id)?->getClassName();
580  }
581 
582  if ($question_type === null || $question_type === '') {
583  return null;
584  }
585 
586  $question_type_gui = $question_type . 'GUI';
587  $question = new $question_type_gui();
588 
589  $feedbackObjectClassname = assQuestion::getFeedbackClassNameByQuestionType($question_type);
590  $question->object->feedbackOBJ = new $feedbackObjectClassname($question->object, $ilCtrl, $ilDB, $lng);
591 
592  if ($question_id > 0) {
593  $question->object->loadFromDb($question_id);
594  }
595 
596  return $question;
597  }
598 
600  {
601  foreach ($this->getPresentationJavascripts() as $jsFile) {
602  $tpl->addJavaScript($jsFile);
603  }
604  }
605 
606  public function getPresentationJavascripts(): array
607  {
608  return [];
609  }
610 
611  public function getQuestionTemplate(): void
612  {
613  // @todo Björn: Maybe this has to be changed for PHP 7/ILIAS 5.2.x (ilObjTestGUI::executeCommand, switch -> default case -> $this->prepareOutput(); already added a template to the CONTENT variable wrapped in a block named content)
614  if (!$this->tpl->blockExists('content')) {
615  $this->tpl->addBlockFile("CONTENT", "content", "tpl.il_as_qpl_content.html", "components/ILIAS/TestQuestionPool");
616  }
617  // @todo Björn: Maybe this has to be changed for PHP 7/ILIAS 5.2.x (ilObjTestGUI::executeCommand, switch -> default case -> $this->prepareOutput(); already added a template to the STATUSLINE variable wrapped in a block named statusline)
618  if (!$this->tpl->blockExists('statusline')) {
619  $this->tpl->addBlockFile("STATUSLINE", "statusline", "tpl.statusline.html");
620  }
621  // @todo Björn: Maybe this has to be changed for PHP 7/ILIAS 5.2.x because ass[XYZ]QuestionGUI::editQuestion is called multiple times
622  if (!$this->tpl->blockExists('adm_content')) {
623  $this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.il_as_question.html", "components/ILIAS/TestQuestionPool");
624  }
625  }
626 
627  protected function renderEditForm(ilPropertyFormGUI $form): void
628  {
629  $this->addSaveOnEnterOnLoadCode();
630  $this->getQuestionTemplate();
631  $this->tpl->setVariable('QUESTION_DATA', $form->getHTML() . $this->question_sync_modal);
632  }
633 
637  public function getILIASPage(string $html = ""): string
638  {
639  $page_gui = new ilAssQuestionPageGUI($this->object->getId());
640  $page_gui->setQuestionHTML(
641  [$this->object->getId() => $html]
642  );
643  $presentation = $page_gui->presentation();
644  $presentation = preg_replace("/src=\"\\.\\//ims", "src=\"" . ILIAS_HTTP_PATH . "/", $presentation);
645  return $presentation;
646  }
647 
648  public function outQuestionPage($a_temp_var, $a_postponed = false, $active_id = "", $html = "", $inlineFeedbackEnabled = false): string
649  {
650  if ($this->object->getTestPresentationConfig()->isSolutionInitiallyPrefilled()) {
651  // hey
652  $this->tpl->setOnScreenMessage('info', $this->getPreviousSolutionProvidedMessage());
654  } elseif ($this->object->getTestPresentationConfig()->isUnchangedAnswerPossible()) {
655  $html .= $this->getUseUnchangedAnswerCheckboxHtml();
656  }
657 
658  $this->lng->loadLanguageModule("content");
659 
660  $page_gui = new ilAssQuestionPageGUI($this->object->getId());
661  $page_gui->setOutputMode("presentation");
662  $page_gui->setTemplateTargetVar($a_temp_var);
663 
664  if ($this->getNavigationGUI()) {
665  $html .= $this->getNavigationGUI()->getHTML();
666  $page_gui->setQuestionActionsHTML($this->getNavigationGUI()->getActionsHTML());
667  }
668 
669  if (strlen($html)) {
670  $page_gui->setQuestionHTML([$this->object->getId() => $html]);
671  }
672 
673  $page_gui->setPresentationTitle($this->questionHeaderBlockBuilder->getPresentationTitle());
674  $page_gui->setQuestionInfoHTML($this->questionHeaderBlockBuilder->getQuestionInfoHTML());
675 
676  return $page_gui->presentation();
677  }
678 
679  protected function getUseUnchangedAnswerCheckboxHtml(): string
680  {
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());
683  return $tpl->get();
684  }
685 
686  protected function getPreviousSolutionProvidedMessage(): string
687  {
688  return $this->lng->txt('use_previous_solution_advice');
689  }
690 
691  protected function getPreviousSolutionConfirmationCheckboxHtml(): string
692  {
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'));
695  return $tpl->get();
696  }
697 
698  public function syncQuestion(): void
699  {
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);
704  }
705  }
706 
707  public function saveReturn(): void
708  {
709  $old_id = $this->request_data_collector->getQuestionId();
711  $result = $this->writePostData();
712  if ($result !== 0) {
713  $this->tabs_gui->setTabActive('edit_question');
714  return;
715  }
716 
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);
720 
721  $this->questionrepository->questionExistsInPool($this->object->getOriginalId());
722  $this->tpl->setOnScreenMessage('success', $this->lng->txt('msg_obj_modified'), true);
723  $this->ctrl->redirectByClass(ilAssQuestionPreviewGUI::class, ilAssQuestionPreviewGUI::CMD_SHOW);
724  }
725 
726  public function saveQuestion(): bool
727  {
729  $result = $this->writePostData();
730  $this->tabs_gui->activateTab('edit_question');
731 
732  if ($result !== 0) {
733  return false;
734  }
735 
736  $this->object->getCurrentUser()->setPref('tst_lastquestiontype', $this->object->getQuestionType());
737  $this->object->getCurrentUser()->writePref('tst_lastquestiontype', $this->object->getQuestionType());
738 
739  if ($this->request_data_collector->getQuestionId() === 0) {
740  if ($this->object->getId() < 1) {
741  $this->object->createNewQuestion();
742  }
743  $this->setQuestionTabs();
744  }
745 
746  if ($this->needsSyncQuery()) {
747  $cmd = strpos($this->ctrl->getCmd(), 'Return') === false
748  ? self::CMD_SYNC_QUESTION
749  : self::CMD_SYNC_QUESTION_AND_RETURN;
750  $this->question_sync_modal = $this->getQuestionSyncModal($cmd);
751  }
752 
753  $this->object->saveToDb();
754  return true;
755  }
756 
758  {
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);
763  }
764  }
765 
766  protected function setTestSpecificProperties(): void
767  {
768  if ($this->request_data_collector->isset('pool_ref')) {
769  $this->copy_to_existing_pool_on_save = $this->request_data_collector->int('pool_ref');
770  }
771 
772  if ($this->request_data_collector->isset('pool_title')) {
773  $this->copy_to_new_pool_on_save = $this->request_data_collector->string('pool_title');
774  }
775 
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');
778  }
779  }
780 
784  public function getContextPath($cont_obj, int $a_endnode_id, int $a_startnode_id = 1): string
785  {
786  $path = "";
787 
788  $tmpPath = $cont_obj->getLMTree()->getPathFull($a_endnode_id, $a_startnode_id);
789 
790  // count -1, to exclude the learning module itself
791  for ($i = 1; $i < (count($tmpPath) - 1); $i++) {
792  if ($path != "") {
793  $path .= " > ";
794  }
795 
796  $path .= $tmpPath[$i]["title"];
797  }
798 
799  return $path;
800  }
801 
802  public function setSequenceNumber(int $nr): void
803  {
804  $this->sequence_no = $nr;
805  }
806 
807  public function getSequenceNumber(): int
808  {
809  return $this->sequence_no;
810  }
811 
812  public function setQuestionCount(int $a_question_count): void
813  {
814  $this->question_count = $a_question_count;
815  }
816 
817  public function getQuestionCount(): int
818  {
819  return $this->question_count;
820  }
821 
822  public function getErrorMessage(): string
823  {
824  return $this->errormessage;
825  }
826 
827  public function setErrorMessage(string $errormessage): void
828  {
829  $this->errormessage = $errormessage;
830  }
831 
832  public function addErrorMessage(string $errormessage): void
833  {
834  $this->errormessage .= ((strlen($this->errormessage)) ? "<br />" : "") . $errormessage;
835  }
836 
837  public function getQuestionType(): string
838  {
839  return $this->object->getQuestionType();
840  }
841 
842  public function getAsValueAttribute(string $a_value): string
843  {
844  $result = "";
845  if (strlen($a_value)) {
846  $result = " value=\"$a_value\" ";
847  }
848  return $result;
849  }
850 
852  {
853  if (!$this->object->getSelfAssessmentEditingMode()) {
854  $form->addCommandButton("saveReturn", $this->lng->txt("save_return"));
855  }
856  $form->addCommandButton("save", $this->lng->txt("save"));
857  }
858 
860  {
861  $title = new ilTextInputGUI($this->lng->txt('title'), 'title');
862  $title->setMaxLength(100);
863  $title->setValue($this->object->getTitle());
864  $title->setRequired(true);
865  $form->addItem($title);
866 
867  if (!$this->object->getSelfAssessmentEditingMode()) {
868  // author
869  $author = new ilTextInputGUI($this->lng->txt('author'), 'author');
870  $author->setValue($this->object->getAuthor());
871  $author->setMaxLength(512);
872  $author->setRequired(true);
873  $form->addItem($author);
874 
875  // description
876  $description = new ilTextInputGUI($this->lng->txt('description'), 'comment');
877  $description->setValue($this->object->getComment());
878  $description->setRequired(false);
879  $description->setMaxLength(1000);
880  $form->addItem($description);
881  } else {
882  // author as hidden field
883  $hi = new ilHiddenInputGUI('author');
884  $author = ilLegacyFormElementsUtil::prepareFormOutput($this->object->getAuthor());
885  if (trim($author) == "") {
886  $author = "-";
887  }
888  $hi->setValue($author);
889  $form->addItem($hi);
890  }
891 
892  // lifecycle
893  $lifecycle = new ilSelectInputGUI($this->lng->txt('qst_lifecycle'), 'lifecycle');
894  $lifecycle->setOptions($this->object->getLifecycle()->getSelectOptions($this->lng));
895  $lifecycle->setValue($this->object->getLifecycle()->getIdentifier());
896  $form->addItem($lifecycle);
897 
898  // questiontext
899  $question = new ilTextAreaInputGUI($this->lng->txt('question'), 'question');
900  $question->setValue($this->object->getQuestion());
901  $question->setRequired(true);
902  $question->setRows(10);
903  $question->setCols(80);
904 
905  if (!$this->object->getSelfAssessmentEditingMode()) {
906  if ($this->object->getAdditionalContentEditingMode() !== assQuestion::ADDITIONAL_CONTENT_EDITING_MODE_IPE) {
907  $question->setUseRte(true);
908  $question->setRteTags(ilObjAdvancedEditing::_getUsedHTMLTags('assessment'));
909  $question->setRTESupport($this->object->getId(), 'qpl', 'assessment');
910  }
911  } else {
913  $question->setUseTagsForRteOnly(false);
914  }
915  $form->addItem($question);
916 
917  $question_type = new ilHiddenInputGUI('question_type');
918  $question_type->setValue((string) $this->getQuestionType());
919  $form->addItem($question_type);
920 
921  if ($this->copy_to_existing_pool_on_save !== null) {
922  $pool_ref = new ilHiddenInputGUI('pool_ref');
923  $pool_ref->setValue((string) $this->copy_to_existing_pool_on_save);
924  $form->addItem($pool_ref);
925  }
926 
927  if ($this->copy_to_new_pool_on_save !== null) {
928  $pool_title = new ilHiddenInputGUI('pool_title');
929  $pool_title->setValue($this->copy_to_new_pool_on_save);
930  $form->addItem($pool_title);
931  }
932 
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);
937  }
938 
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);
942 
943  $this->addNumberOfTriesToFormIfNecessary($form);
944  }
945 
947  {
948  if (!$this->object->getSelfAssessmentEditingMode()) {
949  return;
950  }
951 
952  $nr_tries = $this->object->getNrOfTries() ?? $this->object->getDefaultNrOfTries();
953 
954  if ($nr_tries < 1) {
955  $nr_tries = "";
956  }
957 
958  $ni = new ilNumberInputGUI($this->lng->txt("qst_nr_of_tries"), "nr_of_tries");
959  $ni->setValue((string) $nr_tries);
960  $ni->setMinValue(0);
961  $ni->setSize(5);
962  $ni->setMaxLength(5);
963  $form->addItem($ni);
964  }
965 
966  protected function saveTaxonomyAssignments(): void
967  {
968  if (count($this->getTaxonomyIds())) {
969  foreach ($this->getTaxonomyIds() as $taxonomyId) {
970  $postvar = "tax_node_assign_$taxonomyId";
971 
972  $tax_node_assign = new ilTaxAssignInputGUI($taxonomyId, true, '', $postvar);
973  // TODO: determine tst/qpl when tax assigns become maintainable within tests
974  $tax_node_assign->saveInput("qpl", $this->object->getObjId(), "quest", $this->object->getId());
975  }
976  }
977  }
978 
979  protected function populateTaxonomyFormSection(ilPropertyFormGUI $form): void
980  {
981  if ($this->getTaxonomyIds() !== []) {
982  $sectHeader = new ilFormSectionHeaderGUI();
983  $sectHeader->setTitle($this->lng->txt('qpl_qst_edit_form_taxonomy_section'));
984  $form->addItem($sectHeader);
985 
986  foreach ($this->getTaxonomyIds() as $taxonomyId) {
987  $taxonomy = new ilObjTaxonomy($taxonomyId);
988  $label = sprintf($this->lng->txt('qpl_qst_edit_form_taxonomy'), $taxonomy->getTitle());
989  $postvar = "tax_node_assign_$taxonomyId";
990 
991  $taxSelect = new ilTaxSelectInputGUI($taxonomy->getId(), $postvar, true);
992  $taxSelect->setTitle($label);
993 
994 
995  $taxNodeAssignments = new ilTaxNodeAssignment(ilObject::_lookupType($this->object->getObjId()), $this->object->getObjId(), 'quest', $taxonomyId);
996  $assignedNodes = $taxNodeAssignments->getAssignmentsOfItem($this->object->getId());
997 
998  $taxSelect->setValue(array_map(function ($assignedNode) {
999  return $assignedNode['node_id'];
1000  }, $assignedNodes));
1001  $form->addItem($taxSelect);
1002  }
1003  }
1004  }
1005 
1009  public function getGenericFeedbackOutput(int $active_id, ?int $pass): string
1010  {
1011  $output = '';
1012  $manual_feedback = ilObjTest::getManualFeedback($active_id, $this->object->getId(), $pass);
1013  if ($manual_feedback !== '') {
1014  return $manual_feedback;
1015  }
1016 
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 !== '') {
1020  $output = $this->genericFeedbackOutputBuilder($correct_feedback, $incorrect_feedback, $active_id, $pass);
1021  }
1022 
1023  if ($this->object->isAdditionalContentEditingModePageObject()) {
1024  return $output;
1025  }
1027  }
1028 
1029  protected function genericFeedbackOutputBuilder(
1030  string $feedback_correct,
1031  string $feedback_incorrect,
1032  int $active_id,
1033  ?int $pass
1034  ): string {
1035  if ($pass === null) {
1036  return '';
1037  }
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;
1042  }
1043 
1044  return $feedback_incorrect;
1045  }
1046 
1048  {
1050  $this->object->feedbackOBJ->getGenericFeedbackTestPresentation($this->object->getId(), true),
1051  true
1052  );
1053  }
1054 
1056  {
1058  $this->object->feedbackOBJ->getGenericFeedbackTestPresentation($this->object->getId(), false),
1059  true
1060  );
1061  }
1062 
1063  public function outQuestionType(): string
1064  {
1065  $count = $this->questionrepository->usageCount($this->object->getId());
1066 
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));
1070  }
1071  }
1072 
1073  return $this->questionrepository->getForQuestionId($this->object->getId())->getTypeName($this->lng);
1074  }
1075 
1076  protected function getTypeOptions(): array
1077  {
1078  foreach (SuggestedSolution::TYPES as $k => $v) {
1079  $options[$k] = $this->lng->txt($v);
1080  }
1081  return $options;
1082  }
1083 
1084  public function saveSuggestedSolution(): void
1085  {
1086  $this->suggestedsolution(true);
1087  }
1088 
1089  public function cancelSuggestedSolution(): void
1090  {
1091  $this->suggestedsolution();
1092  }
1093 
1094  public function suggestedsolution(bool $save = false): void
1095  {
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');
1100  }
1101 
1102  $output = '';
1103 
1104  $solution = $this->object->getSuggestedSolution();
1105  $options = $this->getTypeOptions();
1106 
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)
1112  ) {
1113  $solution = $this->getSuggestedSolutionsRepo()->create(
1114  $this->object->getId(),
1115  SuggestedSolution::TYPE_FILE
1116  );
1117  }
1118 
1119  $solution_filename = $this->request_data_collector->string('filename');
1120  if ($save && !empty($solution_filename)) {
1121  $solution = $solution->withTitle($solution_filename);
1122  }
1123 
1124  if ($solution !== null) {
1125  $form = new ilPropertyFormGUI();
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');
1131 
1132  $title = new ilSolutionTitleInputGUI($this->lng->txt('showSuggestedSolution'), 'solutiontype');
1133  $template = new ilTemplate(
1134  'tpl.il_as_qpl_suggested_solution_input_presentation.html',
1135  true,
1136  true,
1137  'components/ILIAS/TestQuestionPool'
1138  );
1139 
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(
1145  'VALUE_SOLUTION',
1146  " <a href='{$href}' target='content'>{$this->lng->txt('view')}</a> "
1147  );
1148  $template->parseCurrentBlock();
1149  } elseif (
1150  $solution->isOfTypeFile()
1151  && $solution->getFilename()
1152  ) {
1153  $href = $this->object->getSuggestedSolutionPathWeb() . $solution->getFilename();
1154  $link = " <a href='{$href}' target='content'>"
1155  . ilLegacyFormElementsUtil::prepareFormOutput($solution->getTitle())
1156  . '</a> ';
1157  $template->setCurrentBlock('preview');
1158  $template->setVariable('TEXT_SOLUTION', $this->lng->txt('suggested_solution'));
1159  $template->setVariable('VALUE_SOLUTION', $link);
1160  $template->parseCurrentBlock();
1161  }
1162 
1163  $template->setVariable('TEXT_TYPE', $this->lng->txt('type'));
1164  $template->setVariable('VALUE_TYPE', $options[$solution->getType()]);
1165 
1166  $title->setHtml($template->get());
1167  $deletesolution = new ilCheckboxInputGUI('', 'deleteSuggestedSolution');
1168  $deletesolution->setOptionTitle($this->lng->txt('deleteSuggestedSolution'));
1169  $title->addSubItem($deletesolution);
1170  $form->addItem($title);
1171 
1172  if ($solution->isOfTypeFile()) {
1173  $file = new ilFileInputGUI($this->lng->txt('fileDownload'), 'file');
1174  $file->setRequired(true);
1175  $file->enableFileNameSelection('filename');
1176 
1177  if ($save && $_FILES && $_FILES['file']['tmp_name'] && $file->checkInput()) {
1178  if (!file_exists($this->object->getSuggestedSolutionPath())) {
1179  ilFileUtils::makeDirParents($this->object->getSuggestedSolutionPath());
1180  }
1181 
1183  $_FILES['file']['tmp_name'],
1184  $_FILES['file']['name'],
1185  $this->object->getSuggestedSolutionPath() . $_FILES['file']['name']
1186  );
1187  if ($res) {
1188  ilFileUtils::renameExecutables($this->object->getSuggestedSolutionPath());
1189 
1190  // remove an old file download
1191  if ($solution->getFilename()) {
1192  @unlink($this->object->getSuggestedSolutionPath() . $solution->getFilename());
1193  }
1194 
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'));
1201 
1202  $this->getSuggestedSolutionsRepo()->update([$solution]);
1203 
1204  $this->tpl->setOnScreenMessage('success', $this->lng->txt('suggested_solution_added_successfully'), true);
1205  $this->ctrl->redirect($this, 'suggestedsolution');
1206  } else {
1207  // BH: $res as info string? wtf? it holds a bool or something else!!?
1208  $this->tpl->setOnScreenMessage('info', $res);
1209  }
1210  } else {
1211  if ($solution->getFilename()) {
1212  $file->setValue($solution->getFilename());
1213  $file->setFilename($solution->getTitle());
1214  }
1215  }
1216  $form->addItem($file);
1217  $hidden = new ilHiddenInputGUI('solutiontype');
1218  $hidden->setValue('file');
1219  $form->addItem($hidden);
1220  }
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'));
1224  }
1225 
1226  if ($save) {
1227  if ($form->checkInput()) {
1228  if ($solution->isOfTypeFile()) {
1229  $solution = $solution->withTitle($this->request_data_collector->string('filename'));
1230  }
1231 
1232  if (!$solution->isOfTypeLink()) {
1233  $this->getSuggestedSolutionsRepo()->update([$solution]);
1234  }
1235 
1236  $this->tpl->setOnScreenMessage('success', $this->lng->txt('msg_obj_modified'), true);
1237  $this->ctrl->redirect($this, 'suggestedsolution');
1238  }
1239  }
1240 
1241  $output = $form->getHTML();
1242  }
1243 
1244  $savechange = $this->ctrl->getCmd() === 'saveSuggestedSolutionType';
1245 
1246  $changeoutput = '';
1247  if ($this->access->checkAccess('write', '', $this->request_data_collector->getRefId())) {
1248  $formchange = new ilPropertyFormGUI();
1249  $formchange->setFormAction($this->ctrl->getFormAction($this));
1250 
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');
1256 
1257  $solutiontype = new ilRadioGroupInputGUI($this->lng->txt('suggestedSolutionType'), 'solutiontype');
1258  foreach ($options as $opt_value => $opt_caption) {
1259  $solutiontype->addOption(new ilRadioOption($opt_caption, $opt_value));
1260  }
1261  if ($solution) {
1262  $solutiontype->setValue($solution->getType());
1263  }
1264  $solutiontype->setRequired(true);
1265  $formchange->addItem($solutiontype);
1266 
1267  $formchange->addCommandButton('saveSuggestedSolutionType', $this->lng->txt('select'));
1268 
1269  if ($savechange) {
1270  $formchange->checkInput();
1271  }
1272  $changeoutput = $formchange->getHTML();
1273  }
1274  $this->tabs_gui->activateTab('suggested_solution');
1275  $this->tpl->setVariable('ADM_CONTENT', $changeoutput . $output);
1276  }
1277 
1278  public function outSolutionExplorer(): void
1279  {
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"]);
1285 
1286  $this->tpl->setOnScreenMessage('info', $this->lng->txt("select_object_to_link"));
1287 
1288  $parent_ref_id = $this->tree->getParentId($this->request_data_collector->getRefId());
1289  $exp = new ilSolutionExplorer($this->ctrl->getLinkTarget($this, 'suggestedsolution'), get_class($this));
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);
1298  }
1299 
1300  // build html-output
1301  $exp->setOutput(0);
1302 
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());
1308  }
1309 
1310  public function saveSuggestedSolutionType(): void
1311  {
1312  $solution_type = $this->request_data_collector->string('solutiontype');
1313 
1314  switch ($solution_type) {
1315  case 'lm':
1316  $type = 'lm';
1317  $search = 'lm';
1318  break;
1319  case 'git':
1320  $type = 'glo';
1321  $search = 'glo';
1322  break;
1323  case 'st':
1324  $type = 'lm';
1325  $search = 'st';
1326  break;
1327  case 'pg':
1328  $type = 'lm';
1329  $search = 'pg';
1330  break;
1331  case 'file':
1332  case 'text':
1333  default:
1334  $this->suggestedsolution();
1335  return;
1336  }
1337 
1338  if (isset($solution_type)) {
1339  $this->ctrl->setParameter($this, 'expandCurrentPath', 1);
1340  }
1341  $this->ctrl->setParameter($this, 'link_new_type', $type);
1342  $this->ctrl->setParameter($this, 'search_link_type', $search);
1343  $this->ctrl->redirect($this, 'outSolutionExplorer');
1344  }
1345 
1346  public function cancelExplorer(): void
1347  {
1348  $this->ctrl->redirect($this, 'suggestedsolution');
1349  }
1350 
1351  public function outPageSelector(): void
1352  {
1353  $this->ctrl->setParameter($this, 'q_id', $this->object->getId());
1354 
1355  $cont_obj_gui = new ilObjContentObjectGUI('', $this->request_data_collector->int('source_id'), true);
1356  $cont_obj = $cont_obj_gui->getObject();
1357  $pages = ilLMPageObject::getPageList($cont_obj->getId());
1358  $shownpages = [];
1359  $tree = $cont_obj->getLMTree();
1360  $chapters = $tree->getSubtree($tree->getNodeData($tree->getRootId()));
1361 
1362  $rows = [];
1363 
1364  foreach ($chapters as $chapter) {
1365  $chapterpages = $tree->getChildsByType($chapter['obj_id'], 'pg');
1366  foreach ($chapterpages as $page) {
1367  if ($page['type'] == $this->request_data_collector->raw('search_link_type')) {
1368  array_push($shownpages, $page['obj_id']);
1369 
1370  if ($tree->isInTree($page['obj_id'])) {
1371  $path_str = $this->getContextPath($cont_obj, $page['obj_id']);
1372  } else {
1373  $path_str = '---';
1374  }
1375 
1376  $this->ctrl->setParameter($this, $page['type'], $page['obj_id']);
1377  $rows[] = [
1378  'title' => $page['title'],
1379  'description' => ilLegacyFormElementsUtil::prepareFormOutput($path_str),
1380  'text_add' => $this->lng->txt('add'),
1381  'href_add' => $this->ctrl->getLinkTarget($this, 'add' . strtoupper($page['type']))
1382  ];
1383  }
1384  }
1385  }
1386  foreach ($pages as $page) {
1387  if (!in_array($page['obj_id'], $shownpages)) {
1388  $this->ctrl->setParameter($this, $page['type'], $page['obj_id']);
1389  $rows[] = [
1390  'title' => $page['title'],
1391  'description' => '---',
1392  'text_add' => $this->lng->txt('add'),
1393  'href_add' => $this->ctrl->getLinkTarget($this, 'add' . strtoupper($page['type']))
1394  ];
1395  }
1396  }
1397 
1398  $table = new ilQuestionInternalLinkSelectionTableGUI($this, 'cancelExplorer', __METHOD__);
1399  $table->setTitle($this->lng->txt('obj_' . ilUtil::stripSlashes($this->request_data_collector->string('search_link_type'))));
1400  $table->setData($rows);
1401 
1402  $this->tpl->setContent($table->getHTML());
1403  }
1404 
1405  public function outChapterSelector(): void
1406  {
1407  $this->ctrl->setParameter($this, 'q_id', $this->object->getId());
1408 
1409  $cont_obj_gui = new ilObjContentObjectGUI('', $this->request_data_collector->int('source_id'), true);
1410  $cont_obj = $cont_obj_gui->getObject();
1411  $ctree = $cont_obj->getLMTree();
1412  $nodes = $ctree->getSubtree($ctree->getNodeData($ctree->getRootId()));
1413 
1414  $rows = [];
1415 
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']);
1419  $rows[] = [
1420  'title' => $node['title'],
1421  'description' => '',
1422  'text_add' => $this->lng->txt('add'),
1423  'href_add' => $this->ctrl->getLinkTarget($this, 'add' . strtoupper($node['type']))
1424  ];
1425  }
1426  }
1427 
1428  $table = new ilQuestionInternalLinkSelectionTableGUI($this, 'cancelExplorer', __METHOD__);
1429  $table->setTitle($this->lng->txt('obj_' . ilUtil::stripSlashes($this->request_data_collector->string('search_link_type'))));
1430  $table->setData($rows);
1431 
1432  $this->tpl->setContent($table->getHTML());
1433  }
1434 
1435  public function outGlossarySelector(): void
1436  {
1437  $this->ctrl->setParameter($this, 'q_id', $this->object->getId());
1438 
1439  $glossary = new ilObjGlossary($this->request_data_collector->int('source_id'), true);
1440  $terms = $glossary->getTermList();
1441 
1442  $rows = [];
1443 
1444  foreach ($terms as $term) {
1445  $this->ctrl->setParameter($this, 'git', $term['id']);
1446  $rows[] = [
1447  'title' => $term['term'],
1448  'description' => '',
1449  'text_add' => $this->lng->txt('add'),
1450  'href_add' => $this->ctrl->getLinkTarget($this, 'addGIT')
1451  ];
1452  }
1453 
1454  $table = new ilQuestionInternalLinkSelectionTableGUI($this, 'cancelExplorer', __METHOD__);
1455  $table->setTitle($this->lng->txt('glossary_term'));
1456  $table->setData($rows);
1457 
1458  $this->tpl->setContent($table->getHTML());
1459  }
1460 
1461  protected function createSuggestedSolutionLinkingTo(string $type, string $target)
1462  {
1463  $repo = $this->getSuggestedSolutionsRepo();
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;
1467 
1468  $solution = $repo->create($question_id, $type)
1469  ->withSubquestionIndex($subquestion_index)
1470  ->withInternalLink($target);
1471 
1472  $repo->update([$solution]);
1473  }
1474 
1475  public function linkChilds(): void
1476  {
1477  $this->ctrl->saveParameter($this, ["subquestion_index", "link_new_type", "search_link_type"]);
1478  switch ($this->request_data_collector->string("search_link_type")) {
1479  case "pg":
1480  $this->outPageSelector();
1481  break;
1482  case "st":
1483  $this->outChapterSelector();
1484  break;
1485  case "glo":
1486  $this->outGlossarySelector();
1487  break;
1488  case "lm":
1489  $target = "il__lm_" . $this->request_data_collector->raw("source_id");
1490  $this->createSuggestedSolutionLinkingTo('lm', $target);
1491  $this->tpl->setOnScreenMessage('success', $this->lng->txt("suggested_solution_added_successfully"), true);
1492  $this->ctrl->redirect($this, 'suggestedsolution');
1493  break;
1494  }
1495  }
1496 
1497  public function addPG(): void
1498  {
1499  $target = "il__pg_" . $this->request_data_collector->raw("pg");
1500  $this->createSuggestedSolutionLinkingTo('pg', $target);
1501  $this->tpl->setOnScreenMessage('success', $this->lng->txt("suggested_solution_added_successfully"), true);
1502  $this->ctrl->redirect($this, 'suggestedsolution');
1503  }
1504 
1505  public function addST(): void
1506  {
1507  $target = "il__st_" . $this->request_data_collector->raw("st");
1508  $this->createSuggestedSolutionLinkingTo('st', $target);
1509  $this->tpl->setOnScreenMessage('success', $this->lng->txt("suggested_solution_added_successfully"), true);
1510  $this->ctrl->redirect($this, 'suggestedsolution');
1511  }
1512 
1513  public function addGIT(): void
1514  {
1515  $target = "il__git_" . $this->request_data_collector->raw("git");
1516  $this->createSuggestedSolutionLinkingTo('git', $target);
1517  $this->tpl->setOnScreenMessage('success', $this->lng->txt("suggested_solution_added_successfully"), true);
1518  $this->ctrl->redirect($this, 'suggestedsolution');
1519  }
1520 
1521  public function isSaveCommand(): bool
1522  {
1523  return in_array($this->ctrl->getCmd(), self::QUESTION_SAVE_CMDS);
1524  }
1525 
1526  public static function getCommandsFromClassConstants(
1527  string $guiClassName,
1528  string $cmdConstantNameBegin = 'CMD_'
1529  ): array {
1530  $reflectionClass = new ReflectionClass($guiClassName);
1531 
1532  $commands = null;
1533 
1534  if ($reflectionClass instanceof ReflectionClass) {
1535  $commands = [];
1536 
1537  foreach ($reflectionClass->getConstants() as $constName => $constValue) {
1538  if (substr($constName, 0, strlen($cmdConstantNameBegin)) == $cmdConstantNameBegin) {
1539  $commands[] = $constValue;
1540  }
1541  }
1542  }
1543 
1544  return $commands;
1545  }
1546 
1547  public function setQuestionTabs(): void
1548  {
1549  $this->tabs_gui->clearTargets();
1550 
1551  if ($this->object->getId() > 0) {
1552  $this->setDefaultTabs($this->tabs_gui);
1553  $this->setQuestionSpecificTabs($this->tabs_gui);
1554  }
1555  $this->addBackTab($this->tabs_gui);
1556  }
1557 
1558  protected function setDefaultTabs(ilTabsGUI $tabs_gui): void
1559  {
1560  $this->ctrl->setParameterByClass(ilAssQuestionPageGUI::class, 'q_id', $this->object->getId());
1561  $this->ctrl->setParameterByClass(static::class, 'q_id', $this->object->getId());
1562 
1563  $this->addTab_Question($tabs_gui);
1564  $this->addTab_QuestionFeedback($tabs_gui);
1565  $this->addTab_QuestionHints($tabs_gui);
1566  $this->addTab_SuggestedSolution($tabs_gui, static::class);
1567  }
1568 
1569  protected function setQuestionSpecificTabs(ilTabsGUI $tabs_gui): void
1570  {
1571  }
1572 
1573  public function addTab_SuggestedSolution(ilTabsGUI $tabs, string $classname): void
1574  {
1575  $this->ctrl->setParameterByClass($classname, 'q_id', $this->object->getId());
1576  $tabs->addTarget(
1577  'suggested_solution',
1578  $this->ctrl->getLinkTargetByClass($classname, 'suggestedsolution'),
1579  [
1580  'suggestedsolution',
1581  'saveSuggestedSolution',
1582  'outSolutionExplorer',
1583  'cancel',
1584  'addSuggestedSolution',
1585  'cancelExplorer' ,
1586  'linkChilds',
1587  'removeSuggestedSolution'
1588  ]
1589  );
1590  }
1591 
1592  final public function getEditQuestionTabCommands(): array
1593  {
1594  return array_merge($this->getBasicEditQuestionTabCommands(), $this->getAdditionalEditQuestionCommands());
1595  }
1596 
1597  protected function getBasicEditQuestionTabCommands(): array
1598  {
1599  return ['editQuestion', 'save', 'originalSyncForm'];
1600  }
1601 
1602  protected function getAdditionalEditQuestionCommands(): array
1603  {
1604  return [];
1605  }
1606 
1607  protected function addTab_QuestionFeedback(ilTabsGUI $tabs): void
1608  {
1609  $tabCommands = self::getCommandsFromClassConstants(ilAssQuestionFeedbackEditingGUI::class);
1610 
1611  $this->ctrl->setParameterByClass(ilAssQuestionFeedbackEditingGUI::class, 'q_id', $this->object->getId());
1612  $tabLink = $this->ctrl->getLinkTargetByClass(ilAssQuestionFeedbackEditingGUI::class, ilAssQuestionFeedbackEditingGUI::CMD_SHOW);
1613 
1614  $tabs->addTarget('feedback', $tabLink, $tabCommands, $this->ctrl->getCmdClass(), '');
1615  }
1616 
1617  protected function addTab_QuestionHints(ilTabsGUI $tabs): void
1618  {
1619  switch (strtolower($this->ctrl->getCmdClass())) {
1620  case 'ilassquestionhintsgui':
1621  $tab_commands = self::getCommandsFromClassConstants(ilAssQuestionHintsGUI::class);
1622  break;
1623 
1624  case 'ilassquestionhintgui':
1625  $tab_commands = self::getCommandsFromClassConstants(ilAssQuestionHintGUI::class);
1626  break;
1627 
1628  default:
1629  $tab_commands = [];
1630  }
1631 
1632  $this->ctrl->setParameterByClass(ilAssQuestionHintsGUI::class, 'q_id', $this->object->getId());
1633  $tabs->addTarget(
1634  'tst_question_hints_tab',
1635  $this->ctrl->getLinkTargetByClass(ilAssQuestionHintsGUI::class, ilAssQuestionHintsGUI::CMD_SHOW_LIST),
1636  $tab_commands,
1637  $this->ctrl->getCmdClass(),
1638  ''
1639  );
1640  }
1641 
1642  protected function addTab_Question(ilTabsGUI $tabs_gui): void
1643  {
1644  $tabs_gui->addTarget(
1645  'edit_question',
1646  $this->ctrl->getLinkTargetByClass(
1647  static::class,
1648  'editQuestion'
1649  ),
1650  'editQuestion',
1651  '',
1652  '',
1653  false
1654  );
1655  }
1656 
1657  protected function hasCorrectSolution($activeId, $passIndex): bool
1658  {
1659  $reachedPoints = $this->object->getAdjustedReachedPoints((int) $activeId, (int) $passIndex, true);
1660  $maximumPoints = $this->object->getMaximumPoints();
1661 
1662  return $reachedPoints == $maximumPoints;
1663  }
1664 
1665  public function isAutosaveable(): bool
1666  {
1667  return $this->object instanceof QuestionAutosaveable;
1668  }
1669 
1670  protected function writeQuestionGenericPostData(): void
1671  {
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'));
1675 
1676  $nr_of_tries = $this->request_data_collector->int('nr_of_tries');
1677  if ($this->object->getSelfAssessmentEditingMode()) {
1678  $this->object->setNrOfTries($nr_of_tries);
1679  }
1680 
1681  try {
1683  $this->request_data_collector->string('lifecycle')
1684  );
1685  $this->object->setLifecycle($lifecycle);
1687  }
1688 
1689  $this->object->setQuestion(
1691  $this->request_data_collector->string('question')
1692  )
1693  );
1694 
1695  $this->setTestSpecificProperties();
1696  }
1697 
1698  final public function outQuestionForTest(
1699  string $formaction,
1700  int $active_id,
1701  ?int $pass,
1702  bool $is_question_postponed = false,
1703  array|bool $user_post_solutions = false,
1704  bool $show_specific_inline_feedback = false
1705  ): void {
1706  $formaction = $this->completeTestOutputFormAction($formaction, $active_id, $pass);
1707 
1708  $test_output = $this->getTestOutput(
1709  $active_id,
1710  $pass,
1711  $is_question_postponed,
1712  $user_post_solutions,
1713  $show_specific_inline_feedback
1714  );
1715 
1716  $this->magicAfterTestOutput();
1717 
1718  $this->tpl->setVariable("QUESTION_OUTPUT", $test_output);
1719  $this->tpl->setVariable("FORMACTION", $formaction);
1720  $this->tpl->setVariable("ENCTYPE", 'enctype="' . $this->getFormEncodingType() . '"');
1721  $this->tpl->setVariable("FORM_TIMESTAMP", (string) time());
1722  }
1723 
1724  protected function completeTestOutputFormAction(
1725  string $form_action,
1726  int $active_id,
1727  int $pass
1728  ): string {
1729  return $form_action;
1730  }
1731 
1732  public function magicAfterTestOutput(): void
1733  {
1734  return;
1735  }
1736 
1737  public function getFormEncodingType(): string
1738  {
1739  return self::FORM_ENCODING_URLENCODE;
1740  }
1741 
1742  protected function addBackTab(ilTabsGUI $tabs_gui): void
1743  {
1744  if ($this->object->getId() <= 0) {
1745  $tabs_gui->setBackTarget(
1746  $this->lng->txt('cancel'),
1747  $this->ctrl->getParentReturnByClass(
1749  ilObject::_lookupType($this->object->getObjId())
1750  ) . 'GUI'
1751  )
1752  );
1753  return;
1754  }
1755  $this->ctrl->setParameterByClass(
1756  ilAssQuestionPreviewGUI::class,
1757  'q_id',
1758  $this->object->getId()
1759  );
1760  $this->ctrl->saveParameterByClass(ilAssQuestionPreviewGUI::class, 'prev_qid');
1761  $tabs_gui->setBackTarget(
1762  $this->lng->txt('backtocallingpage'),
1763  $this->ctrl->getLinkTargetByClass(
1764  ilAssQuestionPreviewGUI::class,
1766  )
1767  );
1768  $this->ctrl->clearParameterByClass(ilAssQuestionPreviewGUI::class, 'prev_qid');
1769  }
1770 
1771  public function setPreviewSession(ilAssQuestionPreviewSession $preview_session): void
1772  {
1773  $this->preview_session = $preview_session;
1774  }
1775 
1780  {
1781  return $this->preview_session;
1782  }
1783 
1785  {
1786  $form = new ilPropertyFormGUI();
1787  $form->setFormAction($this->ctrl->getFormAction($this));
1788  $form->setId($this->getType());
1789  $form->setTitle($this->outQuestionType());
1790  $form->setTableWidth('100%');
1791  $form->setMultipart(true);
1792  return $form;
1793  }
1794 
1795  public function showHints(): void
1796  {
1797  $this->ctrl->redirectByClass(ilAssQuestionHintsGUI::class, ilAssQuestionHintsGUI::CMD_SHOW_LIST);
1798  }
1799 
1800  protected function escapeTemplatePlaceholders(string $text): string
1801  {
1802  return str_replace(['{','}'], ['&#123;','&#125;'], $text);
1803  }
1804 
1805  protected function buildEditForm(): ilPropertyFormGUI
1806  {
1807  $this->editQuestion(true); // TODO bheyser: editQuestion should be added to the abstract base class with a unified signature
1808  return $this->editForm;
1809  }
1810 
1811  public function buildFocusAnchorHtml(): string
1812  {
1813  return '<div id="focus"></div>';
1814  }
1815 
1816  public function isAnswerFrequencyStatisticSupported(): bool
1817  {
1818  return true;
1819  }
1820 
1821  public function getSubQuestionsIndex(): array
1822  {
1823  return [0];
1824  }
1825 
1826  public function getAnswersFrequency($relevantAnswers, $questionIndex): array
1827  {
1828  return [];
1829  }
1830 
1831  public function getAnswerFrequencyTableGUI($parentGui, $parentCmd, $relevantAnswers, $questionIndex): ilAnswerFrequencyStatisticTableGUI
1832  {
1833  $table = new ilAnswerFrequencyStatisticTableGUI($parentGui, $parentCmd, $this->object);
1834  $table->setQuestionIndex($questionIndex);
1835  $table->setData($this->getAnswersFrequency($relevantAnswers, $questionIndex));
1836  $table->initColumns();
1837  return $table;
1838  }
1839 
1841  {
1842  }
1843 
1845  {
1846  }
1847 
1849  {
1850  }
1851 
1852 
1853  protected function generateCorrectnessIconsForCorrectness(int $correctness): string
1854  {
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");
1859  break;
1860  case self::CORRECTNESS_MOSTLY_OK:
1861  $icon_name = 'standard/icon_ok.svg';
1862  $label = $this->lng->txt("answer_is_not_correct_but_positive");
1863  break;
1864  case self::CORRECTNESS_OK:
1865  $icon_name = 'standard/icon_ok.svg';
1866  $label = $this->lng->txt("answer_is_right");
1867  break;
1868  default:
1869  return '';
1870  }
1871  $path = ilUtil::getImagePath($icon_name);
1872  $icon = $this->ui->factory()->symbol()->icon()->custom(
1873  $path,
1874  $label
1875  );
1876  return $this->ui->renderer()->render($icon);
1877  }
1878 
1887  public static function prepareTextareaOutput(
1888  ?string $txt_output,
1889  bool $prepare_for_latex_output = false,
1890  bool $omitNl2BrWhenTextArea = false
1891  ): string {
1892  if ($txt_output === null || $txt_output === '') {
1893  return '';
1894  }
1895 
1896  $result = $txt_output;
1897  $is_html = false;
1898 
1899  if (strlen(strip_tags($result)) < strlen($result)) {
1900  $is_html = true;
1901  }
1902 
1903  // removed: did not work with magic_quotes_gpc = On
1904  if (!$is_html) {
1905  if (!$omitNl2BrWhenTextArea) {
1906  // if the string does not contain HTML code, replace the newlines with HTML line breaks
1907  $result = preg_replace("/[\n]/", "<br />", $result);
1908  }
1909  } else {
1910  // patch for problems with the <pre> tags in tinyMCE
1911  if (preg_match_all("/(<pre>.*?<\/pre>)/ims", $result, $matches)) {
1912  foreach ($matches[0] as $found) {
1913  $replacement = "";
1914  if (strpos("\n", $found) === false) {
1915  $replacement = "\n";
1916  }
1917  $removed = preg_replace("/<br\s*?\/>/ims", $replacement, $found);
1918  $result = str_replace($found, $removed, $result);
1919  }
1920  }
1921  }
1922 
1923  // since server side mathjax rendering does include svg-xml structures that indeed have linebreaks,
1924  // do latex conversion AFTER replacing linebreaks with <br>. <svg> tag MUST NOT contain any <br> tags.
1925  if ($prepare_for_latex_output) {
1926  $result = ilMathJax::getInstance()->insertLatexImages($result, "<span class\=\"latex\">", "<\/span>");
1927  $result = ilMathJax::getInstance()->insertLatexImages($result, "\[tex\]", "\[\/tex\]");
1928  }
1929 
1930  if ($prepare_for_latex_output) {
1931  // replace special characters to prevent problems with the ILIAS template system
1932  // eg. if someone uses {1} as an answer, nothing will be shown without the replacement
1933  $result = str_replace("{", "&#123;", $result);
1934  $result = str_replace("}", "&#125;", $result);
1935  $result = str_replace("\\", "&#92;", $result);
1936  }
1937 
1938  return $result;
1939  }
1940 
1943  {
1944  if (is_null($this->suggestedsolution_repo)) {
1945  $dic = QuestionPoolDIC::dic();
1946  $this->suggestedsolution_repo = $dic['question.repo.suggestedsolutions'];
1947  }
1949  }
1950 
1955  protected function cleanupAnswerText(array $answer_text, bool $is_rte): array
1956  {
1957  if (!is_array($answer_text)) {
1958  return [];
1959  }
1960 
1961  if ($is_rte) {
1963  $answer_text,
1964  false,
1966  );
1967  }
1968 
1970  $answer_text,
1971  true,
1972  self::ALLOWED_PLAIN_TEXT_TAGS
1973  );
1974  }
1975 
1976  public function isInLearningModuleContext(): bool
1977  {
1978  return $this->parent_type_is_lm;
1979  }
1980  public function setInLearningModuleContext(bool $flag): void
1981  {
1982  $this->parent_type_is_lm = $flag;
1983  }
1984 
1985  protected function addSaveOnEnterOnLoadCode(): void
1986  {
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'
1996  ) {
1997  e.preventDefault();
1998  form.requestSubmit(button);
1999  }
2000  })
2001  }
2002  ");
2003  }
2004 
2005  public function cmdNeedsExistingQuestion(string $cmd): bool
2006  {
2007  return in_array($cmd, static::ADDITIONAL_CMDS_NEEDING_EXISTING_QST);
2008  }
2009 
2010  public function setContextAllowsSyncToPool(bool $sync_allowed): void
2011  {
2012  $this->context_allows_sync_to_pool = $sync_allowed;
2013  }
2014 
2015  public function needsSyncQuery(): bool
2016  {
2017  return $this->context_allows_sync_to_pool
2018  && $this->object->hasWritableOriginalInQuestionPool();
2019  }
2020 
2021  public function getQuestionSyncModal(string $cmd, string $cmd_class = ''): string
2022  {
2023  if ($cmd_class === '') {
2024  $cmd_class = static::class;
2025  }
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()
2034  )
2035  ])->withActionButtonLabel($this->lng->txt('sync_question_to_pool'));
2036  return $this->ui->renderer()->render(
2037  $modal->withOnLoad($modal->getShowSignal())
2038  );
2039  }
2040 
2042  int $active_id,
2043  int $pass,
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
2053  ): ?string {
2054  $autosave_solutions = $this->object->getSolutionValues($active_id, $pass, false);
2055  if ($autosave_solutions === []) {
2056  return null;
2057  }
2058  return $this->renderSolutionOutput(
2059  $autosave_solutions,
2060  $active_id,
2061  $pass,
2062  $graphical_output,
2063  $result_output,
2064  $show_question_only,
2065  $show_feedback,
2066  $show_correct_solution,
2067  $show_manual_scoring,
2068  $show_question_text,
2069  $show_autosave_title,
2070  $show_inline_feedback
2071  );
2072  }
2073 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const ADDITIONAL_CONTENT_EDITING_MODE_IPE
static getSelfAssessmentTags()
Get tags allowed in question tags in self assessment mode.
hasCorrectSolution($activeId, $passIndex)
saveCorrectionsFormProperties(ilPropertyFormGUI $form)
This class represents an option in a radio group.
$res
Definition: ltiservices.php:66
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...
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
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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)
This class represents a selection list property in a property form.
addTab_QuestionHints(ilTabsGUI $tabs)
ilTestQuestionNavigationGUI $navigationGUI
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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
const ADDITIONAL_CMDS_NEEDING_EXISTING_QST
There are functions that need an existing question.
This class represents a file property in a property form.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilPropertyFormGUI $editForm
const SESSION_PREVIEW_DATA_BASE_INDEX
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
createSuggestedSolutionLinkingTo(string $type, string $target)
getListHTML(bool $a_init_form=true)
Help GUI class.
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)
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)
escapeTemplatePlaceholders(string $text)
setDefaultTabs(ilTabsGUI $tabs_gui)
setObject(assQuestion $question)
addOption(ilRadioOption $a_option)
const SUGGESTED_SOLUTION_COMMANDS_CANCEL
writePostData(bool $always=false)
Evaluates a posted edit form and writes the form data in the question object.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalPageTemplate $tpl
static prepareFormOutput($a_str, bool $a_strip=false)
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.
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
$path
Definition: ltiservices.php:29
SuggestedSolutionsDatabaseRepository $suggestedsolution_repo
addQuestionFormCommandButtons(ilPropertyFormGUI $form)
ilAssQuestionPreviewSession $preview_session
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)
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
This class represents a hidden form property in a property form.
setPresentationContext(string $presentationContext)
populateCorrectionsFormProperties(ilPropertyFormGUI $form)
This class represents a property in a property form.
ilRbacSystem $rbacsystem
setErrorMessage(string $errormessage)
readonly ilTestLegacyFormsHelper $forms_helper
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
setQuestionActionCmd(string $questionActionCmd)
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)
This class represents a number property in a property form.
setValue(?string $a_value)
setInLearningModuleContext(bool $flag)
global $DIC
Definition: shib_login.php:22
setBackTarget(string $a_title, string $a_target, string $a_frame="")
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...
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)
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
$lifecycle
setRequired(bool $a_required)
addCommandButton(string $a_cmd, string $a_text, string $a_id="")
cmdNeedsExistingQuestion(string $cmd)
getAssignmentsOfItem(int $a_item_id)
Get assignments for item.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setRenderPurpose(string $renderPurpose)
static getClassByType(string $obj_type)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setEditContext(string $editContext)
setQuestionHTML(array $question_html)
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.
getILIASPage(string $html="")
Returns the ILIAS Page around a question.
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.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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.
Comment GUI.
This class represents a text area property in a property form.
ilComponentRepository $component_repository
setCopyToNewPoolOnSave(?string $pool_title)
Class ilObjContentObjectGUI.
cleanupAnswerText(array $answer_text, bool $is_rte)
sk - 12.05.2023: This is one more of those that we need, but don&#39;t want.
addErrorMessage(string $errormessage)
getPreview(bool $show_question_only=false, bool $show_inline_feedback=false)
$dic
Definition: result.php:31
setPreviousSolutionPrefilled(bool $previousSolutionPrefilled)
const SUGGESTED_SOLUTION_COMMANDS_DEFAULT
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
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...
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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)
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.
setNavigationGUI(?ilTestQuestionNavigationGUI $navigationGUI)
renderEditForm(ilPropertyFormGUI $form)
ilAccessHandler $access
static getFeedbackClassNameByQuestionType(string $questionType)
static stripOnlySlashes(string $a_str)
getGenericFeedbackOutput(int $active_id, ?int $pass)