ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjQuestionPoolGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
40 use ILIAS\Style\Content\Service as ContentStyle;
41 
67 {
69 
70  public const SUPPORTED_IMPORT_MIME_TYPES = [MimeType::APPLICATION__ZIP, MimeType::TEXT__XML];
71  public const DEFAULT_CMD = 'questions';
72 
74  protected Service $taxonomy;
75  protected ilDBInterface $db;
77  protected ilHelpGUI $help;
88  private ContentStyle $content_style;
89 
93 
94  public function __construct()
95  {
97  global $DIC;
98  $this->type = 'qpl';
99 
100  $this->db = $DIC['ilDB'];
101  $this->log = $DIC['ilLog'];
102  $this->help = $DIC['ilHelp'];
103  $this->global_screen = $DIC['global_screen'];
104  $this->component_factory = $DIC['component.factory'];
105  $this->component_repository = $DIC['component.repository'];
106  $this->navigation_history = $DIC['ilNavigationHistory'];
107  $this->ui_service = $DIC->uiService();
108  $this->taxonomy = $DIC->taxonomy();
109  $this->http = $DIC->http();
110  $this->archives = $DIC->archives();
111  $this->content_style = $DIC->contentStyle();
112 
113  $this->data_factory = new DataFactory();
114 
115  $local_dic = QuestionPoolDIC::dic();
116  $this->request_data_collector = $local_dic['request_data_collector'];
117  $this->questionrepository = $local_dic['question.general_properties.repository'];
118  $this->global_test_settings = $local_dic['global_test_settings'];
119 
120  parent::__construct('', $this->request_data_collector->getRefId(), true, false);
121 
122  $this->ctrl->saveParameter($this, [
123  'ref_id',
124  'test_ref_id',
125  'test_express_mode',
126  'q_id',
127  'tax_node',
128  'consumer_context'
129  ]);
130  $this->ctrl->saveParameterByClass('ilAssQuestionPageGUI', 'consumer_context');
131  $this->ctrl->saveParameterByClass('ilobjquestionpoolgui', 'consumer_context');
132 
133  $this->lng->loadLanguageModule('assessment');
134 
135  $here_uri = $this->data_factory->uri($this->request->getUri()->__toString());
136  $url_builder = new URLBuilder($here_uri);
137  $query_params_namespace = ['qpool', 'table'];
138  list($url_builder, $action_parameter_token, $row_id_token) = $url_builder->acquireParameters(
139  $query_params_namespace,
140  'action', //this is the actions's parameter name
141  'qids' //this is the parameter name to be used for row-ids
142  );
143  $this->url_builder = $url_builder;
144  $this->action_parameter_token = $action_parameter_token;
145  $this->row_id_token = $row_id_token;
146 
147  $this->notes_service->gui()->initJavascript();
148  }
149 
150  public function executeCommand(): void
151  {
152  $write_access = $this->access->checkAccess('write', '', $this->request_data_collector->getRefId());
153 
154  if ((!$this->access->checkAccess('read', '', $this->request_data_collector->getRefId()))
155  && (!$this->access->checkAccess('visible', '', $this->request_data_collector->getRefId()))) {
156  $this->ilias->raiseError($this->lng->txt('permission_denied'), $this->ilias->error_obj->MESSAGE);
157  }
158 
159  if (!$this->getCreationMode() &&
160  $this->access->checkAccess('read', '', $this->request_data_collector->getRefId())) {
161  if ('qpl' === $this->object->getType()) {
162  $this->navigation_history->addItem(
163  $this->request_data_collector->getRefId(),
164  ilLink::_getLink($this->request_data_collector->getRefId(), "qpl"),
165  'qpl',
166  );
167  }
168  }
169 
170  $cmd = $this->ctrl->getCmd(self::DEFAULT_CMD);
171  $next_class = $this->ctrl->getNextClass($this);
172  $q_id = $this->request_data_collector->getQuestionId() ?? null;
173 
174  if (in_array($next_class, ['', 'ilobjquestionpoolgui']) && $cmd == self::DEFAULT_CMD) {
175  $q_id = -1;
176  }
177 
178  $this->prepareOutput();
179 
180  $this->tpl->addCss(ilUtil::getStyleSheetLocation('output', 'test_print.css'), 'print');
181 
182  $q_type = $this->request_data_collector->string('question_type');
183  switch ($next_class) {
184  case 'ilcommonactiondispatchergui':
186  $this->ctrl->forwardCommand($gui);
187  break;
188 
189  case 'ilobjectmetadatagui':
190  if (!$this->access->checkAccess('write', '', $this->object->getRefId())) {
191  $this->error->raiseError($this->lng->txt('permission_denied'), $this->error->WARNING);
192  }
193  $md_gui = new ilObjectMetaDataGUI($this->object);
194  $this->ctrl->forwardCommand($md_gui);
195  break;
196 
197  case 'ilassquestionpreviewgui':
198  if (!$this->access->checkAccess('read', '', $this->object->getRefId())) {
199  $this->redirectAfterMissingWrite();
200  }
201 
202  $this->ctrl->saveParameterByClass(ilAssQuestionPreviewGUI::class, 'q_id');
203  $this->ctrl->saveParameterByClass(ilAssQuestionHintRequestGUI::class, 'q_id');
204  $this->ctrl->saveParameter($this, 'q_id');
205  $gui = new ilAssQuestionPreviewGUI(
206  $this->ctrl,
207  $this->rbac_system,
208  $this->tabs_gui,
209  $this->toolbar,
210  $this->tpl,
211  $this->ui_factory,
212  $this->lng,
213  $this->db,
214  $this->refinery->random(),
216  $this->http,
219  );
220 
221  $question_gui = assQuestion::instantiateQuestionGUI($this->request_data_collector->int('q_id'));
222  $gui->setPrimaryCmd(
223  $this->lng->txt('edit_question'),
224  $this->ctrl->getLinkTargetByClass(
225  get_class($question_gui),
226  'editQuestion'
227  )
228  );
229  $gui->addAdditionalCmd(
230  $this->lng->txt('edit_page'),
231  $this->ctrl->getLinkTargetByClass(
232  ilAssQuestionPageGUI::class,
233  'edit'
234  )
235  );
236 
237  $gui->initQuestion(
238  $question_gui,
239  $this->object->getId()
240  );
241  $gui->initPreviewSettings($this->object->getRefId());
242  $gui->initPreviewSession($this->user->getId(), $this->fetchAuthoringQuestionIdParamater());
243  $gui->initHintTracking();
244  $this->ctrl->clearParameterByClass(self::class, 'q_id');
245  $this->tabs_gui->setBackTarget(
246  $this->lng->txt('backtocallingpool'),
247  $this->ctrl->getLinkTargetByClass(self::class, self::DEFAULT_CMD)
248  );
249 
250  $this->help->setScreenIdComponent('qpl');
251 
252  $this->ctrl->forwardCommand($gui);
253  break;
254 
255  case 'ilassquestionpagegui':
256  if ($cmd == 'finishEditing') {
257  $this->ctrl->redirectByClass('ilassquestionpreviewgui', 'show');
258  break;
259  }
260  if ($cmd === 'edit' && !$this->access->checkAccess('write', '', $this->object->getRefId())) {
261  $this->redirectAfterMissingWrite();
262  }
263  $this->tpl->setCurrentBlock('ContentStyle');
264  $this->tpl->setVariable('LOCATION_CONTENT_STYLESHEET', ilObjStyleSheet::getContentStylePath(0));
265  $this->tpl->parseCurrentBlock();
266 
267  $this->tpl->setCurrentBlock('SyntaxStyle');
268  $this->tpl->setVariable('LOCATION_SYNTAX_STYLESHEET', ilObjStyleSheet::getSyntaxStylePath());
269  $this->tpl->parseCurrentBlock();
271  $question_gui->setRenderPurpose(assQuestionGUI::RENDER_PURPOSE_PREVIEW);
272  $question_gui->setQuestionTabs();
273  $question_gui->getObject()->setObjId($this->object->getId());
274  $question_gui->setQuestionActionCmd('');
275 
276  if ($this->object->getType() === 'qpl') {
277  $question_gui->addHeaderAction();
278  }
279 
280  $question = $question_gui->getObject();
281 
282  if ($this->questionrepository->isInActiveTest($question->getObjId())) {
283  $this->tpl->setOnScreenMessage(
284  'failure',
285  $this->lng->txt('question_is_part_of_running_test'),
286  true
287  );
288  $this->ctrl->redirectByClass('ilAssQuestionPreviewGUI', ilAssQuestionPreviewGUI::CMD_SHOW);
289  }
290 
291  $this->ctrl->saveParameter($this, 'q_id');
292  $this->lng->loadLanguageModule('content');
293  $this->ctrl->setReturnByClass('ilAssQuestionPageGUI', 'view');
294  $this->ctrl->setReturn($this, self::DEFAULT_CMD);
295  $page_gui = new ilAssQuestionPageGUI($this->request_data_collector->getQuestionId());
296  $page_gui->obj->addUpdateListener(
297  $question,
298  'updateTimestamp'
299  );
300  $page_gui->setEditPreview(true);
301  $page_gui->setEnabledTabs(false);
302  $page_gui->setQuestionHTML([$question_gui->getObject()->getId() => $question_gui->getPreview(true)]);
303  $page_gui->setTemplateTargetVar('ADM_CONTENT');
304  $page_gui->setOutputMode('edit');
305  $page_gui->setHeader($question->getTitleForHTMLOutput());
306  $page_gui->setPresentationTitle($question->getTitleForHTMLOutput());
307  $ret = $this->ctrl->forwardCommand($page_gui);
308  if ($ret != '') {
309  $this->tpl->setContent($ret);
310  }
311  break;
312 
313  case 'ilpermissiongui':
314  $perm_gui = new ilPermissionGUI($this);
315  $this->ctrl->forwardCommand($perm_gui);
316  break;
317 
318  case 'ilobjectcopygui':
319  $cp = new ilObjectCopyGUI($this);
320  $cp->setType('qpl');
321  $this->ctrl->forwardCommand($cp);
322  break;
323 
324  case 'ilexportgui':
325  $exp_gui = new ilExportGUI($this);
326  $ret = $this->ctrl->forwardCommand($exp_gui);
327  break;
328 
329  case strtolower(ilInfoScreenGUI::class):
330  $this->infoScreenForward();
331  break;
332 
333  case 'ilassquestionhintsgui':
334  if (!$this->access->checkAccess('write', '', $this->object->getRefId())) {
335  $this->redirectAfterMissingWrite();
336  }
337 
338  $this->ctrl->setReturn($this, self::DEFAULT_CMD);
339  $question_gui = assQuestionGUI::_getQuestionGUI(
340  $q_type,
342  );
343  $question = $question_gui->getObject();
344  $question->setObjId($this->object->getId());
345  $question_gui->setObject($question);
346  $question_gui->setQuestionTabs();
347 
348  if ($this->questionrepository->isInActiveTest($question_gui->getObject()->getObjId())) {
349  $this->tpl->setOnScreenMessage(
350  'failure',
351  $this->lng->txt('question_is_part_of_running_test'),
352  true
353  );
354  $this->ctrl->redirectByClass('ilAssQuestionPreviewGUI', ilAssQuestionPreviewGUI::CMD_SHOW);
355  }
356 
357  $this->help->setScreenIdComponent('qpl');
358 
359  if ($this->object->getType() == 'qpl' && $write_access) {
360  $question_gui->addHeaderAction();
361  }
362  $gui = new ilAssQuestionHintsGUI($question_gui);
363 
364  $gui->setEditingEnabled(
365  $this->access->checkAccess('write', '', $this->object->getRefId())
366  );
367 
368  $this->ctrl->forwardCommand($gui);
369 
370  break;
371 
372  case 'illocalunitconfigurationgui':
373  if (!$this->access->checkAccess('write', '', $this->object->getRefId())) {
374  $this->error->raiseError($this->lng->txt('permission_denied'), $this->error->WARNING);
375  }
376  $question_gui = assQuestionGUI::_getQuestionGUI(
377  $q_type,
379  );
380  $question = $question_gui->getObject();
381  $question->setObjId($this->object->getId());
382  $question_gui->setObject($question);
383  $question_gui->setQuestionTabs();
384 
385  $this->ctrl->setReturn($this, self::DEFAULT_CMD);
386  $gui = new ilLocalUnitConfigurationGUI(
387  new ilUnitConfigurationRepository($this->request_data_collector->getQuestionId())
388  );
389  $this->ctrl->forwardCommand($gui);
390  break;
391 
392  case 'ilassquestionfeedbackeditinggui':
393  if (!$this->access->checkAccess('write', '', $this->object->getRefId())) {
394  $this->redirectAfterMissingWrite();
395  }
396 
397  $this->ctrl->setReturn($this, self::DEFAULT_CMD);
398  $question_gui = assQuestionGUI::_getQuestionGUI(
399  $q_type,
401  );
402  $question = $question_gui->getObject();
403  $question->setObjId($this->object->getId());
404  $question_gui->setObject($question);
405  $question_gui->setQuestionTabs();
406 
407  if ($this->questionrepository->isInActiveTest($question_gui->getObject()->getObjId())) {
408  $this->tpl->setOnScreenMessage(
409  'failure',
410  $this->lng->txt('question_is_part_of_running_test'),
411  true
412  );
413  $this->ctrl->redirectByClass('ilAssQuestionPreviewGUI', ilAssQuestionPreviewGUI::CMD_SHOW);
414  }
415 
416  $this->help->setScreenIdComponent('qpl');
417 
418  if ($this->object->getType() == 'qpl' && $write_access) {
419  $question_gui->addHeaderAction();
420  }
422  $question_gui,
423  $this->ctrl,
424  $this->access,
425  $this->tpl,
426  $this->tabs_gui,
427  $this->lng,
428  $this->help,
429  $this->request_data_collector,
430  $this->content_style,
431  true
432  );
433  $this->ctrl->forwardCommand($gui);
434 
435  break;
436 
437  case 'ilobjquestionpoolsettingsgeneralgui':
439  $this->ctrl,
440  $this->access,
441  $this->lng,
442  $this->tpl,
443  $this->tabs_gui,
444  $this,
445  $this->refinery,
446  $this->ui_factory,
447  $this->ui_renderer,
448  $this->request,
449  );
450  $this->ctrl->forwardCommand($gui);
451  break;
452 
453  case strtolower(ilTaxonomySettingsGUI::class):
454  if (!$this->access->checkAccess('write', '', $this->object->getRefId())) {
455  $this->redirectAfterMissingWrite();
456  }
457 
459  $obj = $this->object;
461  $this->object,
462  $this->db,
463  $this->refinery,
464  $this->component_repository,
465  $this->ctrl,
466  $this->tabs_gui,
467  $this->lng,
468  $this->taxonomy
469  );
470 
471  $forwarder->forward();
472 
473  break;
474 
475  case 'ilquestionpoolskilladministrationgui':
476  $obj = $this->object;
478  $this->ilias,
479  $this->ctrl,
480  $this->refinery,
481  $this->access,
482  $this->tabs_gui,
483  $this->tpl,
484  $this->lng,
485  $this->db,
486  $this->component_repository,
487  $obj,
488  $this->ref_id
489  );
490 
491  $this->ctrl->forwardCommand($gui);
492  break;
493 
494  case 'ilbulkeditquestionsgui':
495  if (!$this->access->checkAccess('read', '', $this->object->getRefId())) {
496  $this->redirectAfterMissingWrite();
497  }
498  $this->tabs_gui->setBackTarget(
499  $this->lng->txt('backtocallingpool'),
500  $this->ctrl->getLinkTargetByClass(self::class, self::DEFAULT_CMD)
501  );
502  $this->tabs_gui->addTarget(
503  'edit_questions',
504  '#',
505  '',
506  $this->ctrl->getCmdClass(),
507  ''
508  );
509  $this->tabs_gui->setTabActive('edit_questions');
510 
511  $gui = new \ilBulkEditQuestionsGUI(
512  $this->tpl,
513  $this->ctrl,
514  $this->lng,
515  $this->ui_factory,
516  $this->ui_renderer,
517  $this->refinery,
518  $this->request,
519  $this->request_wrapper,
520  $this->object->getId(),
521  );
522  $this->ctrl->forwardCommand($gui);
523  break;
524 
525  case 'ilobjquestionpoolgui':
526  case '':
527  //table actions.
528  if ($action = $this->request_data_collector->string($this->action_parameter_token->getName())) {
529  $ids = $this->request_data_collector->raw($this->row_id_token->getName()) ?? null;
530 
531  if (is_null($ids)) {
532  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('msg_no_questions_selected'), true);
533  $this->ctrl->redirect($this, self::DEFAULT_CMD);
534  }
535  if ($ids[0] === 'ALL_OBJECTS') {
536  $ids = $this->object->getAllQuestionIds();
537  }
538  if (!is_array($ids)) {
539  $ids = explode(',', $ids);
540  }
541  $ids = array_map('intval', $ids);
542 
543  $class = strtolower($this->questionrepository->getForQuestionId(current($ids))->getGuiClassName());
544  $this->ctrl->setParameterByClass("ilAssQuestionPageGUI", "q_id", current($ids));
545  $this->ctrl->setParameterByClass("ilAssQuestionPreviewGUI", "q_id", current($ids));
546  $this->ctrl->setParameterByClass('ilAssQuestionFeedbackEditingGUI', 'q_id', current($ids));
547  $this->ctrl->setParameterByClass('ilAssQuestionHintsGUI', 'q_id', current($ids));
548  $this->ctrl->setParameterByClass($class, "q_id", current($ids));
549 
550  switch ($action) {
551  case 'preview':
552  $url = $this->ctrl->getLinkTargetByClass('ilAssQuestionPreviewGUI', ilAssQuestionPreviewGUI::CMD_SHOW);
553  $this->ctrl->redirectToURL($url);
554  break;
555  case 'statistics':
556  $url = $this->ctrl->getLinkTargetByClass('ilAssQuestionPreviewGUI', ilAssQuestionPreviewGUI::CMD_STATISTICS);
557  $this->ctrl->redirectToURL($url);
558  break;
559  case 'edit_question':
560  $url = $this->ctrl->getLinkTargetByClass($class, 'editQuestion');
561  $this->ctrl->redirectToURL($url);
562  break;
563  case 'edit_page':
564  $url = $this->ctrl->getLinkTargetByClass('ilAssQuestionPageGUI', 'edit');
565  $this->ctrl->redirectToURL($url);
566  break;
567  case 'feedback':
568  $url = $this->ctrl->getLinkTargetByClass('ilAssQuestionFeedbackEditingGUI', ilAssQuestionFeedbackEditingGUI::CMD_SHOW);
569  $this->ctrl->redirectToURL($url);
570  break;
571  case 'hints':
572  $url = $this->ctrl->getLinkTargetByClass('ilAssQuestionHintsGUI', ilAssQuestionHintsGUI::CMD_SHOW_LIST);
573  $this->ctrl->redirectToURL($url);
574  break;
575  case 'move':
576  $this->moveQuestions($ids);
577  $this->ctrl->redirect($this, self::DEFAULT_CMD);
578  break;
579  case 'copy':
580  $this->copyQuestions($ids);
581  $this->ctrl->redirect($this, self::DEFAULT_CMD);
582  break;
583  case 'delete':
584  $this->confirmDeleteQuestions($ids);
585  break;
586  case 'export':
587  $this->exportQuestions($ids);
588  $this->ctrl->redirect($this, self::DEFAULT_CMD);
589  break;
590  case 'comments':
593  $this->object->getRefId(),
594  'quest',
595  $this->object->getId(),
596  'quest',
597  current($ids)
598  );
599  echo ''
600  . '<script>'
601  . ' event = new Event("click");'
603  . '</script>'
604  ;
605  exit();
606 
610  $this->ctrl->clearParameters($this);
611  $this->ctrl->setParameterByClass(
612  ilBulkEditQuestionsGUI::class,
614  implode(',', $ids)
615  );
616  $url = $this->ctrl->getLinkTargetByClass(
617  ilBulkEditQuestionsGUI::class,
618  $action
619  );
620  $this->ctrl->redirectToURL($url);
621  break;
622 
623  default:
624  throw new \Exception("'$action'" . " not implemented");
625  }
626  break;
627  }
628 
629 
630  if ($cmd == self::DEFAULT_CMD) {
631  $this->ctrl->setParameter($this, 'q_id', '');
632  }
633  $cmd .= 'Object';
634  $ret = $this->$cmd();
635  break;
636 
637  default:
638  if (in_array($cmd, ['editQuestion', 'save', 'suggestedsolution']) && !$this->access->checkAccess(
639  'write',
640  '',
641  $this->object->getRefId()
642  )) {
643  $this->redirectAfterMissingWrite();
644  }
645 
646  $this->ctrl->setReturnByClass(self::class, self::DEFAULT_CMD);
647 
648  $qid = $this->fetchAuthoringQuestionIdParamater();
649  $question_gui = assQuestionGUI::_getQuestionGUI(
650  $q_type,
651  $qid
652  );
653  $question_gui->setEditContext(assQuestionGUI::EDIT_CONTEXT_AUTHORING);
654  $question = $question_gui->getObject();
655  $question->setObjId($this->object->getId());
656  $question_gui->setObject($question);
657 
658  if ($this->object->getType() === 'qpl') {
659  $question_gui->setTaxonomyIds($this->object->getTaxonomyIds());
660 
661  if ($write_access) {
662  $question_gui->addHeaderAction();
663  }
664  }
665 
666  $this->help->setScreenIdComponent('qpl');
667 
668  if ($qid === 0 && $question_gui->cmdNeedsExistingQuestion($cmd)) {
669  $question_gui->getObject()->createNewQuestion();
670  }
671 
672  $question_gui->setQuestionTabs();
673 
674  if (!in_array($cmd, ['save', 'saveReturn'])) {
675  $question_gui->$cmd();
676  return;
677  }
678 
679  if (!$question_gui->saveQuestion()) {
680  return;
681  }
682  $this->tpl->setOnScreenMessage('success', $this->lng->txt('msg_obj_modified'), true);
683  if ($cmd === 'saveReturn') {
684  $this->ctrl->setParameterByClass(
685  ilAssQuestionPreviewGUI::class,
686  'q_id',
687  (string) $question_gui->getObject()->getId()
688  );
689  $this->ctrl->redirectToURL(
690  $this->ctrl->getLinkTargetByClass(ilAssQuestionPreviewGUI::class, ilAssQuestionPreviewGUI::CMD_SHOW)
691  );
692  }
693 
694  if ($cmd === 'save') {
695  $this->tabs_gui->activateTab('edit_question');
696  $question_gui->editQuestion(false, false);
697  }
698  break;
699  }
700 
701  if (!(strtolower($this->request_data_collector->raw('baseClass')) == 'iladministrationgui'
702  || strtolower($this->request_data_collector->raw('baseClass')) == 'ilrepositorygui')
703  && $this->getCreationMode() != true) {
704  $this->tpl->printToStdout();
705  }
706  }
707 
708  protected function redirectAfterMissingWrite()
709  {
710  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('no_permission'), true);
711  $target_class = get_class($this->object) . 'GUI';
712  $this->ctrl->setParameterByClass($target_class, 'ref_id', $this->ref_id);
713  $this->ctrl->redirectByClass($target_class);
714  }
715 
720  protected function exportObject(): void
721  {
722  $this->ctrl->redirectByClass('ilQuestionPoolExportGUI');
723  }
724 
725  public function downloadFileObject(): void
726  {
727  $file = explode('_', $this->request_data_collector->raw('file_id'));
728  $fileObj = new ilObjFile((int) $file[count($file) - 1], false);
729  $fileObj->sendFile();
730  exit;
731  }
732 
736  public function fullscreenObject(): void
737  {
738  $page_gui = new ilAssQuestionPageGUI($this->request_data_collector->raw('pg_id'));
739  $page_gui->showMediaFullscreen();
740  }
741 
745  public function download_paragraphObject(): void
746  {
747  $pg_obj = new ilAssQuestionPage($this->request_data_collector->raw('pg_id'));
748  $pg_obj->sendParagraph($this->request_data_collector->raw('par_id'), $this->request_data_collector->raw('downloadtitle'));
749  exit;
750  }
751 
752  public function importVerifiedFileObject(): void
753  {
754  if (!$this->checkPermissionBool('create', '', $this->qplrequest->string('new_type'))) {
755  $this->redirectAfterMissingWrite();
756  return;
757  }
758 
759  $file_to_import = ilSession::get('path_to_import_file');
760  list($subdir, $importdir, $xmlfile, $qtifile) = $this->buildImportDirectoriesFromImportFile($file_to_import);
761 
762  $new_obj = new ilObjQuestionPool(0, true);
763  $new_obj->setType($this->request_data_collector->raw('new_type'));
764  $new_obj->setTitle('dummy');
765  $new_obj->setDescription('questionpool import');
766  $new_obj->create(true);
767  $new_obj->createReference();
768  $new_obj->putInTree($this->request_data_collector->getRefId());
769  $new_obj->setPermissions($this->request_data_collector->getRefId());
770 
772  'importVerifiedFile',
773  $importdir,
774  $qtifile,
775  $this->request
776  );
777 
778  if (is_file($importdir . DIRECTORY_SEPARATOR . 'manifest.xml')) {
780  $new_obj,
781  $selected_questions,
782  $file_to_import
783  );
784  } else {
786  $new_obj,
787  $selected_questions,
788  $qtifile,
789  $importdir,
790  $xmlfile
791  );
792 
793  $new_obj->fromXML($xmlfile);
794 
795  $new_obj->update();
796  $new_obj->saveToDb();
797  }
798  $this->cleanupAfterImport($importdir);
799 
800  $this->tpl->setOnScreenMessage('success', $this->lng->txt('object_imported'), true);
801  $this->ctrl->setParameterByClass(self::class, 'ref_id', $new_obj->getRefId());
802  $this->ctrl->redirectByClass(self::class);
803  }
804 
805  public function importVerifiedQuestionsFileObject(): void
806  {
807  $file_to_import = ilSession::get('path_to_import_file');
808 
809  if (mb_substr($file_to_import, -3) === 'xml') {
810  $importdir = dirname($file_to_import);
812  'importVerifiedQuestionsFile',
813  $importdir,
814  $file_to_import,
815  $this->request
816  );
818  $this->getObject(),
819  $selected_questions,
820  $file_to_import,
821  $importdir
822  );
823  } else {
824  list($subdir, $importdir, $xmlfile, $qtifile) = $this->buildImportDirectoriesFromImportFile($file_to_import);
826  'importVerifiedQuestionsFile',
827  $importdir,
828  $qtifile,
829  $this->request
830  );
831  if (is_file($importdir . DIRECTORY_SEPARATOR . 'manifest.xml')) {
833  $this->getObject(),
834  $selected_questions,
835  $file_to_import
836  );
837  } else {
839  $this->getObject(),
840  $selected_questions,
841  $qtifile,
842  $importdir,
843  $xmlfile
844  );
845  }
846  }
847 
848  $this->cleanupAfterImport($importdir);
849 
850  $this->tpl->setOnScreenMessage('success', $this->lng->txt('object_imported'), true);
851  $this->questionsObject();
852  }
853 
854  public function uploadQuestionsImportObject(): void
855  {
856  $import_questions_modal = $this->buildImportQuestionsModal()->withRequest($this->request);
857  $data = $import_questions_modal->getData();
858  if ($data === null) {
859  $this->questionsObject(
860  $import_questions_modal->withOnLoad(
861  $import_questions_modal->getShowSignal()
862  )
863  );
864  return;
865  }
866  $path_to_imported_file_in_temp_dir = $data['import_file'][0];
867  $this->importQuestionsFile($path_to_imported_file_in_temp_dir);
868  }
869 
871  {
872  $constraint = $this->refinery->custom()->constraint(
873  function ($vs): bool {
874  if ($vs === []) {
875  return false;
876  }
877  return true;
878  },
879  $this->lng->txt('msg_no_files_selected')
880  );
881 
882  $file_upload_input = $this->ui_factory->input()->field()
883  ->file(new \QuestionPoolImportUploadHandlerGUI(), $this->lng->txt('import_file'))
884  ->withAcceptedMimeTypes(self::SUPPORTED_IMPORT_MIME_TYPES)
885  ->withMaxFiles(1)
886  ->withAdditionalTransformation($constraint);
887  return $this->ui_factory->modal()->roundtrip(
888  $this->lng->txt('import'),
889  [],
890  ['import_file' => $file_upload_input],
891  $this->ctrl->getFormActionByClass(self::class, 'uploadQuestionsImport')
892  )->withSubmitLabel($this->lng->txt('import'));
893  }
894 
896  ilObjQuestionPool $obj,
897  array $selected_questions,
898  string $file_to_import
899  ): void {
900 
901  ilSession::set('qpl_import_selected_questions', $selected_questions);
902  $imp = new ilImport($this->request_data_collector->getRefId());
903  $map = $imp->getMapping();
904  $map->addMapping('components/ILIAS/TestQuestionPool', 'qpl', 'new_id', (string) $obj->getId());
905  $imp->importObject($obj, $file_to_import, basename($file_to_import), 'qpl', 'components/ILIAS/TestQuestionPool', true);
906  }
907 
908  private function importQuestionsFromQtiFile(
909  ilObjQuestionPool $obj,
910  array $selected_questions,
911  string $qtifile,
912  string $importdir,
913  string $xmlfile = ''
914  ): void {
915  $qti_parser = new ilQTIParser(
916  $importdir,
917  $qtifile,
919  $obj->getId(),
920  $selected_questions
921  );
922  $qti_parser->startParsing();
923 
924  if ($xmlfile === '') {
925  return;
926  }
927 
928  $cont_parser = new ilQuestionPageParser(
929  $obj,
930  $xmlfile,
931  $importdir
932  );
933  $cont_parser->setQuestionMapping($qti_parser->getImportMapping());
934  $cont_parser->startParsing();
935  }
936 
937  private function cleanupAfterImport(string $importdir): void
938  {
939  ilFileUtils::delDir($importdir);
940  $this->deleteUploadedImportFile(ilSession::get('path_to_uploaded_file_in_temp_dir'));
941  ilSession::clear('path_to_import_file');
942  ilSession::clear('path_to_uploaded_file_in_temp_dir');
943  }
944 
945  public function createQuestionObject(): void
946  {
947  $form = $this->buildQuestionCreationForm()->withRequest($this->request);
948  $data_with_section = $form->getData();
949  if ($data_with_section === null) {
950  $this->createQuestionFormObject($form);
951  return;
952  }
953  $data = $data_with_section[0];
954 
955  $this->ctrl->setReturnByClass(self::class, self::DEFAULT_CMD);
956 
958  $question_gui = assQuestionGUI::_getQuestionGUI(
960  );
961  $question = $question_gui->getObject();
962  $question->setObjId($this->object->getId());
963  $question->setAdditionalContentEditingMode($data['editing_type']);
964  $question_gui->setObject($question);
965  $question_gui->setQuestionTabs();
966  $question_gui->editQuestion();
967  }
968 
969  public function afterSave(ilObject $new_object): void
970  {
971  // always send a message
972  $this->tpl->setOnScreenMessage('success', $this->lng->txt('object_added'), true);
973 
975  'ilias.php?ref_id=' . $new_object->getRefId() .
976  '&baseClass=ilObjQuestionPoolGUI'
977  );
978  }
979 
980  public function confirmDeleteQuestions(array $ids): void
981  {
982  $rbacsystem = $this->rbac_system;
983 
984  $questionIdsToDelete = array_filter(array_map('intval', $ids));
985  if (0 === count($questionIdsToDelete)) {
986  $this->tpl->setOnScreenMessage('info', $this->lng->txt('qpl_delete_select_none'), true);
987  $this->ctrl->redirect($this, self::DEFAULT_CMD);
988  }
989 
990  $this->tpl->setOnScreenMessage('question', $this->lng->txt('qpl_confirm_delete_questions'));
991  $deleteable_questions = $this->object->getDeleteableQuestionDetails($questionIdsToDelete);
992  $table_gui = new ilQuestionBrowserTableGUI($this, self::DEFAULT_CMD, (($rbacsystem->checkAccess('write', $this->request_data_collector->getRefId()) ? true : false)), true);
993  $table_gui->setShowRowsSelector(false);
994  $table_gui->setLimit(PHP_INT_MAX);
995  $table_gui->setEditable($rbacsystem->checkAccess('write', $this->request_data_collector->getRefId()));
996  $table_gui->setData($deleteable_questions);
997  $this->tpl->setVariable('ADM_CONTENT', $table_gui->getHTML());
998  }
999 
1003  public function deleteQuestionsObject(): void
1004  {
1005  $rbacsystem = $this->rbac_system;
1006 
1007  $questionIdsToDelete = $this->request_data_collector->isset('q_id') ? (array) $this->request_data_collector->raw('q_id') : [];
1008  if ($questionIdsToDelete === [] && $this->request_data_collector->isset('q_id')) {
1009  $questionIdsToDelete = [$this->request_data_collector->getQuestionId()];
1010  }
1011 
1012  $questionIdsToDelete = array_filter(array_map('intval', $questionIdsToDelete));
1013  if ($questionIdsToDelete === []) {
1014  $this->tpl->setOnScreenMessage('info', $this->lng->txt('qpl_delete_select_none'), true);
1015  $this->ctrl->redirect($this, self::DEFAULT_CMD);
1016  }
1017 
1018  $this->tpl->setOnScreenMessage('question', $this->lng->txt('qpl_confirm_delete_questions'));
1019  $deleteable_questions = &$this->object->getDeleteableQuestionDetails($questionIdsToDelete);
1020  $table_gui = new ilQuestionBrowserTableGUI(
1021  $this,
1022  self::DEFAULT_CMD,
1023  (($rbacsystem->checkAccess('write', $this->request_data_collector->getRefId()) ? true : false)),
1024  true
1025  );
1026  $table_gui->setShowRowsSelector(false);
1027  $table_gui->setLimit(PHP_INT_MAX);
1028  $table_gui->setEditable($rbacsystem->checkAccess('write', $this->request_data_collector->getRefId()));
1029  $table_gui->setData($deleteable_questions);
1030  $this->tpl->setVariable('ADM_CONTENT', $table_gui->getHTML());
1031  }
1032 
1036  public function confirmDeleteQuestionsObject(): void
1037  {
1038  $qst_ids = $this->request_data_collector->intArray('q_id');
1039  foreach ($qst_ids as $value) {
1040  $this->object->deleteQuestion((int) $value);
1041  $this->object->cleanupClipboard((int) $value);
1042  }
1043  if ($qst_ids !== []) {
1044  $this->tpl->setOnScreenMessage('success', $this->lng->txt('qpl_questions_deleted'), true);
1045  }
1046 
1047  $this->ctrl->setParameter($this, 'q_id', '');
1048  $this->ctrl->redirect($this, self::DEFAULT_CMD);
1049  }
1050 
1051  public function cancelDeleteQuestionsObject(): void
1052  {
1053  $this->ctrl->redirect($this, self::DEFAULT_CMD);
1054  }
1055 
1056  public function exportQuestions(array $ids): void
1057  {
1058  if ($ids !== []) {
1059  $qpl_exp = new ilQuestionpoolExport($this->object, 'xml', $ids);
1060  // @PHP8-CR: This seems to be a pointer to an issue with exports. I like to leave this open for now and
1061  // schedule a thorough examination / analysis for later, eventually involved T&A TechSquad
1062  $export_file = $qpl_exp->buildExportFile();
1063  $filename = $export_file;
1064  $filename = preg_replace('/.*\//', '', $filename);
1065  if ($export_file === '') {
1066  $export_file = 'StandIn';
1067  }
1069  exit();
1070  } else {
1071  $this->tpl->setOnScreenMessage('info', $this->lng->txt('qpl_export_select_none'), true);
1072  }
1073  }
1074 
1075  protected function renoveImportFailsObject(): void
1076  {
1077  $qsaImportFails = new ilAssQuestionSkillAssignmentImportFails($this->object->getId());
1078  $qsaImportFails->deleteRegisteredImportFails();
1079 
1080  $this->ctrl->redirectByClass(
1081  [
1082  ilRepositoryGUI::class,
1083  self::class,
1084  ilInfoScreenGUI::class
1085  ]
1086  );
1087  }
1088 
1092  public function questionsObject(?RoundTripModal $import_questions_modal = null): void
1093  {
1094  if (!$this->access->checkAccess("read", "", $this->request_data_collector->getRefId())) {
1095  $this->infoScreenForward();
1096  return;
1097  }
1098 
1099  $this->object->purgeQuestions();
1100  $qsa_import_fails = new ilAssQuestionSkillAssignmentImportFails($this->object->getId());
1101  if ($qsa_import_fails->failedImportsRegistered()) {
1102  $button = $this->ui_factory->button()->standard(
1103  $this->lng->txt('ass_skl_import_fails_remove_btn'),
1104  $this->ctrl->getLinkTargetByClass([ilRepositoryGUI::class, self::class], 'renoveImportFails')
1105  );
1106  $this->tpl->setOnScreenMessage(
1107  'failure',
1108  $qsa_import_fails->getFailedImportsMessage($this->lng) . '<br />' . $this->ui_renderer->render(
1109  $button
1110  )
1111  );
1112  }
1113 
1114  $out = [];
1115  if ($this->rbac_system->checkAccess('write', $this->request_data_collector->getRefId())) {
1116  $btn = $this->ui_factory->button()->primary(
1117  $this->lng->txt('ass_create_question'),
1118  $this->ctrl->getLinkTargetByClass([ilRepositoryGUI::class, self::class], 'createQuestionForm')
1119  );
1120  $this->toolbar->addComponent($btn);
1121 
1122  if ($import_questions_modal === null) {
1123  $import_questions_modal = $this->buildImportQuestionsModal();
1124  }
1125 
1126  $btn_import = $this->ui_factory->button()->standard(
1127  $this->lng->txt('import'),
1128  $import_questions_modal->getShowSignal()
1129  );
1130  $this->toolbar->addComponent($btn_import);
1131  $out[] = $this->ui_renderer->render($import_questions_modal);
1132 
1133  if (ilSession::get('qpl_clipboard') != null && count(ilSession::get('qpl_clipboard'))) {
1134  $btn_paste = $this->ui_factory->button()->standard(
1135  $this->lng->txt('paste'),
1136  $this->ctrl->getLinkTargetByClass([ilRepositoryGUI::class, self::class], 'paste')
1137  );
1138  $this->toolbar->addComponent($btn_paste);
1139  }
1140  }
1141 
1142  $this->tpl->setPermanentLink($this->object->getType(), $this->object->getRefId());
1143  $out[] = $this->getTable();
1144  $this->tpl->setContent(implode('', $out));
1145  }
1146 
1148  {
1149  $q_id = $this->request_data_collector->getQuestionId();
1150 
1151  if ($q_id === 0 || $this->object->checkQuestionParent($q_id)) {
1152  return $q_id;
1153  }
1154 
1155  throw new ilTestQuestionPoolException('question id does not relate to parent object!');
1156  }
1157 
1158  private function createQuestionFormObject(?Form $form = null): void
1159  {
1160  $this->help->setScreenId('assQuestions');
1161  if ($this->global_test_settings->isPageEditorEnabled()) {
1162  $this->help->setSubScreenId('createQuestion_editMode');
1163  } else {
1164  $this->help->setSubScreenId('createQuestion');
1165  }
1166 
1167  $this->tpl->setContent(
1168  $this->ui_renderer->render(
1169  $form ?? $this->buildQuestionCreationForm()
1170  )
1171  );
1172  }
1173 
1174  private function buildQuestionCreationForm(): Form
1175  {
1176  $inputs['question_type'] = $this->buildInputQuestionType();
1177  $inputs['editing_type'] = $this->buildInputEditingType();
1178 
1179  $section = [
1180  $this->ui_factory->input()->field()->section($inputs, $this->lng->txt('ass_create_question'))
1181  ];
1182 
1183  $form = $this->ui_factory->input()->container()->form()->standard(
1184  $this->ctrl->getFormAction($this, 'createQuestion'),
1185  $section
1186  )->withSubmitLabel($this->lng->txt('create'));
1187 
1188  return $form;
1189  }
1190 
1191  private function buildInputQuestionType(): Select
1192  {
1193  $question_types = (new ilObjQuestionPool())->getQuestionTypes(false, true, false);
1194  $options = [];
1195  foreach ($question_types as $label => $data) {
1196  $options[$data['question_type_id']] = $label;
1197  }
1198 
1199  return $this->ui_factory->input()->field()->select(
1200  $this->lng->txt('question_type'),
1201  $options
1202  )->withRequired(true);
1203  }
1204 
1205  private function buildInputEditingType(): Input
1206  {
1207  if (!$this->global_test_settings->isPageEditorEnabled()) {
1208  return $this->ui_factory->input()->field()->hidden()->withValue(
1210  );
1211  }
1212 
1213  return $this->ui_factory->input()->field()->radio($this->lng->txt('tst_add_quest_cont_edit_mode'))
1214  ->withOption(
1216  $this->lng->txt('tst_add_quest_cont_edit_mode_IPE'),
1217  $this->lng->txt('tst_add_quest_cont_edit_mode_IPE_info')
1218  )->withOption(
1220  $this->lng->txt('tst_add_quest_cont_edit_mode_RTE'),
1221  $this->lng->txt('tst_add_quest_cont_edit_mode_RTE_info')
1222  )
1224  }
1225 
1226  public function printObject(): void
1227  {
1228  $this->tabs_gui->activateTab('print_view');
1229  $this->ctrl->setParameter($this, 'output', 'overview');
1230  $output_link = $this->ctrl->getLinkTargetByClass([ilRepositoryGUI::class, self::class], 'print');
1231  $this->ctrl->setParameter($this, 'output', 'detailed_output_solutions');
1232  $output_link_detailed = $this->ctrl->getLinkTargetByClass([ilRepositoryGUI::class, self::class], 'print');
1233  $this->ctrl->setParameter($this, 'output', 'detailed_output_printview');
1234  $output_link_printview = $this->ctrl->getLinkTargetByClass([ilRepositoryGUI::class, self::class], 'print');
1235 
1236  $mode = $this->ui_factory->dropdown()->standard([
1237  $this->ui_factory->button()->shy($this->lng->txt('overview'), $output_link),
1238  $this->ui_factory->button()->shy($this->lng->txt('detailed_output_solutions'), $output_link_detailed),
1239  $this->ui_factory->button()->shy($this->lng->txt('detailed_output_printview'), $output_link_printview)
1240  ])->withLabel($this->lng->txt('output_mode'));
1241 
1242  $output = $this->request_data_collector->raw('output') ?? '';
1243 
1244  $table_gui = new ilQuestionPoolPrintViewTableGUI($this, 'print', $output);
1245  $data = $this->object->getPrintviewQuestions();
1246  $totalPoints = 0;
1247  foreach ($data as $d) {
1248  $totalPoints += $d['points'];
1249  }
1250  $table_gui->setTotalPoints($totalPoints);
1251  $table_gui->initColumns();
1252  $table_gui->setData($data);
1253  $this->tpl->setContent($this->ui_renderer->render($mode) . $table_gui->getHTML());
1254  }
1255 
1256  public function updateObject(): void
1257  {
1258  $this->object->update();
1259  $this->tpl->setOnScreenMessage('success', $this->lng->txt('msg_obj_modified'), true);
1260  }
1261 
1262  public function pasteObject(): void
1263  {
1264  if (ilSession::get('qpl_clipboard') != null) {
1265  if ($this->object->pasteFromClipboard()) {
1266  $this->tpl->setOnScreenMessage('success', $this->lng->txt('qpl_paste_success'), true);
1267  } else {
1268  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('qpl_paste_error'), true);
1269  }
1270  } else {
1271  $this->tpl->setOnScreenMessage('info', $this->lng->txt('qpl_paste_no_objects'), true);
1272  }
1273  $this->ctrl->redirect($this, self::DEFAULT_CMD);
1274  }
1275 
1276  public function copyQuestions(array $ids): void
1277  {
1278  if ($ids) {
1279  foreach ($ids as $id) {
1280  $this->object->copyToClipboard($id);
1281  }
1282  $this->tpl->setOnScreenMessage('info', $this->lng->txt('qpl_copy_insert_clipboard'), true);
1283  } else {
1284  $this->tpl->setOnScreenMessage('info', $this->lng->txt('qpl_copy_select_none'), true);
1285  }
1286  }
1287 
1288  public function moveQuestions(array $ids): void
1289  {
1290  if ($ids) {
1291  foreach ($ids as $id) {
1292  $this->object->moveToClipboard($id);
1293  }
1294  $this->tpl->setOnScreenMessage('info', $this->lng->txt('qpl_move_insert_clipboard'), true);
1295  } else {
1296  $this->tpl->setOnScreenMessage('info', $this->lng->txt('qpl_move_select_none'), true);
1297  }
1298  }
1299 
1300  public function createExportExcel(): void
1301  {
1302  $rbacsystem = $this->rbac_system;
1303  if ($rbacsystem->checkAccess('write', $this->request_data_collector->getRefId())) {
1304  $question_ids = &$this->object->getAllQuestionIds();
1305  $qpl_exp = new ilQuestionpoolExport($this->object, 'xlsx', $question_ids);
1306  $qpl_exp->buildExportFile();
1307  $this->ctrl->redirectByClass('ilquestionpoolexportgui', '');
1308  }
1309  }
1310 
1311  public function editQuestionForTestObject(): void
1312  {
1313  $this->ctrl->redirectByClass(ilAssQuestionPreviewGUI::class, 'show');
1314  }
1315 
1316  protected function importQuestionsFile(string $path_to_uploaded_file_in_temp_dir): void
1317  {
1318  if (!$this->temp_file_system->hasDir($path_to_uploaded_file_in_temp_dir)
1319  || ($files = $this->temp_file_system->listContents($path_to_uploaded_file_in_temp_dir)) === []) {
1320  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('obj_import_file_error'));
1321  }
1322 
1323  $file_to_import = $this->import_temp_directory . DIRECTORY_SEPARATOR . $files[0]->getPath();
1324  $qtifile = $file_to_import;
1325  $importdir = dirname($file_to_import);
1326 
1327 
1328  if ($this->temp_file_system->getMimeType($files[0]->getPath()) === MimeType::APPLICATION__ZIP) {
1330  ->withZipOutputPath($this->getImportTempDirectory());
1331  $unzip = $this->archives->unzip($this->temp_file_system->readStream($files[0]->getPath()), $options);
1332  $unzip->extract();
1333  list($subdir, $importdir, $xmlfile, $qtifile) = $this->buildImportDirectoriesFromImportFile($file_to_import);
1334  }
1335  if (!file_exists($qtifile)) {
1336  ilFileUtils::delDir($importdir);
1337  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('cannot_find_xml'), true);
1338  $this->questionsObject();
1339  return;
1340  }
1341 
1342  ilSession::set('path_to_import_file', $file_to_import);
1343  ilSession::set('path_to_uploaded_file_in_temp_dir', $path_to_uploaded_file_in_temp_dir);
1344 
1345  $form = $this->buildImportQuestionsSelectionForm(
1346  'importVerifiedQuestionsFile',
1347  $importdir,
1348  $qtifile,
1349  $path_to_uploaded_file_in_temp_dir
1350  );
1351 
1352  if ($form === null) {
1353  return;
1354  }
1355 
1356  $panel = $this->ui_factory->panel()->standard(
1357  $this->lng->txt('import_question'),
1358  [
1359  $this->ui_factory->legacy()->content($this->lng->txt('qpl_import_verify_found_questions')),
1360  $form
1361  ]
1362  );
1363  $this->tpl->setContent($this->ui_renderer->render($panel));
1364  $this->tpl->printToStdout();
1365  exit;
1366  }
1367 
1368  protected function importFile(string $file_to_import, string $path_to_uploaded_file_in_temp_dir): void
1369  {
1370  list($subdir, $importdir, $xmlfile, $qtifile) = $this->buildImportDirectoriesFromImportFile($file_to_import);
1371 
1373  ->withZipOutputPath($this->getImportTempDirectory());
1374 
1375  $unzip = $this->archives->unzip(Streams::ofResource(fopen($file_to_import, 'r')), $options);
1376  $unzip->extract();
1377 
1378  if (!file_exists($qtifile)) {
1379  ilFileUtils::delDir($importdir);
1380  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('cannot_find_xml'), true);
1381  return;
1382  }
1383 
1384  ilSession::set('path_to_import_file', $file_to_import);
1385  ilSession::set('path_to_uploaded_file_in_temp_dir', $path_to_uploaded_file_in_temp_dir);
1386 
1387  $this->ctrl->setParameterByClass(self::class, 'new_type', $this->type);
1388  $form = $this->buildImportQuestionsSelectionForm(
1389  'importVerifiedFile',
1390  $importdir,
1391  $qtifile,
1392  $path_to_uploaded_file_in_temp_dir
1393  );
1394 
1395  if ($form === null) {
1396  return;
1397  }
1398 
1399  $panel = $this->ui_factory->panel()->standard(
1400  $this->lng->txt('import_qpl'),
1401  [
1402  $this->ui_factory->legacy()->content($this->lng->txt('qpl_import_verify_found_questions')),
1403  $form
1404  ]
1405  );
1406  $this->tpl->setContent($this->ui_renderer->render($panel));
1407  $this->tpl->printToStdout();
1408  exit;
1409  }
1410 
1411  public function addLocatorItems(): void
1412  {
1413  $ilLocator = $this->locator;
1414 
1415  switch ($this->ctrl->getCmd()) {
1416  case 'create':
1417  case 'importFile':
1418  case 'cancel':
1419  break;
1420  default:
1421  $this->ctrl->clearParameterByClass(self::class, 'q_id');
1422  $ilLocator->addItem(
1423  $this->object->getTitle(),
1424  $this->ctrl->getLinkTargetByClass([ilRepositoryGUI::class, self::class], ''),
1425  '',
1426  $this->request_data_collector->getRefId()
1427  );
1428  $this->ctrl->setParameter($this, 'q_id', $this->request_data_collector->getQuestionId());
1429  break;
1430  }
1431 
1432  if (!is_array($this->request_data_collector->raw('q_id')) && $this->request_data_collector->raw('q_id') > 0 && $this->request_data_collector->raw(
1433  'cmd'
1434  ) !== self::DEFAULT_CMD) {
1435  $question_gui = assQuestionGUI::_getQuestionGUI('', $this->request_data_collector->getQuestionId());
1436  if ($question_gui !== null && $question_gui->getObject() instanceof assQuestion) {
1437  $question = $question_gui->getObject();
1438  $question->setObjId($this->object->getId());
1439  $question_gui->setObject($question);
1440  $title = $question_gui->getObject()->getTitleForHTMLOutput();
1441  if (!$title) {
1442  $title = $this->lng->txt('new') . ': ' . $this->questionrepository->getForQuestionId(
1443  $question_gui->getObject()->getId()
1444  )->getTypeName($this->lng);
1445  }
1446  $ilLocator->addItem($title, $this->ctrl->getLinkTargetByClass(get_class($question_gui), 'editQuestion'));
1447  } else {
1448  // Workaround for context issues: If no object was found, redirect without q_id parameter
1449  $this->ctrl->setParameter($this, 'q_id', '');
1450  $this->ctrl->redirect($this);
1451  }
1452  }
1453  }
1454 
1458  public function setTitleAndDescription(): void
1459  {
1460  parent::setTitleAndDescription();
1461 
1462  if (!is_array($this->request_data_collector->raw('q_id')) && $this->request_data_collector->raw('q_id') > 0 && $this->request_data_collector->raw(
1463  'cmd'
1464  ) !== self::DEFAULT_CMD) {
1465  $question_gui = assQuestionGUI::_getQuestionGUI('', $this->request_data_collector->getQuestionId());
1466  if ($question_gui->getObject() instanceof assQuestion) {
1467  $question = $question_gui->getObject();
1468  $question->setObjId($this->object->getId());
1469  $question_gui->setObject($question);
1470  $title = $this->object->getTitle() . ': ' . $question_gui->getObject()->getTitleForHTMLOutput();
1471  if (!$title) {
1472  $title = $this->lng->txt('new') . ': ' . $this->questionrepository->getForQuestionId(
1473  $question_gui->getObject()->getId()
1474  )->getTypeName($this->lng);
1475  }
1476  $this->tpl->setTitle(
1477  $this->refinery->encode()->htmlSpecialCharsAsEntities()->transform(
1478  $title,
1479  )
1480  );
1481  $this->tpl->setDescription(
1482  $question_gui->getObject()->getDescriptionForHTMLOutput()
1483  );
1484  $this->tpl->setTitleIcon(ilObject2::_getIcon($this->object->getId(), 'big', $this->object->getType()));
1485  } else {
1486  // Workaround for context issues: If no object was found, redirect without q_id parameter
1487  $this->ctrl->setParameter($this, 'q_id', '');
1488  $this->ctrl->redirect($this);
1489  }
1490  } else {
1491  $this->tpl->setTitle(
1492  $this->refinery->encode()->htmlSpecialCharsAsEntities()->transform(
1493  $this->object->getTitle()
1494  )
1495  );
1496  $this->tpl->setDescription(
1497  $this->refinery->encode()->htmlSpecialCharsAsEntities()->transform(
1498  $this->object->getLongDescription()
1499  )
1500  );
1501  $this->tpl->setTitleIcon(ilObject2::_getIcon($this->object->getId(), 'big', $this->object->getType()));
1502  }
1503  }
1504 
1510  public function getTabs(): void
1511  {
1512  $with_write_access = $this->access->checkAccess('write', '', $this->object->getRefId());
1513  $with_read_access = $this->access->checkAccess('read', '', $this->object->getRefId());
1514 
1515  $this->help->setScreenIdComponent('qpl');
1516 
1517  switch ($this->ctrl->getNextClass()) {
1518  case '':
1519  case strtolower(ilInfoScreenGUI::class):
1520  case strtolower(ilPermissionGUI::class):
1521  case strtolower(ilObjectMetaDataGUI::class):
1522  case strtolower(ilExportGUI::class):
1523  case strtolower(ilQuestionPoolSkillAdministrationGUI::class):
1524  break;
1525 
1526  case strtolower(ilTaxonomySettingsGUI::class):
1527  case strtolower(ilObjQuestionPoolSettingsGeneralGUI::class):
1528  if ($with_write_access) {
1529  $this->addSettingsSubTabs($this->tabs_gui);
1530  }
1531 
1532  break;
1533 
1534  default:
1535  return;
1536  }
1537  // questions
1538  $force_active = false;
1539  $commands = $this->request_data_collector->raw('cmd');
1540  if (is_array($commands)) {
1541  foreach ($commands as $key => $value) {
1542  if (preg_match('/^delete_.*/', $key, $matches) ||
1543  preg_match('/^addSelectGap_.*/', $key, $matches) ||
1544  preg_match('/^addTextGap_.*/', $key, $matches) ||
1545  preg_match('/^deleteImage_.*/', $key, $matches) ||
1546  preg_match('/^upload_.*/', $key, $matches) ||
1547  preg_match('/^addSuggestedSolution_.*/', $key, $matches)
1548  ) {
1549  $force_active = true;
1550  }
1551  }
1552  }
1553 
1554  $force_active = $force_active || $this->request_data_collector->isset('imagemap_x');
1555  if (!$force_active) {
1556  $force_active = strtolower($this->ctrl->getCmdClass()) === strtolower(self::class)
1557  || $this->ctrl->getCmdClass() === '' && $this->ctrl->getCmd() === ''
1558  ? true
1559  : false;
1560  }
1561  if ($with_read_access) {
1562  $this->tabs_gui->addTarget(
1563  'assQuestions',
1564  $this->ctrl->getLinkTargetByClass(
1565  [ilRepositoryGUI::class, self::class],
1566  self::DEFAULT_CMD
1567  ),
1568  [
1569  self::DEFAULT_CMD,
1570  'filter',
1571  'resetFilter',
1572  'createQuestion',
1573  'importQuestions',
1574  'deleteQuestions',
1575  'filterQuestionBrowser',
1576  'view',
1577  'preview',
1578  'editQuestion',
1579  'exec_pg',
1580  'addItem',
1581  'upload',
1582  'save',
1583  'cancel',
1584  'addSuggestedSolution',
1585  'cancelExplorer',
1586  'linkChilds',
1587  'removeSuggestedSolution',
1588  'add',
1589  'addYesNo',
1590  'addTrueFalse',
1591  'createGaps',
1592  'setMediaMode',
1593  'uploadingImage',
1594  'uploadingImagemap',
1595  'addArea',
1596  'deletearea',
1597  'saveShape',
1598  'back',
1599  'addPair',
1600  'uploadingJavaapplet',
1601  'addParameter',
1602  'assessment',
1603  'addGIT',
1604  'addST',
1605  'addPG',
1606  'delete',
1607  'toggleGraphicalAnswers',
1608  'deleteAnswer',
1609  'deleteImage',
1610  'removeJavaapplet'
1611  ],
1612  '',
1613  '',
1614  $force_active
1615  );
1616  }
1617  if ($with_read_access) {
1618  $this->tabs_gui->addTab(
1619  'info_short',
1620  $this->lng->txt('info_short'),
1621  $this->ctrl->getLinkTargetByClass(
1622  [
1623  ilRepositoryGUI::class,
1624  self::class,
1625  ilInfoScreenGUI::class
1626  ]
1627  )
1628  );
1629  }
1630 
1631  if ($with_write_access) {
1632  // properties
1633  $this->tabs_gui->addTarget(
1634  'settings',
1635  $this->ctrl->getLinkTargetByClass(ilObjQuestionPoolSettingsGeneralGUI::class),
1636  [],
1637  [ilObjQuestionPoolSettingsGeneralGUI::class, ilObjTaxonomyGUI::class]
1638  );
1639 
1640  // skill service
1641  if ($this->isSkillsTabRequired()) {
1642  $link = $this->ctrl->getLinkTargetByClass(
1643  [ilQuestionPoolSkillAdministrationGUI::class, ilAssQuestionSkillAssignmentsGUI::class],
1645  );
1646 
1647  $this->tabs_gui->addTarget('qpl_tab_competences', $link, [], []);
1648  }
1649  }
1650 
1651  if ($with_read_access) {
1652  // print view
1653  $this->tabs_gui->addTarget(
1654  'print_view',
1655  $this->ctrl->getLinkTargetByClass([ilRepositoryGUI::class, self::class], 'print'),
1656  ['print'],
1657  '',
1658  ''
1659  );
1660  }
1661 
1662  if ($with_write_access) {
1663  $mdgui = new ilObjectMetaDataGUI($this->object);
1664  $mdtab = $mdgui->getTab();
1665  if ($mdtab) {
1666  $this->tabs_gui->addTarget(
1667  'meta_data',
1668  $mdtab,
1669  '',
1670  'ilmdeditorgui'
1671  );
1672  }
1673  }
1674 
1675  if ($with_write_access) {
1676  $this->tabs_gui->addTarget(
1677  'export',
1678  $this->ctrl->getLinkTargetByClass(ilExportGUI::class, ''),
1679  '',
1680  'ilexportgui'
1681  );
1682  }
1683 
1684  if ($this->access->checkAccess('edit_permission', '', $this->object->getRefId())) {
1685  $this->tabs_gui->addTarget(
1686  'perm_settings',
1687  $this->ctrl->getLinkTargetByClass([ilRepositoryGUI::class, self::class, ilPermissionGUI::class], 'perm'),
1688  ['perm', 'info', 'owner'],
1689  'ilpermissiongui'
1690  );
1691  }
1692  }
1693 
1694  private function isSkillsTabRequired(): bool
1695  {
1696  if (!($this->object instanceof ilObjQuestionPool)) {
1697  return false;
1698  }
1699 
1700  if (!$this->object->isSkillServiceEnabled()) {
1701  return false;
1702  }
1703 
1705  return false;
1706  }
1707 
1708  return true;
1709  }
1710 
1711  private function addSettingsSubTabs(ilTabsGUI $tabs): void
1712  {
1713  $tabs->addSubTab(
1715  $this->lng->txt('qpl_settings_subtab_general'),
1716  $this->ctrl->getLinkTargetByClass(ilObjQuestionPoolSettingsGeneralGUI::class),
1717  );
1718 
1719  $tabs->addSubTab(
1720  'tax_settings',
1721  $this->lng->txt('qpl_settings_subtab_taxonomies'),
1722  $this->ctrl->getLinkTargetByClass(ilTaxonomySettingsGUI::class, ''),
1723  );
1724  }
1725 
1726  public function infoScreenObject(): void
1727  {
1728  $this->ctrl->redirectByClass(
1729  [
1730  ilRepositoryGUI::class,
1731  self::class,
1732  ilInfoScreenGUI::class
1733  ]
1734  );
1735  }
1736 
1737  public function infoScreenForward(): void
1738  {
1739  if (!$this->access->checkAccess('visible', '', $this->ref_id)) {
1740  $this->error->raiseError($this->lng->txt('msg_no_perm_read'));
1741  }
1742 
1743  $this->tabs_gui->activateTab('info_short');
1744  $info = new ilInfoScreenGUI($this);
1745  $info->enablePrivateNotes();
1746  $info->addMetaDataSections($this->object->getId(), 0, $this->object->getType());
1747 
1748  $this->ctrl->forwardCommand($info);
1749  }
1750 
1751  public static function _goto($a_target): void
1752  {
1753  global $DIC;
1754  $main_tpl = $DIC->ui()->mainTemplate();
1755  $ilAccess = $DIC['ilAccess'];
1756  $ilErr = $DIC['ilErr'];
1757  $lng = $DIC['lng'];
1758  $ctrl = $DIC['ilCtrl'];
1759 
1760  if ($ilAccess->checkAccess('write', '', (int) $a_target)
1761  || $ilAccess->checkAccess('read', '', (int) $a_target)
1762  ) {
1763  $ctrl->setParameterByClass(ilObjQuestionPoolGUI::class, 'ref_id', $a_target);
1764  $ctrl->redirectByClass([ilRepositoryGUI::class, ilObjQuestionPoolGUI::class], self::DEFAULT_CMD);
1765  return;
1766  }
1767  if ($ilAccess->checkAccess('visible', '', $a_target)) {
1768  $DIC->ctrl()->setParameterByClass(ilInfoScreenGUI::class, 'ref_id', $a_target);
1769  $DIC->ctrl()->redirectByClass(
1770  [
1771  ilRepositoryGUI::class,
1772  self::class,
1773  ilInfoScreenGUI::class
1774  ]
1775  );
1776  }
1777  if ($ilAccess->checkAccess('read', '', ROOT_FOLDER_ID)) {
1778  $main_tpl->setOnScreenMessage(
1779  'info',
1780  sprintf(
1781  $lng->txt('msg_no_perm_read_item'),
1783  ),
1784  true
1785  );
1787  return;
1788  }
1789  $ilErr->raiseError($lng->txt('msg_no_perm_read_lm'), $ilErr->FATAL);
1790  }
1791 
1792  protected function getTable(): string
1793  {
1796 
1797  $table = new QuestionTable(
1798  $f,
1799  $r,
1800  $this->data_factory,
1801  $this->refinery,
1802  $this->url_builder,
1803  $this->action_parameter_token,
1804  $this->row_id_token,
1805  $this->db,
1806  $this->lng,
1807  $this->component_repository,
1808  $this->rbac_system,
1809  $this->user,
1810  $this->taxonomy->domain(),
1812  $this->object->getId(),
1813  $this->request_data_collector->getRefId()
1814  );
1815 
1820  $filter_action = $this->ctrl->getLinkTarget($this, self::DEFAULT_CMD);
1821  $filter = $table->getFilter($this->ui_service, $filter_action);
1822 
1823  $filter_params = $this->ui_service->filter()->getData($filter);
1824 
1825  if ($filter_params) {
1826  foreach (array_filter($filter_params) as $item => $value) {
1827  switch ($item) {
1828  case 'taxonomies':
1829  foreach ($value as $tax_value) {
1830  if ($tax_value === 'null') {
1831  $table->addTaxonomyFilterNoTaxonomySet(true);
1832  } else {
1833  $tax_nodes = explode('-', $tax_value);
1834  $tax_id = array_shift($tax_nodes);
1835  $table->addTaxonomyFilter(
1836  $tax_id,
1837  $tax_nodes,
1838  $this->object->getId(),
1839  $this->object->getType()
1840  );
1841  }
1842  }
1843  break;
1844  case 'commented':
1845  $table->setCommentFilter((int) $value);
1846  break;
1847  default:
1848  $table->addFieldFilter($item, $value);
1849  }
1850  }
1851  }
1852 
1853  return $r->render([
1854  $filter,
1855  $table->getTable()
1856  ->withRequest($this->request)
1857  ]);
1858  }
1859 }
buildImportQuestionsSelectionForm(string $form_cmd, string $importdir, string $qtifile, ?string $path_to_uploaded_file_in_temp_dir=null)
const ADDITIONAL_CONTENT_EDITING_MODE_IPE
ilNavigationHistory $navigation_history
setEditPreview(bool $a_editpreview)
Set Display first Edit tab, then Preview tab, instead of Page and Edit.
static get(string $a_var)
afterSave(ilObject $new_object)
static getStyleSheetLocation(string $mode="output", string $a_css_name="")
get full style sheet file name (path inclusive) of current user
Class ilObjectMetaDataGUI.
Readable part of repository interface to ilComponentDataDB.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilRbacSystem $rbac_system
importQuestionsFile(string $path_to_uploaded_file_in_temp_dir)
This describes commonalities between all forms.
Definition: Form.php:32
static _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
confirmDeleteQuestionsObject()
delete questions after confirmation
GUI class for the workflow of copying objects.
const ROOT_FOLDER_ID
Definition: constants.php:32
prepareOutput(bool $show_sub_objects=true)
static getQuestionTypeByTypeId($type_id)
Help GUI class.
importFile(string $file_to_import, string $path_to_uploaded_file_in_temp_dir)
acquireParameters(array $namespace, string ... $names)
Definition: URLBuilder.php:138
Class ilUnitConfigurationRepository.
This describes select field.
Definition: Select.php:28
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Import class.
setParameterByClass(string $a_class, string $a_parameter, $a_value)
Component logger with individual log levels by component id.
$url
Definition: shib_logout.php:66
getTabs()
adds tabs to tab gui object
download_paragraphObject()
download source code paragraph
RequestDataCollector $request_data_collector
questionsObject(?RoundTripModal $import_questions_modal=null)
list questions of question pool
exportObject()
Gateway for exports initiated from workspace, as there is a generic forward to {objTypeMainGUI}::expo...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Refinery $refinery
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
redirectByClass( $a_class, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
importObject(?object $a_new_obj, string $a_tmp_file, string $a_filename, string $a_type, string $a_comp="", bool $a_copy_file=false)
$ilErr
Definition: raiseError.php:33
static _lookupObjId(int $ref_id)
static deliverFileLegacy(string $a_file, ?string $a_filename=null, ?string $a_mime=null, ?bool $isInline=false, ?bool $removeAfterDelivery=false, ?bool $a_exit_after=true)
static buildAjaxHash(int $node_type, ?int $node_id, string $obj_type, int $obj_id, ?string $sub_type=null, ?int $sub_id=null, int $news_id=0)
Build ajax hash.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
deleteUploadedImportFile(string $path_to_uploaded_file_in_temp_dir)
ilLanguage $lng
ilComponentRepository $component_repository
addSubTab(string $a_id, string $a_text, string $a_link, string $a_frame="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static http()
Fetches the global http state from ILIAS.
UIFactory $ui_factory
importQuestionsFromQtiFile(ilObjQuestionPool $obj, array $selected_questions, string $qtifile, string $importdir, string $xmlfile='')
deleteQuestionsObject()
delete questions confirmation screen
ilComponentFactory $component_factory
static _lookupTitle(int $obj_id)
ILIAS Notes Service $notes_service
setTitleAndDescription()
called by prepare output
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
importQuestionPoolWithValidManifest(ilObjQuestionPool $obj, array $selected_questions, string $file_to_import)
Class ilObjectGUI Basic methods of all Output classes.
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
Class ilObjFile.
$out
Definition: buildRTE.php:24
global $DIC
Definition: shib_login.php:22
GeneralQuestionPropertiesRepository $questionrepository
Legacy Content Object Parser.
Class ilObjForumAdministration.
createQuestionFormObject(?Form $form=null)
withValue($value)
Get an input like this with another value displayed on the client side.
Definition: Group.php:61
Class ilObjQuestionPoolGUI.
static getContentStylePath(int $a_style_id, bool $add_random=true, bool $add_token=true)
get content style path static (to avoid full reading)
Last visited history for repository items.
withValue($value)
Get an input like this with another value displayed on the client side.
$filename
Definition: buildRTE.php:78
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
static getListCommentsJSCall(string $a_hash, ?string $a_update_code=null)
Get list comments js call.
static redirect(string $a_script)
fullscreenObject()
show fullscreen view
retrieveSelectedQuestionsFromImportQuestionsSelectionForm(string $form_cmd, string $importdir, string $qtifile, ServerRequestInterface $request)
sendParagraph(string $par_id, string $filename)
__construct(Container $dic, ilPlugin $plugin)
const ADDITIONAL_CONTENT_EDITING_MODE_RTE
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
GlobalTestSettings $global_test_settings
This describes commonalities between all inputs.
Definition: Input.php:46
Class ilLocalUnitConfigurationGUI.
array buildImportDirectoriesFromImportFile(string $file_to_import)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setPrimaryCmd(string $label, string $cmd)
URLBuilder.
Definition: URLBuilder.php:40
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilLocatorGUI $locator
static clear(string $a_var)
UIRenderer $ui_renderer
static set(string $a_var, $a_val)
Set a value.
showMediaFullscreen(int $a_style_id=0)
show fullscreen view of media object
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
static _gotoRepositoryRoot(bool $raise_error=false)
Goto repository root.
cleanupAfterImport(string $importdir)
$r