33 protected \ILIAS\Survey\InternalGUIService
$gui;
34 protected \ILIAS\Survey\PrintView\GUIService
$print;
35 protected \ILIAS\HTTP\Services
$http;
36 protected \ILIAS\DI\UIServices
$ui;
56 $this->
tabs = $DIC->tabs();
57 $this->
help = $DIC[
"ilHelp"];
58 $this->
toolbar = $DIC->toolbar();
59 $this->
user = $DIC->user();
60 $this->tree = $DIC->repositoryTree();
61 $ilCtrl = $DIC->ctrl();
62 $lng = $DIC->language();
65 $this->parent_gui = $a_parent_gui;
68 $this->
object = $survey;
70 $this->
ctrl = $ilCtrl;
74 $this->
ctrl->saveParameter($this, array(
"pgov",
"pgov_pos"));
76 $this->print_options = array(
82 $this->edit_manager = $DIC->survey()
86 $this->request = $DIC->survey()
91 $this->requested_pgov = $this->request->getTargetPosition();
92 $this->
ui = $DIC->ui();
93 $this->
http = $DIC->http();
94 $this->print = $DIC->survey()
98 $this->gui = $DIC->survey()
101 $this->sequence_manager = $DIC->survey()->internal()->domain()->sequence(
102 $this->
object->getSurveyId(),
109 $this->requested_pgov = $pgov;
116 $cmd = $this->
ctrl->getCmd(
"questions");
118 $next_class = $this->
ctrl->getNextClass($this);
119 switch ($next_class) {
123 if (stripos($next_class,
"questiongui") !==
false) {
124 $ilTabs->clearTargets();
125 $this->
ctrl->saveParameter($this, array(
"new_for_survey"));
128 $this->request->getQuestionId()
130 if (is_object($q_gui->object)) {
135 $q_gui->setBackUrl($this->
ctrl->getLinkTarget($this,
"questions"));
136 $q_gui->setQuestionTabs();
137 $this->
ctrl->forwardCommand($q_gui);
139 if (!$this->request->getNewForSurvey()) {
141 $this->tpl->setTitle($this->
lng->txt(
"question") .
": " . $q_gui->object->getTitle());
156 if ($a_cmd ===
"questions" && $this->requested_pgov !==
"") {
160 $this->
ctrl->setParameter($this,
"pgov",
"");
163 $this->
lng->txt(
"survey_question_editor"),
164 $this->
ctrl->getLinkTarget($this,
"questions")
166 $this->
ctrl->setParameter($this,
"pgov", $this->requested_pgov);
168 if ($this->
object->getSurveyPages()) {
169 if ($a_cmd ===
"page") {
170 $this->
ctrl->setParameterByClass(
"ilsurveyexecutiongui",
"pgov", max(1, $this->request->getPage()));
172 $this->
ctrl->setParameterByClass(
"ilsurveyexecutiongui",
"prvw", 1);
175 $this->
lng->txt(
"preview"),
176 $this->
ctrl->getLinkTargetByClass(array(
"ilobjsurveygui",
"ilsurveyexecutiongui"),
"preview")
180 $ilTabs->activateSubTab($a_cmd);
194 if ($this->request->getNewId() > 0) {
196 $existing = $this->
object->getExistingQuestions();
197 if (!in_array($this->request->getNewId(), $existing)) {
198 $inserted = $this->
object->insertQuestion($this->request->getNewId());
200 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"survey_error_insert_incomplete_question"));
203 $this->
ctrl->redirect($this,
"questions");
210 $read_only = $hasDatasets;
216 $qtypes[
$data[
"type_tag"]] = $translation;
219 $ilToolbar->setFormAction($this->
ctrl->getFormAction($this));
222 $ilToolbar->addStickyItem($types,
"");
225 $this->
lng->txt(
"svy_create_question"),
227 )->submit()->toToolbar(
true);
230 $cmd = ((
int) $ilUser->getPref(
'svy_insert_type') === 1 ||
231 ($ilUser->getPref(
'svy_insert_type') ??
'') ===
'')
232 ?
'browseForQuestions' 233 :
'browseForQuestionblocks';
236 $this->
lng->txt(
"browse_for_questions"),
237 $this->
ctrl->getLinkTarget($this, $cmd)
240 if ($this->
object->hasQuestions()) {
241 $ilToolbar->addSeparator();
243 $this->
lng->txt(
"add_heading"),
244 $this->
ctrl->getLinkTarget($this,
"addHeading")
248 $ilToolbar->addSeparator();
249 $print_view = $this->print->list($this->
object->getRefId());
250 $modal_elements = $print_view->getModalElements(
251 $this->
ctrl->getLinkTarget(
253 "printListViewSelection" 256 $ilToolbar->addComponent($modal_elements->button);
257 $ilToolbar->addComponent($modal_elements->modal);
262 $mess = $mbox->getHTML();
272 $this->tpl->setContent($mess . $table->getHTML());
280 bool $allow_blocks =
true,
281 bool $allow_questions =
true,
282 bool $allow_headings =
false,
283 bool $allow_questions_in_blocks =
false 285 $block_map = array();
286 foreach ($this->
object->getSurveyQuestions() as $item) {
287 $block_map[$item[
"question_id"]] = $item[
"questionblock_id"];
290 $questions = $blocks = $headings = array();
291 $ids = $this->request->getIds();
292 if (count($ids) > 0) {
293 foreach ($ids as $key) {
295 if ($allow_questions && preg_match(
"/cb_(\d+)/", $key, $matches)) {
296 if (($allow_questions_in_blocks || !$block_map[$matches[1]]) &&
297 !in_array($block_map[$matches[1]], $blocks)) {
298 $questions[] = $matches[1];
302 if ($allow_blocks && preg_match(
"/cb_qb_(\d+)/", $key, $matches)) {
303 $blocks[] = $matches[1];
306 if ($allow_headings && preg_match(
"/cb_tb_(\d+)/", $key, $matches)) {
307 $headings[] = $matches[1];
312 return array(
"questions" => $questions,
314 "headings" => $headings);
319 $req_order = $this->request->getOrder();
320 $req_block_order = $this->request->getBlockOrder();
321 if (count($req_order) > 0) {
325 foreach (array_keys($req_order) as
$id) {
327 if (strpos($id,
"qb_") === 0) {
328 $block_id = substr($id, 3);
329 $block = $req_block_order[$block_id];
331 foreach (array_keys($block) as $question_id) {
333 $order[$question_id] = $position;
336 $question_id = substr($id, 2);
338 $order[$question_id] = $position;
341 $this->
object->updateOrder($order);
344 $obligatory = $this->request->getObligatory();
345 $this->
object->setObligatoryStates($obligatory);
346 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_obj_modified'),
true);
347 $this->
ctrl->redirect($this,
"questions");
353 if (count($items[
"blocks"])) {
354 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_obj_modified'),
true);
355 $this->
object->unfoldQuestionblocks($items[
"blocks"]);
357 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"qpl_unfold_select_none"),
true);
359 $this->
ctrl->redirect($this,
"questions");
366 $move_questions = $items[
"questions"];
367 foreach ($items[
"blocks"] as $block_id) {
368 foreach ($this->
object->getQuestionblockQuestionIds($block_id) as $qid) {
369 $move_questions[] = $qid;
372 if (count($move_questions) === 0) {
373 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"no_question_selected_for_move"),
true);
374 $this->
ctrl->redirect($this,
"questions");
376 $this->edit_manager->setMoveSurveyQuestions($this->
object->getId(), $move_questions);
377 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"select_target_position_for_move_question"));
395 $copy = ($this->edit_manager->getQuestionClipboardMode($this->
object->getRefId()) ===
"copy");
402 $ids = $this->request->getIds();
403 if (count($ids) > 0) {
407 while (!$insert_id && count($ids) > 0) {
408 $target = array_shift($ids);
409 if (preg_match(
"/^cb_(\d+)$/", $target, $matches)) {
411 if (in_array($matches[1], $items[
"questions"])) {
412 $insert_id = $matches[1];
415 if (!$insert_id && preg_match(
"/^cb_qb_(\d+)$/", $target, $matches)) {
416 $ids = $this->
object->getQuestionblockQuestionIds($matches[1]);
418 if ($insert_mode === 0) {
419 $insert_id = $ids[0];
420 } elseif ($insert_mode === 1) {
421 $insert_id = $ids[count($ids) - 1];
428 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"no_target_selected_for_move"),
true);
430 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_obj_modified'),
true);
431 if ($this->edit_manager->getMoveSurveyId() === $this->
object->getId()) {
432 $this->
object->moveQuestions(
433 $this->edit_manager->getMoveSurveyQuestions(),
437 $this->edit_manager->clearMoveSurveyQuestions();
441 $this->
ctrl->redirect($this,
"questions");
447 if (count($items[
"blocks"]) + count($items[
"questions"]) + count($items[
"headings"]) > 0) {
448 $this->tpl->setOnScreenMessage(
'question', $this->
lng->txt(
"remove_questions"));
451 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"no_question_selected_for_removal"),
true);
452 $this->
ctrl->redirect($this,
"questions");
457 array $checked_questionblocks,
458 array $checked_questions,
459 array $checked_headings
462 $cgui->setHeaderText($this->
lng->txt(
"survey_sure_delete_questions"));
463 $cgui->setFormAction($this->
ctrl->getFormAction($this,
"confirmRemoveQuestions"));
464 $cgui->setCancel($this->
lng->txt(
"cancel"),
"questions");
465 $cgui->setConfirm($this->
lng->txt(
"confirm"),
"confirmRemoveQuestions");
466 $surveyquestions = $this->
object->getSurveyQuestions();
467 foreach ($surveyquestions as $question_id =>
$data) {
468 if (in_array(
$data[
"question_id"], $checked_questions)) {
473 $data[
"question_id"],
474 $type .
": " .
$data[
"title"]
476 } elseif ((in_array(
$data[
"questionblock_id"], $checked_questionblocks))) {
480 "cb[" .
$data[
"questionblock_id"] .
"]",
481 $data[
"questionblock_id"],
482 $data[
"questionblock_title"] .
" - " . $type .
": " .
$data[
"title"]
484 } elseif (in_array(
$data[
"question_id"], $checked_headings)) {
486 "heading[" .
$data[
"question_id"] .
"]",
487 $data[
"question_id"],
493 $this->tpl->setContent($cgui->getHTML());
498 $checked_questions = $this->request->getQuestionIds();
499 $checked_questionblocks = $this->request->getBlockIds();
500 $checked_headings = $this->request->getHeadings();
502 if (count($checked_questions) || count($checked_questionblocks)) {
503 $this->
object->removeQuestions($checked_questions, $checked_questionblocks);
505 if ($checked_headings) {
506 foreach ($checked_headings as $q_id) {
507 $this->
object->saveHeading(
"", $q_id);
510 $this->
object->saveCompletionStatus();
511 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"questions_removed"),
true);
512 $this->
ctrl->redirect($this,
"questions");
520 $copy_questions = $items[
"questions"];
521 foreach ($items[
"blocks"] as $block_id) {
522 foreach ($this->
object->getQuestionblockQuestionIds($block_id) as $qid) {
523 $copy_questions[] = $qid;
526 $copy_questions = array_unique($copy_questions);
529 if (count($copy_questions)) {
530 foreach ($copy_questions as $idx => $question_id) {
532 if ($question->getOriginalId()) {
533 unset($copy_questions[$idx]);
537 if (count($copy_questions) === 0) {
538 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"no_question_selected_for_copy_to_pool"),
true);
539 $this->
ctrl->redirect($this,
"questions");
545 $form->setFormAction($this->
ctrl->getFormAction($this,
"executeCreateQuestion"));
548 $ids->setValue(implode(
";", $copy_questions));
549 $form->addItem($ids);
551 $questionpools = $this->
object->getAvailableQuestionpools(
false,
false,
true,
"write");
552 $pools =
new ilSelectInputGUI($this->
lng->txt(
"survey_copy_select_questionpool"),
"sel_spl");
554 $form->addItem($pools);
556 $form->addCommandButton(
"executeCopyQuestionsToPool", $this->
lng->txt(
"submit"));
557 $form->addCommandButton(
"questions", $this->
lng->txt(
"cancel"));
559 $this->tpl->setContent($form->getHTML());
565 $question_ids = $this->request->getQuestionIdsFromString();
568 foreach ($question_ids as $qid) {
571 $new_question->setId();
572 $new_question->setObjId($pool_id);
573 $new_question->saveToDb();
579 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"survey_copy_to_questionpool_success"),
true);
580 $this->
ctrl->redirect($this,
"questions");
590 $sel_question_types =
null,
591 ?
string $pgov_pos =
null 597 ?
string $q_type =
null,
598 ?
int $pool_usage =
null,
599 ?
string $pgov_pos =
null 601 $this->edit_manager->setPoolChoice($this->request->getPoolUsage());
603 if (is_null($q_type)) {
604 $q_type = $this->request->getSelectedQuestionTypes();
608 if (is_null($pgov_pos)) {
609 $pgov_pos = $this->request->getTargetQuestionPosition();
612 if (is_null($pool_usage)) {
613 $pool_usage = $this->request->getPoolUsage();
618 $obj_id = $this->
object->getId();
623 $q_gui->object->setObjId($obj_id);
624 $q_gui->object->createNewQuestion();
625 $q_gui_class = get_class($q_gui);
628 $this->
ctrl->setParameterByClass($q_gui_class,
"pgov", $pgov);
629 $this->
ctrl->setParameterByClass($q_gui_class,
"pgov_pos", $pgov_pos);
632 $this->
ctrl->setParameterByClass($q_gui_class,
"ref_id", $this->
object->getRefId());
633 $this->
ctrl->setParameterByClass($q_gui_class,
"new_for_survey", $this->
object->getRefId());
634 $this->
ctrl->setParameterByClass($q_gui_class,
"q_id", $q_gui->object->getId());
635 $this->
ctrl->setParameterByClass($q_gui_class,
"sel_question_types", $q_gui->getQuestionType());
636 $this->
ctrl->redirectByClass($q_gui_class,
"editQuestion");
646 $qpl->setType(
"spl");
647 $qpl->setTitle($name);
648 $qpl->setDescription(
"");
650 $qpl->createReference();
651 $qpl->putInTree($parent_ref);
652 $qpl->setPermissions($parent_ref);
656 return $qpl->getId();
670 $link = $this->
ctrl->getLinkTarget($this,
"questions");
671 $ilTabs->setBackTarget($this->
lng->txt(
"menubacktosurvey"), $link);
676 1 => $this->
lng->txt(
"questions"),
677 2 => $this->
lng->txt(
"questionblocks")
679 $types->setValue($ilUser->getPref(
'svy_insert_type'));
680 $ilToolbar->addInputItem($types,
true);
681 $ilToolbar->addFormButton($this->
lng->txt(
"change"),
"changeDatatype");
682 $ilToolbar->setFormAction($this->
ctrl->getFormAction($this,
"changeDatatype"));
689 $ilUser->
writePref(
'svy_insert_type', $this->request->getDataType());
691 switch ($this->request->getDataType()) {
693 $this->
ctrl->redirect($this,
'browseForQuestionblocks');
698 $this->
ctrl->redirect($this,
'browseForQuestions');
708 $table_gui->setEditable(
true);
709 $this->tpl->setContent($table_gui->getHTML());
715 $table_gui->writeFilterToSession();
716 $this->
ctrl->redirect($this,
'browseForQuestions');
722 $table_gui->resetFilter();
723 $this->
ctrl->redirect($this,
'browseForQuestions');
728 $inserted_objects = 0;
730 $qids = $this->request->getQuestionIds();
731 if (count($qids) > 0) {
732 foreach ($qids as $question_id) {
733 if ($this->requested_pgov ===
"") {
734 $this->
object->insertQuestion($question_id);
738 $page_gui->insertNewQuestion($question_id);
743 if ($inserted_objects) {
744 $this->
object->saveCompletionStatus();
745 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"questions_inserted"),
true);
746 $this->
ctrl->redirect($this,
"questions");
748 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"insert_missing_question"),
true);
749 $this->
ctrl->redirect($this,
'browseForQuestions');
758 $table_gui->setEditable(
true);
759 $this->tpl->setContent($table_gui->getHTML());
765 $table_gui->writeFilterToSession();
766 $this->
ctrl->redirect($this,
'browseForQuestionblocks');
772 $table_gui->resetFilter();
773 $this->
ctrl->redirect($this,
'browseForQuestionblocks');
778 $inserted_objects = 0;
780 $block_ids = $this->request->getBlockIds();
781 if (count($block_ids) > 0) {
782 foreach ($block_ids as $questionblock_id) {
783 if ($this->requested_pgov ===
"") {
784 $this->
object->insertQuestionblock($questionblock_id);
786 $page_gui->insertQuestionBlock($questionblock_id);
791 if ($inserted_objects) {
792 $this->
object->saveCompletionStatus();
793 $this->tpl->setOnScreenMessage(
'success', ($inserted_objects === 1) ? $this->
lng->txt(
"questionblock_inserted") : $this->
lng->txt(
"questionblocks_inserted"),
true);
794 $this->
ctrl->redirect($this,
"questions");
796 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"insert_missing_questionblock"),
true);
797 $this->
ctrl->redirect($this,
'browseForQuestionblocks');
809 $block_id = $this->request->getBlockId();
810 $this->
ctrl->setParameter($this,
"bl_id", $block_id);
817 $this->tpl->setContent($a_form->getHTML());
827 $qids = $this->request->getQuestionIds();
828 if (count($qids) > 0) {
829 $items[
"questions"] = $qids;
831 if (count($items[
"questions"]) < 2) {
832 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"qpl_define_questionblock_select_missing"),
true);
833 $this->
ctrl->redirect($this,
"questions");
840 $this->tpl->setContent($a_form->getHTML());
844 ?
int $a_block_id =
null,
845 ?array $a_question_ids =
null 847 $questionblock =
null;
849 $form->setFormAction($this->
ctrl->getFormAction($this,
"saveDefineQuestionblock"));
850 $form->setTitle($this->
lng->txt(
"define_questionblock"));
853 $title->setRequired(
true);
854 $form->addItem($title);
856 $toggle_blocktitle =
new ilCheckboxInputGUI($this->
lng->txt(
"survey_show_blocktitle"),
"show_blocktitle");
857 $toggle_blocktitle->setInfo($this->
lng->txt(
"survey_show_blocktitle_description"));
858 $form->addItem($toggle_blocktitle);
860 $toggle_questiontitle =
new ilCheckboxInputGUI($this->
lng->txt(
"show_questiontext"),
"show_questiontext");
861 $toggle_questiontitle->setInfo($this->
lng->txt(
"show_questiontext_description"));
862 $form->addItem($toggle_questiontitle);
866 $title->setValue($questionblock[
"title"]);
867 $toggle_blocktitle->setChecked((
bool) $questionblock[
"show_blocktitle"]);
868 $toggle_questiontitle->setChecked((
bool) $questionblock[
"show_questiontext"]);
870 $toggle_blocktitle->setChecked(
true);
871 $toggle_questiontitle->setChecked(
true);
875 $compress_view->setInfo($this->
lng->txt(
"svy_compress_view_info"));
876 $compress_view->setChecked((
bool) ($questionblock[
"compress_view"] ??
false));
877 $form->addItem($compress_view);
879 $form->addCommandButton(
"saveDefineQuestionblock", $this->
lng->txt(
"save"));
880 $form->addCommandButton(
"questions", $this->
lng->txt(
"cancel"));
883 $qids = $this->request->getQuestionIds();
884 if (!$a_question_ids && count($qids) > 0) {
885 $a_question_ids = $qids;
888 if ($a_question_ids) {
889 foreach ($a_question_ids as $q_id) {
891 $hidden->setValue($q_id);
892 $form->addItem($hidden);
901 $block_id = $this->request->getBlockId();
902 $q_ids = $this->request->getQuestionIds();
904 $this->
ctrl->setParameter($this,
"bl_id", $block_id);
906 if (!$block_id && count($q_ids) === 0) {
907 $this->
ctrl->redirect($this,
"questions");
911 if ($form->checkInput()) {
912 $title = $form->getInput(
"title");
913 $show_questiontext = $form->getInput(
"show_questiontext");
914 $show_blocktitle = $form->getInput(
"show_blocktitle") ;
915 $compress_view = $form->getInput(
"compress_view") ;
917 $this->
object->modifyQuestionblock(
925 $this->
object->createQuestionblock(
934 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_obj_modified'),
true);
935 $this->
ctrl->redirect($this,
"questions");
938 $form->setValuesByPost();
948 ?
int $a_question_id =
null 950 $survey_questions = $this->
object->getSurveyQuestions();
953 $form->setFormAction($this->
ctrl->getFormAction($this,
""));
958 $heading->setCols(80);
959 $heading->setRequired(
true);
960 $form->addItem($heading);
964 foreach ($survey_questions as $key => $value) {
965 $options[$key] = $this->
lng->txt(
"before") .
": \"" . $value[
"title"] .
"\"";
967 $insertbefore->setOptions($options);
968 $insertbefore->setRequired(
true);
969 $form->addItem($insertbefore);
971 $form->addCommandButton(
"saveHeading", $this->
lng->txt(
"save"));
972 $form->addCommandButton(
"questions", $this->
lng->txt(
"cancel"));
974 if ($a_question_id) {
975 $form->setTitle($this->
lng->txt(
"edit_heading"));
977 $heading->setValue($this->
object->prepareTextareaOutput($survey_questions[$a_question_id][
"heading"] ??
""));
978 $insertbefore->setValue($a_question_id);
979 $insertbefore->setDisabled(
true);
981 $form->setTitle($this->
lng->txt(
"add_heading"));
990 $q_id = $this->request->getQuestionId();
991 $this->
ctrl->setParameter($this,
"q_id", $q_id);
999 $this->tpl->setContent($a_form->getHTML());
1005 $q_id = $this->request->getQuestionId();
1006 $this->
ctrl->setParameter($this,
"q_id", $q_id);
1014 $this->tpl->setContent($a_form->getHTML());
1020 $q_id = $this->request->getQuestionId();
1021 $this->
ctrl->setParameter($this,
"q_id", $q_id);
1024 if ($form->checkInput()) {
1025 $this->
object->saveHeading(
1027 $form->getInput(
"heading"),
1031 $form->getInput(
"insertbefore")
1033 $this->
ctrl->redirect($this,
"questions");
1036 $form->setValuesByPost();
1042 $q_id = $this->request->getQuestionId();
1043 $this->
ctrl->setParameter($this,
"q_id", $q_id);
1046 $this->
ctrl->redirect($this,
"questions");
1052 $cgui->setHeaderText($this->
lng->txt(
"confirm_remove_heading"));
1054 $cgui->setFormAction($this->
ctrl->getFormAction($this,
"confirmedRemoveHeading"));
1055 $cgui->setCancel($this->
lng->txt(
"cancel"),
"questions");
1056 $cgui->setConfirm($this->
lng->txt(
"confirm"),
"confirmedRemoveHeading");
1058 $this->tpl->setContent($cgui->getHTML());
1063 $q_id = $this->request->getQuestionId();
1065 $this->
ctrl->redirect($this,
"questions");
1068 $this->
object->saveHeading(
"", $q_id);
1069 $this->
ctrl->redirect($this,
"questions");
1074 $print_view = $this->print->page($this->
object->getRefId());
1075 $print_view->sendPrintView();
1080 $view = $this->print->list($this->
object->getRefId());
1086 $print_view = $this->print->list($this->
object->getRefId());
1087 $print_view->sendPrintView();
1092 $id = $this->request->getQuestionId();
1094 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"survey_questions_to_clipboard_copy"),
true);
1097 $this->edit_manager->setQuestionClipboard(
1098 $this->
object->getRefId(),
1103 $this->
ctrl->redirect($this,
"questions");
1113 $ids = $this->request->getIds();
1114 if (count($ids) > 0) {
1115 if (substr($ids[0], 0, 3) ==
"cb_") {
1116 $a_id = (
int) substr($ids[0], 3);
1119 if (is_null($a_id)) {
1123 $qids = $this->edit_manager->getQuestionClipboardQuestions($this->
object->getRefId());
1124 $mode = $this->edit_manager->getQuestionClipboardMode($this->
object->getRefId());
1125 $pages = $this->
object->getSurveyPages();
1127 foreach ($pages as $page) {
1128 foreach ($page as $question) {
1129 if ($question[
"question_id"] === $a_id) {
1134 if (is_null($target)) {
1138 if ($mode !==
"copy") {
1143 foreach ($this->
object->getSurveyPages() as $page) {
1144 foreach ($page as $question) {
1145 $titles[] = $question[
"title"];
1150 $question_pointer = array();
1151 foreach ($qids as $qid) {
1156 $title = $question->getTitle();
1158 foreach ($titles as $existing_title) {
1159 #21278 preg_quote with delimiter 1160 if (preg_match(
"/" . preg_quote($title,
"/") .
" \(([0-9]+)\)$/", $existing_title, $match)) {
1161 $max = max($match[1], $max);
1165 $title .=
" (" . ($max + 1) .
")";
1170 $question->setTitle($title);
1173 $question->saveToDb();
1175 $question_pointer[$qid] = $question->getId();
1176 $this->sequence_manager->appendQuestion($question->getId(),
false);
1180 $this->
object->cloneTextblocks($question_pointer);
1182 $this->
object->loadQuestionsFromDb();
1184 $nodes = array_values($question_pointer);
1190 if (count($target) === 1) {
1191 $this->
object->moveQuestions($nodes, $a_id, $pos);
1195 $target_block_id = $target;
1196 $target_block_id = array_shift($target_block_id);
1197 $target_block_id = $target_block_id[
"questionblock_id"];
1199 foreach ($nodes as $qid) {
1200 $this->
object->addQuestionToBlock($qid, $target_block_id);
1204 $this->
object->moveQuestions($nodes, $a_id, $pos);
1208 $this->
ctrl->redirect($this,
"questions");
1213 $this->edit_manager->clearQuestionClipboard($this->
object->getRefId());
1219 return $lng->
txt(
"survey_auto_block_title");
resetfilterQuestionBrowserObject()
copyQuestionsToPoolObject()
setRequestedPgov(string $pgov)
initHeadingForm(?int $a_question_id=null)
confirmedRemoveHeadingObject()
confirmRemoveQuestionsObject()
ILIAS HTTP Services $http
copyPasteObject($pos=0)
Paste from clipboard.
insertQuestionsBeforeObject()
setBrowseForQuestionsSubtabs()
addHeadingObject(?ilPropertyFormGUI $a_form=null)
static _hasDatasets(int $survey_id)
writePref(string $a_keyword, string $a_value)
printListViewSelectionObject()
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...
Class ilObjSurveyQuestionPool.
ILIAS Survey PrintView GUIService $print
insertQuestions(int $insert_mode)
ilObjSurveyGUI $parent_gui
insertQuestionsAfterObject()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
resetfilterQuestionblockBrowserObject()
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
createQuestionObject(?ilPropertyFormGUI $a_form=null, $sel_question_types=null, ?string $pgov_pos=null)
static _getQuestionblock(int $questionblock_id)
get question block properties
removeQuestionsForm(array $checked_questionblocks, array $checked_questions, array $checked_headings)
initQuestionblockForm(?int $a_block_id=null, ?array $a_question_ids=null)
executeCreateQuestionObject(?string $q_type=null, ?int $pool_usage=null, ?string $pgov_pos=null)
executeCopyQuestionsToPoolObject()
static _changeOriginalId(int $a_question_id, int $a_original_id, int $a_object_id)
Change original id of existing question in db.
ilGlobalTemplateInterface $tpl
EditingGUIRequest $request
static _getQuestionTypeName(string $type_tag)
Return the translation for a given question type.
editHeadingObject(?ilPropertyFormGUI $a_form=null)
createQuestionblockObject(?ilPropertyFormGUI $a_form=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
questionsSubtabs(string $a_cmd)
gatherSelectedTableItems(bool $allow_blocks=true, bool $allow_questions=true, bool $allow_headings=false, bool $allow_questions_in_blocks=false)
Gather (and filter) selected items from table gui.
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ilObjSurveyGUI: ilSurveyEvaluationGUI, ilSurveyExecutionGUI ilObjSurveyGUI: ilObjectMetaDataGUI, ilPermissionGUI ilObjSurveyGUI: ilInfoScreenGUI, ilObjectCopyGUI ilObjSurveyGUI: ilSurveySkillDeterminationGUI ilObjSurveyGUI: ilCommonActionDispatcherGUI, ilSurveySkillGUI ilObjSurveyGUI: ilSurveyEditorGUI, ilSurveyConstraintsGUI ilObjSurveyGUI: ilSurveyParticipantsGUI, ilLearningProgressGUI ilObjSurveyGUI: ilExportGUI, ilLTIProviderObjectSettingGUI ilObjSurveyGUI: ILIAS
createQuestionPool($name="dummy")
static _getQuestionGUI(?string $questiontype, int $question_id=-1)
Creates a question gui representation.
static http()
Fetches the global http state from ILIAS.
EditManager $edit_manager
static _instanciateQuestion(int $question_id)
Creates an instance of a question with a given question id.
setScreenIdComponent(string $a_comp)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
saveDefineQuestionblockObject()
static _getUsedHTMLTagsAsString(string $a_module="")
Returns a string of all allowed HTML tags for text editing.
getParentId(int $a_node_id)
get parent id of given node
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
browseForQuestionsObject()
ILIAS Survey InternalGUIService $gui
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
editQuestionblockObject(?ilPropertyFormGUI $a_form=null)
unfoldQuestionblockObject()
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
static _getQuestiontypes()
Get all available question types.
browseForQuestionblocksObject()
insertQuestionblocksObject()
filterQuestionBrowserObject()
ILIAS Survey Sequence SequenceManager $sequence_manager
filterQuestionblockBrowserObject()