70 $this->tabs = $DIC->tabs();
71 $this->
help = $DIC[
"ilHelp"];
72 $this->toolbar = $DIC->toolbar();
73 $this->
user = $DIC->user();
74 $this->tree = $DIC->repositoryTree();
75 $ilCtrl = $DIC->ctrl();
76 $lng = $DIC->language();
79 $this->parent_gui = $a_parent_gui;
80 $this->
object = $this->parent_gui->object;
82 $this->ctrl = $ilCtrl;
86 $this->ctrl->saveParameter($this, array(
"pgov",
"pgov_pos"));
88 $this->print_options = array(
100 $cmd = $this->ctrl->getCmd(
"questions");
102 if ($_REQUEST[
"pgov"]) {
103 if ($cmd ==
"questions") {
104 $this->ctrl->setCmdClass(
"ilsurveypagegui");
105 $this->ctrl->setCmd(
"renderpage");
106 } elseif ($cmd ==
"confirmRemoveQuestions") {
108 $this->ctrl->setCmdClass(
"ilsurveypagegui");
109 $this->ctrl->setCmd(
"confirmRemoveQuestions");
113 $next_class = $this->ctrl->getNextClass($this);
114 switch ($next_class) {
115 case 'ilsurveypagegui':
118 $this->ctrl->forwardCommand($pg);
123 if (stristr($next_class,
"questiongui")) {
124 $ilTabs->clearTargets();
125 $this->ctrl->saveParameter($this, array(
"new_for_survey"));
128 if (is_object($q_gui->object)) {
130 $ilHelp->setScreenIdComponent(
"spl_qt" . $q_gui->object->getQuestionTypeId());
133 $q_gui->setBackUrl($this->ctrl->getLinkTarget($this,
"questions"));
134 $q_gui->setQuestionTabs();
135 $this->ctrl->forwardCommand($q_gui);
137 if (!(
int) $_REQUEST[
"new_for_survey"]) {
139 $this->tpl->setTitle($this->lng->txt(
"question") .
": " . $q_gui->object->getTitle());
153 if ($a_cmd ==
"questions" && $_REQUEST[
"pgov"]) {
157 $hidden_tabs = array();
158 $template = $this->
object->getTemplate();
161 $hidden_tabs = $template->getHiddenTabs();
166 $this->lng->txt(
"survey_per_page_view"),
167 $this->ctrl->getLinkTargetByClass(
"ilsurveypagegui",
"renderPage")
170 if (!in_array(
"survey_question_editor", $hidden_tabs)) {
171 $this->ctrl->setParameter($this,
"pgov",
"");
174 $this->lng->txt(
"survey_question_editor"),
175 $this->ctrl->getLinkTarget($this,
"questions")
177 $this->ctrl->setParameter($this,
"pgov", $_REQUEST[
"pgov"]);
182 $this->lng->txt(
"print_view"),
183 $this->ctrl->getLinkTarget($this,
"printView")
186 if ($this->object->getSurveyPages()) {
187 if ($a_cmd ==
"page") {
188 $this->ctrl->setParameterByClass(
"ilsurveyexecutiongui",
"pgov", max(1, $_REQUEST[
"pg"]));
190 $this->ctrl->setParameterByClass(
"ilsurveyexecutiongui",
"prvw", 1);
193 $this->lng->txt(
"preview"),
194 $this->ctrl->getLinkTargetByClass(array(
"ilobjsurveygui",
"ilsurveyexecutiongui"),
"preview")
198 $ilTabs->activateSubTab($a_cmd);
212 if (
$_GET[
"new_id"] > 0) {
214 $existing = $this->
object->getExistingQuestions();
215 if (!in_array(
$_GET[
"new_id"], $existing)) {
216 $inserted = $this->
object->insertQuestion(
$_GET[
"new_id"]);
226 $read_only = $hasDatasets;
232 $qtypes[
$data[
"type_tag"]] = $translation;
235 $ilToolbar->setFormAction($this->ctrl->getFormAction($this));
236 $types =
new ilSelectInputGUI($this->lng->txt(
"create_new"),
"sel_question_types");
237 $types->setOptions($qtypes);
238 $ilToolbar->addStickyItem($types,
"");
241 $button->setCaption(
"svy_create_question");
242 $button->setCommand(
"createQuestion");
243 $ilToolbar->addStickyItem($button);
245 if ($this->object->isPoolActive()) {
246 $ilToolbar->addSeparator();
248 $cmd = (
$ilUser->getPref(
'svy_insert_type') == 1 ||
249 strlen(
$ilUser->getPref(
'svy_insert_type')) == 0)
250 ?
'browseForQuestions' 251 :
'browseForQuestionblocks';
254 $button->setCaption(
"browse_for_questions");
255 $button->setUrl($this->ctrl->getLinkTarget($this, $cmd));
256 $ilToolbar->addStickyItem($button);
259 $ilToolbar->addSeparator();
262 $button->setCaption(
"add_heading");
263 $button->setUrl($this->ctrl->getLinkTarget($this,
"addHeading"));
264 $ilToolbar->addInputItem($button);
269 $mess = $mbox->getHTML();
279 $this->tpl->setContent($mess . $table->getHTML());
291 protected function gatherSelectedTableItems($allow_blocks =
true, $allow_questions =
true, $allow_headings =
false, $allow_questions_in_blocks =
false)
293 $block_map = array();
294 foreach ($this->object->getSurveyQuestions() as $item) {
295 $block_map[$item[
"question_id"]] = $item[
"questionblock_id"];
298 $questions = $blocks = $headings = array();
300 foreach (
$_POST[
"id"] as $key) {
302 if ($allow_questions && preg_match(
"/cb_(\d+)/", $key, $matches)) {
303 if (($allow_questions_in_blocks || !$block_map[$matches[1]]) &&
304 !in_array($block_map[$matches[1]], $blocks)) {
305 array_push($questions, $matches[1]);
309 if ($allow_blocks && preg_match(
"/cb_qb_(\d+)/", $key, $matches)) {
310 array_push($blocks, $matches[1]);
313 if ($allow_headings && preg_match(
"/cb_tb_(\d+)/", $key, $matches)) {
314 array_push($headings, $matches[1]);
319 return array(
"questions" => $questions,
321 "headings" => $headings);
326 if (isset(
$_POST[
"order"])) {
330 foreach (array_keys(
$_POST[
"order"]) as $id) {
332 if (substr($id, 0, 3) ==
"qb_") {
333 $block_id = substr($id, 3);
334 $block =
$_POST[
"block_order"][$block_id];
336 foreach (array_keys($block) as $question_id) {
338 $order[$question_id] = $position;
341 $question_id = substr($id, 2);
343 $order[$question_id] = $position;
346 $this->
object->updateOrder($order);
349 $obligatory = array();
350 foreach (
$_POST as $key => $value) {
351 if (preg_match(
"/obligatory_(\d+)/", $key, $matches)) {
352 $obligatory[$matches[1]] = 1;
355 $this->
object->setObligatoryStates($obligatory);
356 ilUtil::sendSuccess($this->lng->txt(
'msg_obj_modified'),
true);
357 $this->ctrl->redirect($this,
"questions");
363 if (count($items[
"blocks"])) {
364 ilUtil::sendSuccess($this->lng->txt(
'msg_obj_modified'),
true);
365 $this->
object->unfoldQuestionblocks($items[
"blocks"]);
369 $this->ctrl->redirect($this,
"questions");
376 $move_questions = $items[
"questions"];
377 foreach ($items[
"blocks"] as $block_id) {
378 foreach ($this->object->getQuestionblockQuestionIds($block_id) as $qid) {
379 array_push($move_questions, $qid);
382 if (count($move_questions) == 0) {
384 $this->ctrl->redirect($this,
"questions");
386 $_SESSION[
"move_questions"] = $move_questions;
387 $_SESSION[
"move_questions_survey_id"] = $this->
object->getId();
388 ilUtil::sendInfo($this->lng->txt(
"select_target_position_for_move_question"));
410 while (!$insert_id &&
sizeof(
$_POST[
"id"])) {
411 $target = array_shift(
$_POST[
"id"]);
412 if (preg_match(
"/^cb_(\d+)$/", $target, $matches)) {
414 if (in_array($matches[1], $items[
"questions"])) {
415 $insert_id = $matches[1];
418 if (!$insert_id && preg_match(
"/^cb_qb_(\d+)$/", $target, $matches)) {
419 $ids = $this->
object->getQuestionblockQuestionIds($matches[1]);
421 if ($insert_mode == 0) {
422 $insert_id = $ids[0];
423 } elseif ($insert_mode == 1) {
424 $insert_id = $ids[count($ids) - 1];
434 ilUtil::sendSuccess($this->lng->txt(
'msg_obj_modified'),
true);
435 $this->
object->moveQuestions(
$_SESSION[
"move_questions"], $insert_id, $insert_mode);
437 unset(
$_SESSION[
"move_questions_survey_id"]);
440 $this->ctrl->redirect($this,
"questions");
446 if (count($items[
"blocks"]) + count($items[
"questions"]) + count($items[
"headings"]) > 0) {
451 ilUtil::sendInfo($this->lng->txt(
"no_question_selected_for_removal"),
true);
452 $this->ctrl->redirect($this,
"questions");
459 $cgui->setHeaderText($this->lng->txt(
"survey_sure_delete_questions"));
461 $cgui->setFormAction($this->ctrl->getFormAction($this,
"confirmRemoveQuestions"));
462 $cgui->setCancel($this->lng->txt(
"cancel"),
"questions");
463 $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)) {
472 "id_" .
$data[
"question_id"],
473 $data[
"question_id"],
476 } elseif ((in_array(
$data[
"questionblock_id"], $checked_questionblocks))) {
480 "id_qb_" .
$data[
"questionblock_id"],
481 $data[
"questionblock_id"],
484 } elseif (in_array(
$data[
"question_id"], $checked_headings)) {
486 "id_tb_" .
$data[
"question_id"],
487 $data[
"question_id"],
493 $this->tpl->setContent($cgui->getHTML());
498 $checked_questions = array();
499 $checked_questionblocks = array();
500 $checked_headings = array();
501 foreach (
$_POST as $key => $value) {
502 if (preg_match(
"/id_(\d+)/", $key, $matches)) {
503 array_push($checked_questions, $matches[1]);
505 if (preg_match(
"/id_qb_(\d+)/", $key, $matches)) {
506 array_push($checked_questionblocks, $matches[1]);
508 if (preg_match(
"/id_tb_(\d+)/", $key, $matches)) {
509 array_push($checked_headings, $matches[1]);
513 if (
sizeof($checked_questions) ||
sizeof($checked_questionblocks)) {
514 $this->
object->removeQuestions($checked_questions, $checked_questionblocks);
516 if ($checked_headings) {
517 foreach ($checked_headings as $q_id) {
518 $this->
object->saveHeading(
"", $q_id);
521 $this->
object->saveCompletionStatus();
522 ilUtil::sendSuccess($this->lng->txt(
"questions_removed"),
true);
523 $this->ctrl->redirect($this,
"questions");
531 $copy_questions = $items[
"questions"];
532 foreach ($items[
"blocks"] as $block_id) {
533 foreach ($this->object->getQuestionblockQuestionIds($block_id) as $qid) {
534 array_push($copy_questions, $qid);
537 $copy_questions = array_unique($copy_questions);
540 if (count($copy_questions)) {
541 foreach ($copy_questions as $idx => $question_id) {
543 if ($question->getOriginalId()) {
544 unset($copy_questions[$idx]);
548 if (count($copy_questions) == 0) {
549 ilUtil::sendInfo($this->lng->txt(
"no_question_selected_for_copy_to_pool"),
true);
550 $this->ctrl->redirect($this,
"questions");
556 $form->setFormAction($this->ctrl->getFormAction($this,
"executeCreateQuestion"));
559 $ids->setValue(implode(
";", $copy_questions));
560 $form->addItem($ids);
562 $questionpools = &$this->
object->getAvailableQuestionpools(
false,
false,
true,
"write");
563 $pools =
new ilSelectInputGUI($this->lng->txt(
"survey_copy_select_questionpool"),
"sel_spl");
564 $pools->setOptions($questionpools);
565 $form->addItem($pools);
567 $form->addCommandButton(
"executeCopyQuestionsToPool", $this->lng->txt(
"submit"));
568 $form->addCommandButton(
"questions", $this->lng->txt(
"cancel"));
570 return $this->tpl->setContent($form->getHTML());
576 $question_ids = explode(
";",
$_POST[
"question_ids"]);
579 foreach ($question_ids as $qid) {
582 $new_question->setId();
583 $new_question->setObjId($pool_id);
584 $new_question->saveToDb();
590 ilUtil::sendSuccess($this->lng->txt(
"survey_copy_to_questionpool_success"),
true);
591 $this->ctrl->redirect($this,
"questions");
601 if (!$this->object->isPoolActive()) {
603 $_GET[
"sel_question_types"] =
$_POST[
"sel_question_types"];
612 $sel_question_types = (strlen(
$_POST[
"sel_question_types"])) ?
$_POST[
"sel_question_types"] :
$_GET[
"sel_question_types"];
613 $this->ctrl->setParameter($this,
"sel_question_types", $sel_question_types);
614 $form->setFormAction($this->ctrl->getFormAction($this,
"executeCreateQuestion"));
621 $no_pool =
new ilRadioOption($this->lng->txt(
"survey_no_pool"), 1);
622 $usage->addOption($no_pool);
623 $existing_pool =
new ilRadioOption($this->lng->txt(
"survey_existing_pool"), 3);
624 $usage->addOption($existing_pool);
625 $new_pool =
new ilRadioOption($this->lng->txt(
"survey_new_pool"), 2);
626 $usage->addOption($new_pool);
627 $form->addItem($usage);
629 if (isset(
$_SESSION[
"svy_qpool_choice"])) {
636 $questionpools = &$this->
object->getAvailableQuestionpools(
false,
true,
true,
"write");
637 $pools =
new ilSelectInputGUI($this->lng->txt(
"select_questionpool"),
"sel_spl");
638 $pools->setOptions($questionpools);
639 $existing_pool->addSubItem($pools);
643 $name->setMaxLength(50);
644 $new_pool->addSubItem(
$name);
650 $form->addCommandButton(
"executeCreateQuestion", $this->lng->txt(
"submit"));
651 $form->addCommandButton(
"questions", $this->lng->txt(
"cancel"));
653 return $this->tpl->setContent($form->getHTML());
660 $q_type =
$_GET[
"sel_question_types"];
663 if (
$_POST[
"usage"] == 1) {
664 $obj_id = $this->
object->getId();
667 elseif (
$_POST[
"usage"] == 3 && strlen(
$_POST[
"sel_spl"])) {
671 elseif (
$_POST[
"usage"] == 2 && strlen(
$_POST[
"name_spl"])) {
679 $this->ctrl->setParameter($this,
"sel_question_types", $q_type);
680 $this->ctrl->redirect($this,
"createQuestion");
687 $q_gui->object->setObjId($obj_id);
688 $q_gui->object->createNewQuestion();
689 $q_gui_class = get_class($q_gui);
691 if ($_REQUEST[
"pgov"]) {
692 $this->ctrl->setParameterByClass($q_gui_class,
"pgov", $_REQUEST[
"pgov"]);
693 $this->ctrl->setParameterByClass($q_gui_class,
"pgov_pos", $_REQUEST[
"pgov_pos"]);
696 $this->ctrl->setParameterByClass($q_gui_class,
"ref_id", $this->object->getRefId());
697 $this->ctrl->setParameterByClass($q_gui_class,
"new_for_survey", $this->object->getRefId());
698 $this->ctrl->setParameterByClass($q_gui_class,
"q_id", $q_gui->object->getId());
699 $this->ctrl->setParameterByClass($q_gui_class,
"sel_question_types", $q_gui->getQuestionType());
700 $this->ctrl->redirectByClass($q_gui_class,
"editQuestion");
707 $parent_ref =
$tree->getParentId($this->object->getRefId());
710 $qpl->setType(
"spl");
711 $qpl->setTitle(
$name);
712 $qpl->setDescription(
"");
714 $qpl->createReference();
715 $qpl->putInTree($parent_ref);
716 $qpl->setPermissions($parent_ref);
720 return $qpl->getId();
734 if (!isset($_REQUEST[
"pgov"])) {
735 $link = $this->ctrl->getLinkTarget($this,
"questions");
737 $link = $this->ctrl->getLinkTargetByClass(
"ilsurveypagegui",
"renderpage");
739 $ilTabs->setBackTarget($this->lng->txt(
"menubacktosurvey"), $link);
742 $types =
new ilSelectInputGUI($this->lng->txt(
"display_all_available"),
"datatype");
743 $types->setOptions(array(
744 1 => $this->lng->txt(
"questions"),
745 2 => $this->lng->txt(
"questionblocks")
747 $types->setValue(
$ilUser->getPref(
'svy_insert_type'));
748 $ilToolbar->addInputItem($types,
true);
749 $ilToolbar->addFormButton($this->lng->txt(
"change"),
"changeDatatype");
750 $ilToolbar->setFormAction($this->ctrl->getFormAction($this,
"changeDatatype"));
759 switch (
$_POST[
"datatype"]) {
761 $this->ctrl->redirect($this,
'browseForQuestionblocks');
766 $this->ctrl->redirect($this,
'browseForQuestions');
776 $table_gui->setEditable(
true);
777 $this->tpl->setContent($table_gui->getHTML());
783 $table_gui->writeFilterToSession();
784 $this->ctrl->redirect($this,
'browseForQuestions');
790 $table_gui->resetFilter();
791 $this->ctrl->redirect($this,
'browseForQuestions');
796 $inserted_objects = 0;
797 if (is_array(
$_POST[
'q_id'])) {
798 if ($_REQUEST[
"pgov"]) {
800 $page_gui->determineCurrentPage();
805 foreach (
$_POST[
'q_id'] as $question_id) {
806 if (!$_REQUEST[
"pgov"]) {
807 $this->
object->insertQuestion($question_id);
810 $page_gui->insertNewQuestion($question_id);
815 if ($inserted_objects) {
816 $this->
object->saveCompletionStatus();
817 ilUtil::sendSuccess($this->lng->txt(
"questions_inserted"),
true);
818 if (!$_REQUEST[
"pgov"]) {
819 $this->ctrl->redirect($this,
"questions");
821 $target_page = $_REQUEST[
"pgov"];
822 if (substr($_REQUEST[
"pgov_pos"], -1) ==
"c") {
824 if ((
int) $_REQUEST[
"pgov_pos"]) {
830 $this->ctrl->setParameterByClass(
"ilsurveypagegui",
"pgov", $target_page);
831 $this->ctrl->redirectByClass(
"ilsurveypagegui",
"renderpage");
835 $this->ctrl->redirect($this,
'browseForQuestions');
844 $table_gui->setEditable(
true);
845 $this->tpl->setContent($table_gui->getHTML());
851 $table_gui->writeFilterToSession();
852 $this->ctrl->redirect($this,
'browseForQuestionblocks');
858 $table_gui->resetFilter();
859 $this->ctrl->redirect($this,
'browseForQuestionblocks');
864 $inserted_objects = 0;
865 if (is_array(
$_POST[
'cb'])) {
866 if ($_REQUEST[
"pgov"]) {
868 $page_gui->determineCurrentPage();
873 foreach (
$_POST[
'cb'] as $questionblock_id) {
874 if (!$_REQUEST[
"pgov"]) {
875 $this->
object->insertQuestionblock($questionblock_id);
877 $page_gui->insertQuestionblock($questionblock_id);
882 if ($inserted_objects) {
883 $this->
object->saveCompletionStatus();
884 ilUtil::sendSuccess(($inserted_objects == 1) ? $this->lng->txt(
"questionblock_inserted") : $this->lng->txt(
"questionblocks_inserted"),
true);
885 if (!$_REQUEST[
"pgov"]) {
886 $this->ctrl->redirect($this,
"questions");
888 $target_page = $_REQUEST[
"pgov"];
889 if (substr($_REQUEST[
"pgov_pos"], -1) ==
"c") {
892 $this->ctrl->setParameterByClass(
"ilsurveypagegui",
"pgov", $target_page);
893 $this->ctrl->redirectByClass(
"ilsurveypagegui",
"renderpage");
897 $this->ctrl->redirect($this,
'browseForQuestionblocks');
908 $block_id = (int) $_REQUEST[
"bl_id"];
909 $this->ctrl->setParameter($this,
"bl_id", $block_id);
916 $this->tpl->setContent($a_form->getHTML());
925 if (is_array(
$_POST[
"qids"]) &&
sizeof(
$_POST[
"qids"])) {
926 $items[
"questions"] =
$_POST[
"qids"];
928 if (count($items[
"questions"]) < 2) {
929 ilUtil::sendInfo($this->lng->txt(
"qpl_define_questionblock_select_missing"),
true);
930 $this->ctrl->redirect($this,
"questions");
937 $this->tpl->setContent($a_form->getHTML());
943 $form->setFormAction($this->ctrl->getFormAction($this,
"saveDefineQuestionblock"));
944 $form->setTitle($this->lng->txt(
"define_questionblock"));
947 $title->setRequired(
true);
948 $form->addItem($title);
950 $toggle_blocktitle =
new ilCheckboxInputGUI($this->lng->txt(
"survey_show_blocktitle"),
"show_blocktitle");
951 $toggle_blocktitle->
setInfo($this->lng->txt(
"survey_show_blocktitle_description"));
952 $form->addItem($toggle_blocktitle);
954 $toggle_questiontitle =
new ilCheckboxInputGUI($this->lng->txt(
"show_questiontext"),
"show_questiontext");
955 $toggle_questiontitle->
setInfo($this->lng->txt(
"show_questiontext_description"));
956 $form->addItem($toggle_questiontitle);
960 $title->setValue($questionblock[
"title"]);
961 $toggle_blocktitle->setChecked($questionblock[
"show_blocktitle"]);
962 $toggle_questiontitle->setChecked($questionblock[
"show_questiontext"]);
964 $toggle_blocktitle->setChecked(
true);
965 $toggle_questiontitle->setChecked(
true);
968 $compress_view =
new ilCheckboxInputGUI($this->lng->txt(
"svy_compress_view"),
"compress_view");
969 $compress_view->
setInfo($this->lng->txt(
"svy_compress_view_info"));
970 $compress_view->setChecked($questionblock[
"compress_view"]);
971 $form->addItem($compress_view);
973 $form->addCommandButton(
"saveDefineQuestionblock", $this->lng->txt(
"save"));
974 $form->addCommandButton(
"questions", $this->lng->txt(
"cancel"));
977 if (!$a_question_ids &&
$_POST[
"qids"]) {
978 $a_question_ids =
$_POST[
"qids"];
981 if ($a_question_ids) {
982 foreach ($a_question_ids as $q_id) {
984 $hidden->setValue($q_id);
985 $form->addItem($hidden);
994 $block_id = (int) $_REQUEST[
"bl_id"];
997 $this->ctrl->setParameter($this,
"bl_id", $block_id);
999 if (!$block_id && !is_array($q_ids)) {
1000 $this->ctrl->redirect($this,
"questions");
1004 if ($form->checkInput()) {
1005 $title = $form->getInput(
"title");
1006 $show_questiontext = $form->getInput(
"show_questiontext");
1007 $show_blocktitle = $form->getInput(
"show_blocktitle") ;
1008 $compress_view = $form->getInput(
"compress_view") ;
1010 $this->
object->modifyQuestionblock(
1018 $this->
object->createQuestionblock(
1027 ilUtil::sendSuccess($this->lng->txt(
'msg_obj_modified'),
true);
1028 $this->ctrl->redirect($this,
"questions");
1031 $form->setValuesByPost();
1042 $survey_questions = $this->
object->getSurveyQuestions();
1045 $form->setFormAction($this->ctrl->getFormAction($this,
""));
1050 $heading->setCols(80);
1052 $heading->setUseRte(
true);
1055 $heading->setRTESupport($this->object->getId(),
"svy",
"survey");
1057 $heading->setRequired(
true);
1058 $form->addItem($heading);
1060 $insertbefore =
new ilSelectInputGUI($this->lng->txt(
"insert"),
"insertbefore");
1062 foreach ($survey_questions as $key => $value) {
1063 $options[$key] = $this->lng->txt(
"before") .
": \"" . $value[
"title"] .
"\"";
1066 $insertbefore->setRequired(
true);
1067 $form->addItem($insertbefore);
1069 $form->addCommandButton(
"saveHeading", $this->lng->txt(
"save"));
1070 $form->addCommandButton(
"questions", $this->lng->txt(
"cancel"));
1072 if ($a_question_id) {
1073 $form->setTitle($this->lng->txt(
"edit_heading"));
1075 $heading->setValue($this->object->prepareTextareaOutput($survey_questions[$a_question_id][
"heading"]));
1076 $insertbefore->setValue($a_question_id);
1077 $insertbefore->setDisabled(
true);
1079 $form->setTitle($this->lng->txt(
"add_heading"));
1087 $q_id = $_REQUEST[
"q_id"];
1088 $this->ctrl->setParameter($this,
"q_id", $q_id);
1096 $this->tpl->setContent($a_form->getHTML());
1101 $q_id = $_REQUEST[
"q_id"];
1102 $this->ctrl->setParameter($this,
"q_id", $q_id);
1110 $this->tpl->setContent($a_form->getHTML());
1116 $q_id = (int) $_REQUEST[
"q_id"];
1117 $this->ctrl->setParameter($this,
"q_id", $q_id);
1120 if ($form->checkInput()) {
1121 $this->
object->saveHeading(
1123 $form->getInput(
"heading"),
1127 $form->getInput(
"insertbefore")
1129 $this->ctrl->redirect($this,
"questions");
1132 $form->setValuesByPost();
1138 $q_id = (int) $_REQUEST[
"q_id"];
1139 $this->ctrl->setParameter($this,
"q_id", $q_id);
1142 $this->ctrl->redirect($this,
"questions");
1148 $cgui->setHeaderText($this->lng->txt(
"confirm_remove_heading"));
1150 $cgui->setFormAction($this->ctrl->getFormAction($this,
"confirmedRemoveHeading"));
1151 $cgui->setCancel($this->lng->txt(
"cancel"),
"questions");
1152 $cgui->setConfirm($this->lng->txt(
"confirm"),
"confirmedRemoveHeading");
1154 $this->tpl->setContent($cgui->getHTML());
1159 $q_id = (int) $_REQUEST[
"q_id"];
1161 $this->ctrl->redirect($this,
"questions");
1164 $this->
object->saveHeading(
"", $q_id);
1165 $this->ctrl->redirect($this,
"questions");
1180 if (!$current_title = (
int) $_REQUEST[
'export_label']) {
1181 $current_title = $this->
object->getShowQuestionTitles();
1184 $label =
new ilSelectInputGUI($this->lng->txt(
"title") .
"/" . $this->lng->txt(
"label"),
"export_label");
1186 #19448 comment none and label only options. 1187 $label->setOptions($this->print_options);
1188 $label->setValue($current_title);
1190 $ilToolbar->addStickyItem($label,
true);
1192 $ilToolbar->setFormAction($this->ctrl->getFormAction($this,
"printView"));
1195 $button->setCaption(
"show");
1196 $button->setCommand(
"printView");
1197 $ilToolbar->addStickyItem($button);
1199 $ilToolbar->addSeparator();
1202 $button->setCaption(
"print");
1203 $button->setOnClick(
"window.print(); return false;");
1204 $button->setOmitPreventDoubleSubmission(
true);
1205 $ilToolbar->addButtonInstance($button);
1208 $this->ctrl->setParameter($this,
"export_label", $current_title);
1209 $this->ctrl->setParameter($this,
"pdf",
"1");
1210 $pdf_url = $this->ctrl->getLinkTarget($this,
"printView");
1211 $this->ctrl->setParameter($this,
"pdf",
"");
1212 $this->ctrl->setParameter($this,
"export_label",
"");
1215 $button->setCaption(
"pdf_export");
1216 $button->setUrl($pdf_url);
1217 $button->setOmitPreventDoubleSubmission(
true);
1218 $ilToolbar->addButtonInstance($button);
1222 if (array_key_exists(
"pdf",
$_GET) && (
$_GET[
"pdf"] == 1)) {
1223 require_once(
'Services/MathJax/classes/class.ilMathJax.php');
1227 $template =
new ilTemplate(
"tpl.il_svy_svy_printview.html",
true,
true,
"Modules/Survey");
1229 $pages = &$this->
object->getSurveyPages();
1231 foreach ($pages as $page) {
1232 if (count($page) > 0) {
1233 foreach ($page as $question) {
1234 $questionGUI = $this->
object->getQuestionGUI($question[
"type_tag"], $question[
"question_id"]);
1235 if (is_object($questionGUI)) {
1236 if (strlen($question[
"heading"])) {
1237 $template->setCurrentBlock(
"textblock");
1238 $template->setVariable(
"TEXTBLOCK", $question[
"heading"]);
1239 $template->parseCurrentBlock();
1241 $template->setCurrentBlock(
"question");
1242 $template->setVariable(
"QUESTION_DATA", $questionGUI->getPrintView($current_title, $question[
"questionblock_show_questiontext"], $this->object->getSurveyId()));
1243 $template->parseCurrentBlock();
1245 if ($question[
"obligatory"]) {
1250 if (count($page) > 1 && $page[0][
"questionblock_show_blocktitle"]) {
1251 $template->setCurrentBlock(
"page");
1252 $template->setVariable(
"BLOCKTITLE", $page[0][
"questionblock_title"]);
1253 $template->parseCurrentBlock();
1255 $template->setCurrentBlock(
"page");
1256 $template->parseCurrentBlock();
1263 $template->setVariable(
"TEXT_REQUIRED", $this->lng->txt(
"required_field"));
1267 if (array_key_exists(
"pdf",
$_GET) && (
$_GET[
"pdf"] == 1)) {
1268 $printbody =
new ilTemplate(
"tpl.il_as_tst_print_body.html",
true,
true,
"Modules/Test");
1269 $printbody->setVariable(
"TITLE", sprintf($this->lng->txt(
"tst_result_user_name"), $uname));
1270 $printbody->setVariable(
"ADM_CONTENT", $template->get());
1271 $printoutput = $printbody->get();
1272 $printoutput = preg_replace(
"/href=\".*?\"/",
"", $printoutput);
1273 $fo = $this->
object->processPrintoutput2FO($printoutput);
1276 require_once(
'Services/MathJax/classes/class.ilMathJax.php');
1280 ->insertLatexImages($fo);
1283 if (!$fo || !$this->object->deliverPDFfromFO($fo)) {
1285 $this->ctrl->redirect($this,
"printView");
1288 $this->tpl->setVariable(
"ADM_CONTENT", $template->get());
resetfilterQuestionBrowserObject()
copyQuestionsToPoolObject()
confirmedRemoveHeadingObject()
This class represents an option in a radio group.
confirmRemoveQuestionsObject()
static _instanciateQuestion($question_id)
Creates an instance of a question with a given question id.
editHeadingObject(ilPropertyFormGUI $a_form=null)
insertQuestionsBeforeObject()
setBrowseForQuestionsSubtabs()
static _getUsedHTMLTagsAsString($a_module="")
Returns a string of all allowed HTML tags for text editing.
Class ilObjSurveyQuestionPool.
static _getRichTextEditor()
Returns the identifier for the Rich Text Editor.
insertQuestionsAfterObject()
resetfilterQuestionblockBrowserObject()
static _hasDatasets($survey_id)
addHeadingObject(ilPropertyFormGUI $a_form=null)
static _getUsedHTMLTags($a_module="")
Returns an array of all allowed HTML tags for text editing.
executeCopyQuestionsToPoolObject()
static _changeOriginalId($a_question_id, $a_original_id, $a_object_id)
Change original id of existing question in db.
static _getQuestionTypeName($type_tag)
Return the translation for a given question type tag.
initHeadingForm($a_question_id=null)
static _getQuestionGUI($questiontype, $question_id=-1)
Creates a question gui representation.
editQuestionblockObject(ilPropertyFormGUI $a_form=null)
gatherSelectedTableItems($allow_blocks=true, $allow_questions=true, $allow_headings=false, $allow_questions_in_blocks=false)
Gather (and filter) selected items from table gui.
createQuestionblockObject(ilPropertyFormGUI $a_form=null)
createQuestionObject(ilPropertyFormGUI $a_form=null)
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
createQuestionPool($name="dummy")
initQuestionblockForm($a_block_id=null, $a_question_ids=null)
setValue($a_value)
Set Value.
const ILIAS_IMG_MANAGER_PLUGIN
Message box for survey, when data is alrady available.
static _lookupObjId($a_id)
saveDefineQuestionblockObject()
insertQuestions($insert_mode)
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
static sendQuestion($a_info="", $a_keep=false)
Send Question to Screen.
static _getQuestionblock($questionblock_id)
Returns the database row for a given question block.
removeQuestionsForm($checked_questionblocks, $checked_questions, $checked_headings)
Survey question table GUI class.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
const RENDER_PNG_AS_FO_FILE
__construct(ilObjSurveyGUI $a_parent_gui)
browseForQuestionsObject()
unfoldQuestionblockObject()
setRows($a_rows)
Set Rows.
static getInstance()
Singleton: get instance.
This class represents a text area property in a property form.
static _getQuestiontypes()
Creates a list of all available question types.
browseForQuestionblocksObject()
printViewObject()
Creates a print view of the survey questions.
insertQuestionblocksObject()
executeCreateQuestionObject()
filterQuestionBrowserObject()
Settings template application class.
const PURPOSE_DEFERRED_PDF
filterQuestionblockBrowserObject()
Confirmation screen class.
static getInstance()
Get singelton instance.