19 declare(strict_types=1);
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();
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'];
122 $this->
ctrl->saveParameter($this, [
130 $this->
ctrl->saveParameterByClass(
'ilAssQuestionPageGUI',
'consumer_context');
131 $this->
ctrl->saveParameterByClass(
'ilobjquestionpoolgui',
'consumer_context');
133 $this->
lng->loadLanguageModule(
'assessment');
135 $here_uri = $this->data_factory->uri($this->request->getUri()->__toString());
137 $query_params_namespace = [
'qpool',
'table'];
138 list($url_builder, $action_parameter_token, $row_id_token) = $url_builder->
acquireParameters(
139 $query_params_namespace,
147 $this->notes_service->gui()->initJavascript();
152 $write_access = $this->
access->checkAccess(
'write',
'', $this->request_data_collector->getRefId());
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);
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"),
170 $cmd = $this->
ctrl->getCmd(self::DEFAULT_CMD);
171 $next_class = $this->
ctrl->getNextClass($this);
172 $q_id = $this->request_data_collector->getQuestionId() ??
null;
174 if (in_array($next_class, [
'',
'ilobjquestionpoolgui']) && $cmd == self::DEFAULT_CMD) {
182 $q_type = $this->request_data_collector->string(
'question_type');
183 switch ($next_class) {
184 case 'ilcommonactiondispatchergui':
186 $this->
ctrl->forwardCommand($gui);
189 case 'ilobjectmetadatagui':
190 if (!$this->
access->checkAccess(
'write',
'', $this->object->getRefId())) {
191 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->WARNING);
194 $this->
ctrl->forwardCommand($md_gui);
197 case 'ilassquestionpreviewgui':
198 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
202 $this->
ctrl->saveParameterByClass(ilAssQuestionPreviewGUI::class,
'q_id');
203 $this->
ctrl->saveParameterByClass(ilAssQuestionHintRequestGUI::class,
'q_id');
204 $this->
ctrl->saveParameter($this,
'q_id');
221 $question_gui = assQuestion::instantiateQuestionGUI($this->request_data_collector->int(
'q_id'));
223 $this->
lng->txt(
'edit_question'),
224 $this->
ctrl->getLinkTargetByClass(
225 get_class($question_gui),
229 $gui->addAdditionalCmd(
230 $this->
lng->txt(
'edit_page'),
231 $this->
ctrl->getLinkTargetByClass(
232 ilAssQuestionPageGUI::class,
241 $gui->initPreviewSettings($this->
object->getRefId());
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)
250 $this->
help->setScreenIdComponent(
'qpl');
252 $this->
ctrl->forwardCommand($gui);
255 case 'ilassquestionpagegui':
256 if ($cmd ==
'finishEditing') {
257 $this->
ctrl->redirectByClass(
'ilassquestionpreviewgui',
'show');
260 if ($cmd ===
'edit' && !$this->
access->checkAccess(
'write',
'', $this->object->getRefId())) {
263 $this->tpl->setCurrentBlock(
'ContentStyle');
265 $this->tpl->parseCurrentBlock();
267 $this->tpl->setCurrentBlock(
'SyntaxStyle');
269 $this->tpl->parseCurrentBlock();
272 $question_gui->setQuestionTabs();
274 $question_gui->setQuestionActionCmd(
'');
276 if ($this->
object->getType() ===
'qpl') {
277 $question_gui->addHeaderAction();
282 if ($this->questionrepository->isInActiveTest($question->getObjId())) {
283 $this->tpl->setOnScreenMessage(
285 $this->
lng->txt(
'question_is_part_of_running_test'),
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);
296 $page_gui->obj->addUpdateListener(
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);
309 $this->tpl->setContent($ret);
313 case 'ilpermissiongui':
315 $this->
ctrl->forwardCommand($perm_gui);
318 case 'ilobjectcopygui':
321 $this->
ctrl->forwardCommand($cp);
326 $ret = $this->
ctrl->forwardCommand($exp_gui);
329 case strtolower(ilInfoScreenGUI::class):
333 case 'ilassquestionhintsgui':
334 if (!$this->
access->checkAccess(
'write',
'', $this->object->getRefId())) {
338 $this->
ctrl->setReturn($this, self::DEFAULT_CMD);
344 $question->setObjId($this->
object->getId());
345 $question_gui->setObject($question);
346 $question_gui->setQuestionTabs();
348 if ($this->questionrepository->isInActiveTest($question_gui->
getObject()->getObjId())) {
349 $this->tpl->setOnScreenMessage(
351 $this->
lng->txt(
'question_is_part_of_running_test'),
357 $this->
help->setScreenIdComponent(
'qpl');
359 if ($this->
object->getType() ==
'qpl' && $write_access) {
360 $question_gui->addHeaderAction();
364 $gui->setEditingEnabled(
365 $this->
access->checkAccess(
'write',
'', $this->object->getRefId())
368 $this->
ctrl->forwardCommand($gui);
372 case 'illocalunitconfigurationgui':
373 if (!$this->
access->checkAccess(
'write',
'', $this->object->getRefId())) {
374 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->WARNING);
381 $question->setObjId($this->
object->getId());
382 $question_gui->setObject($question);
383 $question_gui->setQuestionTabs();
385 $this->
ctrl->setReturn($this, self::DEFAULT_CMD);
389 $this->
ctrl->forwardCommand($gui);
392 case 'ilassquestionfeedbackeditinggui':
393 if (!$this->
access->checkAccess(
'write',
'', $this->object->getRefId())) {
397 $this->
ctrl->setReturn($this, self::DEFAULT_CMD);
403 $question->setObjId($this->
object->getId());
404 $question_gui->setObject($question);
405 $question_gui->setQuestionTabs();
407 if ($this->questionrepository->isInActiveTest($question_gui->
getObject()->getObjId())) {
408 $this->tpl->setOnScreenMessage(
410 $this->
lng->txt(
'question_is_part_of_running_test'),
416 $this->
help->setScreenIdComponent(
'qpl');
418 if ($this->
object->getType() ==
'qpl' && $write_access) {
419 $question_gui->addHeaderAction();
429 $this->request_data_collector,
430 $this->content_style,
433 $this->
ctrl->forwardCommand($gui);
437 case 'ilobjquestionpoolsettingsgeneralgui':
450 $this->
ctrl->forwardCommand($gui);
453 case strtolower(ilTaxonomySettingsGUI::class):
454 if (!$this->
access->checkAccess(
'write',
'', $this->object->getRefId())) {
464 $this->component_repository,
471 $forwarder->forward();
475 case 'ilquestionpoolskilladministrationgui':
486 $this->component_repository,
491 $this->
ctrl->forwardCommand($gui);
494 case 'ilbulkeditquestionsgui':
495 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
498 $this->tabs_gui->setBackTarget(
499 $this->
lng->txt(
'backtocallingpool'),
500 $this->
ctrl->getLinkTargetByClass(self::class, self::DEFAULT_CMD)
502 $this->tabs_gui->addTarget(
506 $this->
ctrl->getCmdClass(),
509 $this->tabs_gui->setTabActive(
'edit_questions');
511 $gui = new \ilBulkEditQuestionsGUI(
519 $this->request_wrapper,
522 $this->
ctrl->forwardCommand($gui);
525 case 'ilobjquestionpoolgui':
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;
532 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'msg_no_questions_selected'),
true);
533 $this->
ctrl->redirect($this, self::DEFAULT_CMD);
535 if ($ids[0] ===
'ALL_OBJECTS') {
536 $ids = $this->
object->getAllQuestionIds();
538 if (!is_array($ids)) {
539 $ids = explode(
',', $ids);
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));
559 case 'edit_question':
560 $url = $this->
ctrl->getLinkTargetByClass($class,
'editQuestion');
564 $url = $this->
ctrl->getLinkTargetByClass(
'ilAssQuestionPageGUI',
'edit');
577 $this->
ctrl->redirect($this, self::DEFAULT_CMD);
581 $this->
ctrl->redirect($this, self::DEFAULT_CMD);
588 $this->
ctrl->redirect($this, self::DEFAULT_CMD);
593 $this->
object->getRefId(),
595 $this->
object->getId(),
601 .
' event = new Event("click");' 610 $this->
ctrl->clearParameters($this);
611 $this->
ctrl->setParameterByClass(
612 ilBulkEditQuestionsGUI::class,
616 $url = $this->
ctrl->getLinkTargetByClass(
617 ilBulkEditQuestionsGUI::class,
624 throw new \Exception(
"'$action'" .
" not implemented");
630 if ($cmd == self::DEFAULT_CMD) {
631 $this->
ctrl->setParameter($this,
'q_id',
'');
634 $ret = $this->$cmd();
638 if (in_array($cmd, [
'editQuestion',
'save',
'suggestedsolution']) && !$this->
access->checkAccess(
641 $this->object->getRefId()
646 $this->
ctrl->setReturnByClass(self::class, self::DEFAULT_CMD);
655 $question->setObjId($this->
object->getId());
656 $question_gui->setObject($question);
658 if ($this->
object->getType() ===
'qpl') {
659 $question_gui->setTaxonomyIds($this->
object->getTaxonomyIds());
662 $question_gui->addHeaderAction();
666 $this->
help->setScreenIdComponent(
'qpl');
668 if ($qid === 0 && $question_gui->cmdNeedsExistingQuestion($cmd)) {
669 $question_gui->
getObject()->createNewQuestion();
672 $question_gui->setQuestionTabs();
674 if (!in_array($cmd, [
'save',
'saveReturn'])) {
675 $question_gui->$cmd();
679 if (!$question_gui->saveQuestion()) {
682 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_obj_modified'),
true);
683 if ($cmd ===
'saveReturn') {
684 $this->
ctrl->setParameterByClass(
685 ilAssQuestionPreviewGUI::class,
687 (
string) $question_gui->
getObject()->getId()
689 $this->
ctrl->redirectToURL(
694 if ($cmd ===
'save') {
695 $this->tabs_gui->activateTab(
'edit_question');
696 $question_gui->editQuestion(
false,
false);
701 if (!(strtolower($this->request_data_collector->raw(
'baseClass')) ==
'iladministrationgui' 702 || strtolower($this->request_data_collector->raw(
'baseClass')) ==
'ilrepositorygui')
704 $this->tpl->printToStdout();
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);
722 $this->
ctrl->redirectByClass(
'ilQuestionPoolExportGUI');
727 $file = explode(
'_', $this->request_data_collector->raw(
'file_id'));
728 $fileObj =
new ilObjFile((
int) $file[count($file) - 1],
false);
729 $fileObj->sendFile();
748 $pg_obj->
sendParagraph($this->request_data_collector->raw(
'par_id'), $this->request_data_collector->raw(
'downloadtitle'));
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());
772 'importVerifiedFile',
778 if (is_file($importdir . DIRECTORY_SEPARATOR .
'manifest.xml')) {
793 $new_obj->fromXML($xmlfile);
796 $new_obj->saveToDb();
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);
809 if (mb_substr($file_to_import, -3) ===
'xml') {
810 $importdir = dirname($file_to_import);
812 'importVerifiedQuestionsFile',
826 'importVerifiedQuestionsFile',
831 if (is_file($importdir . DIRECTORY_SEPARATOR .
'manifest.xml')) {
850 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'object_imported'),
true);
857 $data = $import_questions_modal->getData();
860 $import_questions_modal->withOnLoad(
861 $import_questions_modal->getShowSignal()
866 $path_to_imported_file_in_temp_dir =
$data[
'import_file'][0];
872 $constraint = $this->
refinery->custom()->constraint(
873 function ($vs):
bool {
879 $this->
lng->txt(
'msg_no_files_selected')
882 $file_upload_input = $this->ui_factory->input()->field()
884 ->withAcceptedMimeTypes(self::SUPPORTED_IMPORT_MIME_TYPES)
886 ->withAdditionalTransformation($constraint);
887 return $this->ui_factory->modal()->roundtrip(
888 $this->
lng->txt(
'import'),
890 [
'import_file' => $file_upload_input],
891 $this->
ctrl->getFormActionByClass(self::class,
'uploadQuestionsImport')
892 )->withSubmitLabel($this->
lng->txt(
'import'));
897 array $selected_questions,
898 string $file_to_import
901 ilSession::set(
'qpl_import_selected_questions', $selected_questions);
902 $imp =
new ilImport($this->request_data_collector->getRefId());
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);
910 array $selected_questions,
924 if ($xmlfile ===
'') {
933 $cont_parser->setQuestionMapping($qti_parser->getImportMapping());
934 $cont_parser->startParsing();
945 public function createQuestionObject():
void 948 $data_with_section = $form->getData();
949 if ($data_with_section ===
null) {
953 $data = $data_with_section[0];
955 $this->
ctrl->setReturnByClass(self::class, self::DEFAULT_CMD);
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();
972 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'object_added'),
true);
975 'ilias.php?ref_id=' . $new_object->
getRefId() .
976 '&baseClass=ilObjQuestionPoolGUI' 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);
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());
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()];
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);
1018 $this->tpl->setOnScreenMessage(
'question', $this->
lng->txt(
'qpl_confirm_delete_questions'));
1019 $deleteable_questions = &$this->
object->getDeleteableQuestionDetails($questionIdsToDelete);
1023 (($rbacsystem->checkAccess(
'write', $this->request_data_collector->getRefId()) ?
true :
false)),
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());
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);
1043 if ($qst_ids !== []) {
1044 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'qpl_questions_deleted'),
true);
1047 $this->
ctrl->setParameter($this,
'q_id',
'');
1048 $this->
ctrl->redirect($this, self::DEFAULT_CMD);
1053 $this->
ctrl->redirect($this, self::DEFAULT_CMD);
1062 $export_file = $qpl_exp->buildExportFile();
1065 if ($export_file ===
'') {
1066 $export_file =
'StandIn';
1071 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'qpl_export_select_none'),
true);
1080 $this->
ctrl->redirectByClass(
1082 ilRepositoryGUI::class,
1084 ilInfoScreenGUI::class
1094 if (!$this->
access->checkAccess(
"read",
"", $this->request_data_collector->getRefId())) {
1099 $this->
object->purgeQuestions();
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')
1106 $this->tpl->setOnScreenMessage(
1108 $qsa_import_fails->getFailedImportsMessage($this->lng) .
'<br />' . $this->ui_renderer->render(
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')
1120 $this->
toolbar->addComponent($btn);
1122 if ($import_questions_modal ===
null) {
1126 $btn_import = $this->ui_factory->button()->standard(
1127 $this->
lng->txt(
'import'),
1128 $import_questions_modal->getShowSignal()
1130 $this->
toolbar->addComponent($btn_import);
1131 $out[] = $this->ui_renderer->render($import_questions_modal);
1134 $btn_paste = $this->ui_factory->button()->standard(
1135 $this->
lng->txt(
'paste'),
1136 $this->
ctrl->getLinkTargetByClass([ilRepositoryGUI::class, self::class],
'paste')
1138 $this->
toolbar->addComponent($btn_paste);
1142 $this->tpl->setPermanentLink($this->
object->getType(), $this->
object->getRefId());
1144 $this->tpl->setContent(implode(
'',
$out));
1149 $q_id = $this->request_data_collector->getQuestionId();
1151 if ($q_id === 0 || $this->
object->checkQuestionParent($q_id)) {
1160 $this->
help->setScreenId(
'assQuestions');
1161 if ($this->global_test_settings->isPageEditorEnabled()) {
1162 $this->
help->setSubScreenId(
'createQuestion_editMode');
1164 $this->
help->setSubScreenId(
'createQuestion');
1167 $this->tpl->setContent(
1168 $this->ui_renderer->render(
1169 $form ?? $this->buildQuestionCreationForm()
1180 $this->ui_factory->input()->field()->section(
$inputs, $this->
lng->txt(
'ass_create_question'))
1183 $form = $this->ui_factory->input()->container()->form()->standard(
1184 $this->
ctrl->getFormAction($this,
'createQuestion'),
1186 )->withSubmitLabel($this->
lng->txt(
'create'));
1193 $question_types = (
new ilObjQuestionPool())->getQuestionTypes(
false,
true,
false);
1195 foreach ($question_types as $label =>
$data) {
1196 $options[
$data[
'question_type_id']] = $label;
1199 return $this->ui_factory->input()->field()->select(
1200 $this->
lng->txt(
'question_type'),
1202 )->withRequired(
true);
1207 if (!$this->global_test_settings->isPageEditorEnabled()) {
1208 return $this->ui_factory->input()->field()->hidden()->
withValue(
1213 return $this->ui_factory->input()->field()->radio($this->
lng->txt(
'tst_add_quest_cont_edit_mode'))
1216 $this->
lng->txt(
'tst_add_quest_cont_edit_mode_IPE'),
1217 $this->
lng->txt(
'tst_add_quest_cont_edit_mode_IPE_info')
1220 $this->
lng->txt(
'tst_add_quest_cont_edit_mode_RTE'),
1221 $this->
lng->txt(
'tst_add_quest_cont_edit_mode_RTE_info')
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');
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'));
1242 $output = $this->request_data_collector->raw(
'output') ??
'';
1245 $data = $this->
object->getPrintviewQuestions();
1248 $totalPoints += $d[
'points'];
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());
1258 $this->
object->update();
1259 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_obj_modified'),
true);
1265 if ($this->
object->pasteFromClipboard()) {
1266 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'qpl_paste_success'),
true);
1268 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'qpl_paste_error'),
true);
1271 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'qpl_paste_no_objects'),
true);
1273 $this->
ctrl->redirect($this, self::DEFAULT_CMD);
1279 foreach ($ids as
$id) {
1280 $this->
object->copyToClipboard($id);
1282 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'qpl_copy_insert_clipboard'),
true);
1284 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'qpl_copy_select_none'),
true);
1291 foreach ($ids as
$id) {
1292 $this->
object->moveToClipboard($id);
1294 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'qpl_move_insert_clipboard'),
true);
1296 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'qpl_move_select_none'),
true);
1303 if ($rbacsystem->checkAccess(
'write', $this->request_data_collector->getRefId())) {
1304 $question_ids = &$this->
object->getAllQuestionIds();
1306 $qpl_exp->buildExportFile();
1307 $this->
ctrl->redirectByClass(
'ilquestionpoolexportgui',
'');
1313 $this->
ctrl->redirectByClass(ilAssQuestionPreviewGUI::class,
'show');
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'));
1323 $file_to_import = $this->import_temp_directory . DIRECTORY_SEPARATOR . $files[0]->getPath();
1324 $qtifile = $file_to_import;
1325 $importdir = dirname($file_to_import);
1328 if ($this->temp_file_system->getMimeType($files[0]->getPath()) === MimeType::APPLICATION__ZIP) {
1331 $unzip = $this->archives->unzip($this->temp_file_system->readStream($files[0]->getPath()), $options);
1335 if (!file_exists($qtifile)) {
1337 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'cannot_find_xml'),
true);
1343 ilSession::set(
'path_to_uploaded_file_in_temp_dir', $path_to_uploaded_file_in_temp_dir);
1346 'importVerifiedQuestionsFile',
1349 $path_to_uploaded_file_in_temp_dir
1352 if ($form ===
null) {
1356 $panel = $this->ui_factory->panel()->standard(
1357 $this->
lng->txt(
'import_question'),
1359 $this->ui_factory->legacy()->content($this->
lng->txt(
'qpl_import_verify_found_questions')),
1363 $this->tpl->setContent($this->ui_renderer->render($panel));
1364 $this->tpl->printToStdout();
1368 protected function importFile(
string $file_to_import,
string $path_to_uploaded_file_in_temp_dir): void
1375 $unzip = $this->archives->unzip(Streams::ofResource(fopen($file_to_import,
'r')), $options);
1378 if (!file_exists($qtifile)) {
1380 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'cannot_find_xml'),
true);
1385 ilSession::set(
'path_to_uploaded_file_in_temp_dir', $path_to_uploaded_file_in_temp_dir);
1387 $this->
ctrl->setParameterByClass(self::class,
'new_type', $this->type);
1389 'importVerifiedFile',
1392 $path_to_uploaded_file_in_temp_dir
1395 if ($form ===
null) {
1399 $panel = $this->ui_factory->panel()->standard(
1400 $this->
lng->txt(
'import_qpl'),
1402 $this->ui_factory->legacy()->content($this->
lng->txt(
'qpl_import_verify_found_questions')),
1406 $this->tpl->setContent($this->ui_renderer->render($panel));
1407 $this->tpl->printToStdout();
1415 switch ($this->
ctrl->getCmd()) {
1421 $this->
ctrl->clearParameterByClass(self::class,
'q_id');
1422 $ilLocator->addItem(
1423 $this->
object->getTitle(),
1424 $this->
ctrl->getLinkTargetByClass([ilRepositoryGUI::class, self::class],
''),
1426 $this->request_data_collector->getRefId()
1428 $this->
ctrl->setParameter($this,
'q_id', $this->request_data_collector->getQuestionId());
1432 if (!is_array($this->request_data_collector->raw(
'q_id')) && $this->request_data_collector->raw(
'q_id') > 0 && $this->request_data_collector->raw(
1434 ) !== self::DEFAULT_CMD) {
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();
1442 $title = $this->
lng->txt(
'new') .
': ' . $this->questionrepository->getForQuestionId(
1443 $question_gui->getObject()->getId()
1444 )->getTypeName($this->
lng);
1446 $ilLocator->addItem($title, $this->
ctrl->getLinkTargetByClass(get_class($question_gui),
'editQuestion'));
1449 $this->
ctrl->setParameter($this,
'q_id',
'');
1450 $this->
ctrl->redirect($this);
1460 parent::setTitleAndDescription();
1462 if (!is_array($this->request_data_collector->raw(
'q_id')) && $this->request_data_collector->raw(
'q_id') > 0 && $this->request_data_collector->raw(
1464 ) !== self::DEFAULT_CMD) {
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();
1472 $title = $this->
lng->txt(
'new') .
': ' . $this->questionrepository->getForQuestionId(
1473 $question_gui->getObject()->getId()
1474 )->getTypeName($this->
lng);
1476 $this->tpl->setTitle(
1477 $this->
refinery->encode()->htmlSpecialCharsAsEntities()->transform(
1481 $this->tpl->setDescription(
1482 $question_gui->getObject()->getDescriptionForHTMLOutput()
1487 $this->
ctrl->setParameter($this,
'q_id',
'');
1488 $this->
ctrl->redirect($this);
1491 $this->tpl->setTitle(
1492 $this->
refinery->encode()->htmlSpecialCharsAsEntities()->transform(
1493 $this->
object->getTitle()
1496 $this->tpl->setDescription(
1497 $this->
refinery->encode()->htmlSpecialCharsAsEntities()->transform(
1498 $this->
object->getLongDescription()
1512 $with_write_access = $this->
access->checkAccess(
'write',
'', $this->
object->getRefId());
1513 $with_read_access = $this->
access->checkAccess(
'read',
'', $this->
object->getRefId());
1515 $this->
help->setScreenIdComponent(
'qpl');
1517 switch ($this->
ctrl->getNextClass()) {
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):
1526 case strtolower(ilTaxonomySettingsGUI::class):
1527 case strtolower(ilObjQuestionPoolSettingsGeneralGUI::class):
1528 if ($with_write_access) {
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)
1549 $force_active =
true;
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() ===
'' 1561 if ($with_read_access) {
1562 $this->tabs_gui->addTarget(
1564 $this->
ctrl->getLinkTargetByClass(
1565 [ilRepositoryGUI::class, self::class],
1575 'filterQuestionBrowser',
1584 'addSuggestedSolution',
1587 'removeSuggestedSolution',
1594 'uploadingImagemap',
1600 'uploadingJavaapplet',
1607 'toggleGraphicalAnswers',
1617 if ($with_read_access) {
1618 $this->tabs_gui->addTab(
1620 $this->
lng->txt(
'info_short'),
1621 $this->
ctrl->getLinkTargetByClass(
1623 ilRepositoryGUI::class,
1625 ilInfoScreenGUI::class
1631 if ($with_write_access) {
1633 $this->tabs_gui->addTarget(
1635 $this->
ctrl->getLinkTargetByClass(ilObjQuestionPoolSettingsGeneralGUI::class),
1637 [ilObjQuestionPoolSettingsGeneralGUI::class, ilObjTaxonomyGUI::class]
1642 $link = $this->
ctrl->getLinkTargetByClass(
1643 [ilQuestionPoolSkillAdministrationGUI::class, ilAssQuestionSkillAssignmentsGUI::class],
1647 $this->tabs_gui->addTarget(
'qpl_tab_competences', $link, [], []);
1651 if ($with_read_access) {
1653 $this->tabs_gui->addTarget(
1655 $this->
ctrl->getLinkTargetByClass([ilRepositoryGUI::class, self::class],
'print'),
1662 if ($with_write_access) {
1664 $mdtab = $mdgui->getTab();
1666 $this->tabs_gui->addTarget(
1675 if ($with_write_access) {
1676 $this->tabs_gui->addTarget(
1678 $this->
ctrl->getLinkTargetByClass(ilExportGUI::class,
''),
1684 if ($this->
access->checkAccess(
'edit_permission',
'', $this->object->getRefId())) {
1685 $this->tabs_gui->addTarget(
1687 $this->
ctrl->getLinkTargetByClass([ilRepositoryGUI::class, self::class, ilPermissionGUI::class],
'perm'),
1688 [
'perm',
'info',
'owner'],
1700 if (!$this->
object->isSkillServiceEnabled()) {
1715 $this->
lng->txt(
'qpl_settings_subtab_general'),
1716 $this->
ctrl->getLinkTargetByClass(ilObjQuestionPoolSettingsGeneralGUI::class),
1721 $this->
lng->txt(
'qpl_settings_subtab_taxonomies'),
1722 $this->
ctrl->getLinkTargetByClass(ilTaxonomySettingsGUI::class,
''),
1728 $this->
ctrl->redirectByClass(
1730 ilRepositoryGUI::class,
1732 ilInfoScreenGUI::class
1739 if (!$this->
access->checkAccess(
'visible',
'', $this->ref_id)) {
1740 $this->error->raiseError($this->
lng->txt(
'msg_no_perm_read'));
1743 $this->tabs_gui->activateTab(
'info_short');
1745 $info->enablePrivateNotes();
1746 $info->addMetaDataSections($this->
object->getId(), 0, $this->
object->getType());
1748 $this->
ctrl->forwardCommand($info);
1751 public static function _goto($a_target): void
1754 $main_tpl = $DIC->ui()->mainTemplate();
1755 $ilAccess = $DIC[
'ilAccess'];
1758 $ctrl = $DIC[
'ilCtrl'];
1760 if ($ilAccess->checkAccess(
'write',
'', (
int) $a_target)
1761 || $ilAccess->checkAccess(
'read',
'', (
int) $a_target)
1764 $ctrl->
redirectByClass([ilRepositoryGUI::class, ilObjQuestionPoolGUI::class], self::DEFAULT_CMD);
1767 if ($ilAccess->checkAccess(
'visible',
'', $a_target)) {
1768 $DIC->ctrl()->setParameterByClass(ilInfoScreenGUI::class,
'ref_id', $a_target);
1769 $DIC->ctrl()->redirectByClass(
1771 ilRepositoryGUI::class,
1773 ilInfoScreenGUI::class
1778 $main_tpl->setOnScreenMessage(
1781 $lng->
txt(
'msg_no_perm_read_item'),
1800 $this->data_factory,
1803 $this->action_parameter_token,
1804 $this->row_id_token,
1807 $this->component_repository,
1810 $this->taxonomy->domain(),
1812 $this->
object->getId(),
1813 $this->request_data_collector->getRefId()
1820 $filter_action = $this->
ctrl->getLinkTarget($this, self::DEFAULT_CMD);
1821 $filter = $table->getFilter($this->ui_service, $filter_action);
1823 $filter_params = $this->ui_service->filter()->getData($filter);
1825 if ($filter_params) {
1826 foreach (array_filter($filter_params) as $item => $value) {
1829 foreach ($value as $tax_value) {
1830 if ($tax_value ===
'null') {
1831 $table->addTaxonomyFilterNoTaxonomySet(
true);
1833 $tax_nodes = explode(
'-', $tax_value);
1834 $tax_id = array_shift($tax_nodes);
1835 $table->addTaxonomyFilter(
1839 $this->
object->getType()
1845 $table->setCommentFilter((
int) $value);
1848 $table->addFieldFilter($item, $value);
1856 ->withRequest($this->request)
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
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...
buildImportQuestionsModal()
ilRbacSystem $rbac_system
importQuestionsFile(string $path_to_uploaded_file_in_temp_dir)
URLBuilderToken $action_parameter_token
DataFactory $data_factory
importVerifiedQuestionsFileObject()
static _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
renoveImportFailsObject()
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...
confirmDeleteQuestions(array $ids)
confirmDeleteQuestionsObject()
delete questions after confirmation
GUI class for the workflow of copying objects.
prepareOutput(bool $show_sub_objects=true)
static getQuestionTypeByTypeId($type_id)
importFile(string $file_to_import, string $path_to_uploaded_file_in_temp_dir)
copyQuestions(array $ids)
trait TestQuestionsImportTrait
acquireParameters(array $namespace, string ... $names)
Class ilUnitConfigurationRepository.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setParameterByClass(string $a_class, string $a_parameter, $a_value)
const TAB_COMMON_SETTINGS
Component logger with individual log levels by component id.
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
const SUPPORTED_IMPORT_MIME_TYPES
exportObject()
Gateway for exports initiated from workspace, as there is a generic forward to {objTypeMainGUI}::expo...
GlobalScreen $global_screen
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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)
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...
editQuestionForTestObject()
deleteUploadedImportFile(string $path_to_uploaded_file_in_temp_dir)
URLBuilderToken $row_id_token
moveQuestions(array $ids)
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.
importQuestionsFromQtiFile(ilObjQuestionPool $obj, array $selected_questions, string $qtifile, string $importdir, string $xmlfile='')
deleteQuestionsObject()
delete questions confirmation screen
deleteRegisteredImportFails()
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
GeneralQuestionPropertiesRepository $questionrepository
cancelDeleteQuestionsObject()
Legacy Content Object Parser.
Class ilObjForumAdministration.
addSettingsSubTabs(ilTabsGUI $tabs)
createQuestionFormObject(?Form $form=null)
static getSyntaxStylePath()
importVerifiedFileObject()
buildQuestionCreationForm()
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.
const EDIT_CONTEXT_AUTHORING
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)
ContentStyle $content_style
fullscreenObject()
show fullscreen view
fetchAuthoringQuestionIdParamater()
static isSkillManagementGloballyActivated()
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
uploadQuestionsImportObject()
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...
redirectAfterMissingWrite()
exportQuestions(array $ids)
setPrimaryCmd(string $label, string $cmd)
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static clear(string $a_var)
const RENDER_PURPOSE_PREVIEW
static set(string $a_var, $a_val)
Set a value.
const CMD_SHOW_SKILL_QUEST_ASSIGNS
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)