25 $this->parent_gui = $a_parent_gui;
26 $this->
object = $this->parent_gui->object;
32 $this->ctrl->saveParameter($this, array(
"pgov",
"pgov_pos"));
39 $cmd = $this->ctrl->getCmd(
"questions");
43 if(
$cmd ==
"questions")
45 $this->ctrl->setCmdClass(
"ilsurveypagegui");
46 $this->ctrl->setCmd(
"renderpage");
48 else if(
$cmd ==
"confirmRemoveQuestions")
51 $this->ctrl->setCmdClass(
"ilsurveypagegui");
52 $this->ctrl->setCmd(
"confirmRemoveQuestions");
56 $next_class = $this->ctrl->getNextClass($this);
59 case 'ilsurveypagegui':
61 include_once
'./Modules/Survey/classes/class.ilSurveyPageGUI.php';
63 $this->ctrl->forwardCommand($pg);
68 if(stristr($next_class,
"questiongui"))
70 $ilTabs->clearTargets();
71 $this->ctrl->saveParameter($this, array(
"new_for_survey"));
73 include_once
"./Modules/SurveyQuestionPool/classes/class.SurveyQuestionGUI.php";
75 if (is_object($q_gui->object))
78 $ilHelp->setScreenIdComponent(
"spl_qt".$q_gui->object->getQuestionTypeId());
81 $q_gui->setBackUrl($this->ctrl->getLinkTarget($this,
"questions"));
82 $q_gui->setQuestionTabs();
83 $this->ctrl->forwardCommand($q_gui);
88 $this->tpl->setTitle($this->lng->txt(
"question").
": ".$q_gui->object->getTitle());
104 if($a_cmd ==
"questions" &&
$_REQUEST[
"pgov"])
109 $hidden_tabs = array();
110 $template = $this->
object->getTemplate();
113 include_once
"Services/Administration/classes/class.ilSettingsTemplate.php";
115 $hidden_tabs = $template->getHiddenTabs();
118 $ilTabs->addSubTab(
"page",
119 $this->lng->txt(
"survey_per_page_view"),
120 $this->ctrl->getLinkTargetByClass(
"ilsurveypagegui",
"renderPage"));
122 if(!in_array(
"survey_question_editor", $hidden_tabs))
124 $this->ctrl->setParameter($this,
"pgov",
"");
125 $ilTabs->addSubTab(
"questions",
126 $this->lng->txt(
"survey_question_editor"),
127 $this->ctrl->getLinkTarget($this,
"questions"));
128 $this->ctrl->setParameter($this,
"pgov",
$_REQUEST[
"pgov"]);
131 $ilTabs->addSubTab(
"print",
132 $this->lng->txt(
"print_view"),
133 $this->ctrl->getLinkTarget($this,
"printView"));
135 if($this->object->getSurveyPages())
139 $this->ctrl->setParameterByClass(
"ilsurveyexecutiongui",
"pgov", max(1,
$_REQUEST[
"pg"]));
141 $this->ctrl->setParameterByClass(
"ilsurveyexecutiongui",
"prvw", 1);
142 $ilTabs->addSubTab(
"preview",
143 $this->lng->txt(
"preview"),
144 $this->ctrl->getLinkTargetByClass(array(
"ilobjsurveygui",
"ilsurveyexecutiongui"),
"preview"));
147 $ilTabs->activateSubTab($a_cmd);
161 if (
$_GET[
"new_id"] > 0)
164 $existing = $this->
object->getExistingQuestions();
165 if (!in_array(
$_GET[
"new_id"], $existing))
167 $inserted = $this->
object->insertQuestion(
$_GET[
"new_id"]);
178 $hasDatasets = $this->
object->_hasDatasets($this->object->getSurveyId());
179 $read_only = $hasDatasets;
187 include_once
"./Modules/SurveyQuestionPool/classes/class.ilObjSurveyQuestionPool.php";
190 $qtypes[
$data[
"type_tag"]] = $translation;
193 $ilToolbar->setFormAction($this->ctrl->getFormAction($this));
194 include_once
"Services/Form/classes/class.ilPropertyFormGUI.php";
195 $types =
new ilSelectInputGUI($this->lng->txt(
"create_new"),
"sel_question_types");
197 $ilToolbar->addInputItem($types,
"");
198 $ilToolbar->addFormButton($this->lng->txt(
"svy_create_question"),
"createQuestion");
200 if($this->object->isPoolActive())
202 $ilToolbar->addSeparator();
204 $cmd = ($ilUser->getPref(
'svy_insert_type') == 1 || strlen($ilUser->getPref(
'svy_insert_type')) == 0) ?
'browseForQuestions' :
'browseForQuestionblocks';
205 $ilToolbar->addButton($this->lng->txt(
"browse_for_questions"),
206 $this->ctrl->getLinkTarget($this,
$cmd));
209 $ilToolbar->addSeparator();
211 $ilToolbar->addButton($this->lng->txt(
"add_heading"),
212 $this->ctrl->getLinkTarget($this,
"addHeading"));
216 $link = $this->ctrl->getLinkTargetByClass(
"ilsurveyparticipantsgui",
"maintenance");
217 $link =
"<a href=\"".$link.
"\">".$this->lng->txt(
"survey_has_datasets_warning_page_view_link").
"</a>";
218 ilUtil::sendInfo($this->lng->txt(
"survey_has_datasets_warning_page_view").
" ".$link);
224 include_once
"Modules/Survey/classes/class.ilSurveyQuestionTableGUI.php";
227 $this->tpl->setContent($table->getHTML());
239 protected function gatherSelectedTableItems($allow_blocks =
true, $allow_questions =
true, $allow_headings =
false, $allow_questions_in_blocks =
false)
241 $block_map = array();
242 foreach($this->object->getSurveyQuestions() as $item)
244 $block_map[$item[
"question_id"]] = $item[
"questionblock_id"];
247 $questions = $blocks = $headings = array();
250 foreach (
$_POST[
"id"] as $key)
253 if ($allow_questions && preg_match(
"/cb_(\d+)/", $key, $matches))
255 if(($allow_questions_in_blocks || !$block_map[$matches[1]]) &&
256 !in_array($block_map[$matches[1]], $blocks))
258 array_push($questions, $matches[1]);
262 if ($allow_blocks && preg_match(
"/cb_qb_(\d+)/", $key, $matches))
264 array_push($blocks, $matches[1]);
267 if ($allow_headings && preg_match(
"/cb_tb_(\d+)/", $key, $matches))
269 array_push($headings, $matches[1]);
274 return array(
"questions" => $questions,
276 "headings" => $headings);
281 if(isset(
$_POST[
"order"]))
286 foreach(array_keys(
$_POST[
"order"]) as $id)
289 if(substr($id, 0, 3) ==
"qb_")
291 $block_id = substr($id, 3);
292 $block =
$_POST[
"block_order"][$block_id];
294 foreach(array_keys($block) as $question_id)
297 $order[$question_id] = $position;
302 $question_id = substr($id, 2);
304 $order[$question_id] = $position;
307 $this->
object->updateOrder($order);
310 $obligatory = array();
311 foreach (
$_POST as $key => $value)
313 if (preg_match(
"/obligatory_(\d+)/", $key, $matches))
315 $obligatory[$matches[1]] = 1;
318 $this->
object->setObligatoryStates($obligatory);
320 $this->ctrl->redirect($this,
"questions");
326 if (count($items[
"blocks"]))
329 $this->
object->unfoldQuestionblocks($items[
"blocks"]);
335 $this->ctrl->redirect($this,
"questions");
342 $move_questions = $items[
"questions"];
343 foreach ($items[
"blocks"] as $block_id)
345 foreach ($this->object->getQuestionblockQuestionIds($block_id) as $qid)
347 array_push($move_questions, $qid);
350 if (count($move_questions) == 0)
353 $this->ctrl->redirect($this,
"questions");
357 $_SESSION[
"move_questions"] = $move_questions;
358 ilUtil::sendInfo($this->lng->txt(
"select_target_position_for_move_question"));
381 while(!$insert_id &&
sizeof(
$_POST[
"id"]))
383 $target = array_shift(
$_POST[
"id"]);
384 if (preg_match(
"/^cb_(\d+)$/", $target, $matches))
387 if(in_array($matches[1], $items[
"questions"]))
389 $insert_id = $matches[1];
392 if (!$insert_id && preg_match(
"/^cb_qb_(\d+)$/", $target, $matches))
394 $ids = $this->
object->getQuestionblockQuestionIds($matches[1]);
397 if ($insert_mode == 0)
399 $insert_id = $ids[0];
401 else if ($insert_mode == 1)
403 $insert_id = $ids[count($ids)-1];
417 $this->
object->moveQuestions(
$_SESSION[
"move_questions"], $insert_id, $insert_mode);
421 $this->ctrl->redirect($this,
"questions");
427 if (count($items[
"blocks"]) + count($items[
"questions"]) + count($items[
"headings"]) > 0)
435 ilUtil::sendInfo($this->lng->txt(
"no_question_selected_for_removal"),
true);
436 $this->ctrl->redirect($this,
"questions");
442 include_once(
"./Services/Utilities/classes/class.ilConfirmationGUI.php");
444 $cgui->setHeaderText($this->lng->txt(
"survey_sure_delete_questions"));
446 $cgui->setFormAction($this->ctrl->getFormAction($this,
"confirmRemoveQuestions"));
447 $cgui->setCancel($this->lng->txt(
"cancel"),
"questions");
448 $cgui->setConfirm($this->lng->txt(
"confirm"),
"confirmRemoveQuestions");
451 $surveyquestions =& $this->
object->getSurveyQuestions();
452 include_once
"./Modules/SurveyQuestionPool/classes/class.SurveyQuestion.php";
453 foreach ($surveyquestions as $question_id =>
$data)
455 if (in_array(
$data[
"question_id"], $checked_questions))
459 $cgui->addItem(
"id_".
$data[
"question_id"],
$data[
"question_id"],
460 $type.
": ".
$data[
"title"]);
462 else if((in_array(
$data[
"questionblock_id"], $checked_questionblocks)))
466 $cgui->addItem(
"id_qb_".
$data[
"questionblock_id"],
$data[
"questionblock_id"],
467 $data[
"questionblock_title"].
" - ".$type.
": ".
$data[
"title"]);
469 else if (in_array(
$data[
"question_id"], $checked_headings))
471 $cgui->addItem(
"id_tb_".
$data[
"question_id"],
$data[
"question_id"],
476 $this->tpl->setContent($cgui->getHTML());
481 $checked_questions = array();
482 $checked_questionblocks = array();
483 $checked_headings = array();
484 foreach (
$_POST as $key => $value)
486 if (preg_match(
"/id_(\d+)/", $key, $matches))
488 array_push($checked_questions, $matches[1]);
490 if (preg_match(
"/id_qb_(\d+)/", $key, $matches))
492 array_push($checked_questionblocks, $matches[1]);
494 if (preg_match(
"/id_tb_(\d+)/", $key, $matches))
496 array_push($checked_headings, $matches[1]);
500 if(
sizeof($checked_questions) ||
sizeof($checked_questionblocks))
502 $this->
object->removeQuestions($checked_questions, $checked_questionblocks);
504 if($checked_headings)
506 foreach($checked_headings as $q_id)
508 $this->
object->saveHeading(
"", $q_id);
511 $this->
object->saveCompletionStatus();
513 $this->ctrl->redirect($this,
"questions");
521 $copy_questions = $items[
"questions"];
522 foreach ($items[
"blocks"] as $block_id)
524 foreach ($this->object->getQuestionblockQuestionIds($block_id) as $qid)
526 array_push($copy_questions, $qid);
529 $copy_questions = array_unique($copy_questions);
532 if (count($copy_questions))
534 foreach($copy_questions as $idx => $question_id)
537 if($question->getOriginalId())
539 unset($copy_questions[$idx]);
544 if (count($copy_questions) == 0)
546 ilUtil::sendInfo($this->lng->txt(
"no_question_selected_for_copy_to_pool"),
true);
547 $this->ctrl->redirect($this,
"questions");
553 include_once
"Services/Form/classes/class.ilPropertyFormGUI.php";
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");
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)
583 $new_question->setId();
584 $new_question->setObjId($pool_id);
585 $new_question->saveToDb();
592 $this->ctrl->redirect($this,
"questions");
602 if(!$this->object->isPoolActive())
605 $_GET[
"sel_question_types"] =
$_POST[
"sel_question_types"];
613 include_once
"Services/Form/classes/class.ilPropertyFormGUI.php";
616 $sel_question_types = (strlen(
$_POST[
"sel_question_types"])) ?
$_POST[
"sel_question_types"] :
$_GET[
"sel_question_types"];
617 $this->ctrl->setParameter($this,
"sel_question_types", $sel_question_types);
618 $form->setFormAction($this->ctrl->getFormAction($this,
"executeCreateQuestion"));
627 $no_pool =
new ilRadioOption($this->lng->txt(
"survey_no_pool"), 1);
628 $usage->addOption($no_pool);
629 $existing_pool =
new ilRadioOption($this->lng->txt(
"survey_existing_pool"), 3);
630 $usage->addOption($existing_pool);
631 $new_pool =
new ilRadioOption($this->lng->txt(
"survey_new_pool"), 2);
632 $usage->addOption($new_pool);
633 $form->addItem($usage);
645 $questionpools =& $this->
object->getAvailableQuestionpools(FALSE, TRUE, TRUE,
"write");
646 $pools =
new ilSelectInputGUI($this->lng->txt(
"select_questionpool"),
"sel_spl");
648 $existing_pool->addSubItem($pools);
650 $name =
new ilTextInputGUI($this->lng->txt(
"spl_new"),
"name_spl");
652 $name->setMaxLength(50);
653 $new_pool->addSubItem($name);
660 $form->addCommandButton(
"executeCreateQuestion", $this->lng->txt(
"submit"));
661 $form->addCommandButton(
"questions", $this->lng->txt(
"cancel"));
663 return $this->tpl->setContent($form->getHTML());
670 $q_type =
$_GET[
"sel_question_types"];
675 $obj_id = $this->
object->getId();
678 else if (
$_POST[
"usage"] == 3 && strlen(
$_POST[
"sel_spl"]))
683 elseif (
$_POST[
"usage"] == 2 && strlen(
$_POST[
"name_spl"]))
697 $this->ctrl->setParameter($this,
"sel_question_types", $q_type);
698 $this->ctrl->redirect($this,
"createQuestion");
704 include_once
"./Modules/SurveyQuestionPool/classes/class.SurveyQuestionGUI.php";
706 $q_gui->object->setObjId($obj_id);
707 $q_gui->object->createNewQuestion();
708 $q_gui_class = get_class($q_gui);
712 $this->ctrl->setParameterByClass($q_gui_class,
"pgov",
$_REQUEST[
"pgov"]);
713 $this->ctrl->setParameterByClass($q_gui_class,
"pgov_pos",
$_REQUEST[
"pgov_pos"]);
716 $this->ctrl->setParameterByClass($q_gui_class,
"ref_id", $this->object->getRefId());
717 $this->ctrl->setParameterByClass($q_gui_class,
"new_for_survey", $this->object->getRefId());
718 $this->ctrl->setParameterByClass($q_gui_class,
"q_id", $q_gui->object->getId());
719 $this->ctrl->setParameterByClass($q_gui_class,
"sel_question_types", $q_gui->getQuestionType());
720 $this->ctrl->redirectByClass($q_gui_class,
"editQuestion");
727 $parent_ref = $tree->getParentId($this->object->getRefId());
729 include_once
"./Modules/SurveyQuestionPool/classes/class.ilObjSurveyQuestionPool.php";
731 $qpl->setType(
"spl");
732 $qpl->setTitle($name);
733 $qpl->setDescription(
"");
735 $qpl->createReference();
736 $qpl->putInTree($parent_ref);
737 $qpl->setPermissions($parent_ref);
741 return $qpl->getId();
751 global $ilTabs, $ilToolbar,
$ilUser;
755 $link = $this->ctrl->getLinkTarget($this,
"questions");
759 $link = $this->ctrl->getLinkTargetByClass(
"ilsurveypagegui",
"renderpage");
761 $ilTabs->setBackTarget($this->lng->txt(
"menubacktosurvey"), $link);
764 include_once
"Services/Form/classes/class.ilSelectInputGUI.php";
765 $types =
new ilSelectInputGUI($this->lng->txt(
"display_all_available"),
"datatype");
767 1 => $this->lng->txt(
"questions"),
768 2 => $this->lng->txt(
"questionblocks")
770 $types->setValue($ilUser->getPref(
'svy_insert_type'));
771 $ilToolbar->addInputItem($types,
true);
772 $ilToolbar->addFormButton($this->lng->txt(
"change"),
"changeDatatype");
773 $ilToolbar->setFormAction( $this->ctrl->getFormAction($this,
"changeDatatype"));
780 $ilUser->writePref(
'svy_insert_type',
$_POST[
'datatype']);
782 switch (
$_POST[
"datatype"])
785 $this->ctrl->redirect($this,
'browseForQuestionblocks');
790 $this->ctrl->redirect($this,
'browseForQuestions');
799 include_once
"./Modules/Survey/classes/tables/class.ilSurveyQuestionbrowserTableGUI.php";
801 $table_gui->setEditable(
true);
802 $this->tpl->setContent($table_gui->getHTML());
807 include_once
"./Modules/Survey/classes/tables/class.ilSurveyQuestionbrowserTableGUI.php";
809 $table_gui->writeFilterToSession();
810 $this->ctrl->redirect($this,
'browseForQuestions');
815 include_once
"./Modules/Survey/classes/tables/class.ilSurveyQuestionbrowserTableGUI.php";
817 $table_gui->resetFilter();
818 $this->ctrl->redirect($this,
'browseForQuestions');
823 $inserted_objects = 0;
824 if (is_array(
$_POST[
'q_id']))
828 include_once
"Modules/Survey/classes/class.ilSurveyPageGUI.php";
830 $page_gui->determineCurrentPage();
835 foreach (
$_POST[
'q_id'] as $question_id)
839 $this->
object->insertQuestion($question_id);
844 $page_gui->insertNewQuestion($question_id);
849 if ($inserted_objects)
851 $this->
object->saveCompletionStatus();
855 $this->ctrl->redirect($this,
"questions");
860 if(substr(
$_REQUEST[
"pgov_pos"], -1) ==
"c")
872 $this->ctrl->setParameterByClass(
"ilsurveypagegui",
"pgov", $target_page);
873 $this->ctrl->redirectByClass(
"ilsurveypagegui",
"renderpage");
879 $this->ctrl->redirect($this,
'browseForQuestions');
887 include_once
"./Modules/Survey/classes/tables/class.ilSurveyQuestionblockbrowserTableGUI.php";
889 $table_gui->setEditable(
true);
890 $this->tpl->setContent($table_gui->getHTML());
895 include_once
"./Modules/Survey/classes/tables/class.ilSurveyQuestionblockbrowserTableGUI.php";
897 $table_gui->writeFilterToSession();
898 $this->ctrl->redirect($this,
'browseForQuestionblocks');
903 include_once
"./Modules/Survey/classes/tables/class.ilSurveyQuestionblockbrowserTableGUI.php";
905 $table_gui->resetFilter();
906 $this->ctrl->redirect($this,
'browseForQuestionblocks');
911 $inserted_objects = 0;
912 if (is_array(
$_POST[
'cb']))
916 include_once
"Modules/Survey/classes/class.ilSurveyPageGUI.php";
918 $page_gui->determineCurrentPage();
923 foreach (
$_POST[
'cb'] as $questionblock_id)
927 $this->
object->insertQuestionblock($questionblock_id);
931 $page_gui->insertQuestionblock($questionblock_id);
936 if ($inserted_objects)
938 $this->
object->saveCompletionStatus();
939 ilUtil::sendSuccess(($inserted_objects == 1) ? $this->lng->txt(
"questionblock_inserted") : $this->lng->txt(
"questionblocks_inserted"),
true);
942 $this->ctrl->redirect($this,
"questions");
947 if(substr(
$_REQUEST[
"pgov_pos"], -1) ==
"c")
951 $this->ctrl->setParameterByClass(
"ilsurveypagegui",
"pgov", $target_page);
952 $this->ctrl->redirectByClass(
"ilsurveypagegui",
"renderpage");
958 $this->ctrl->redirect($this,
'browseForQuestionblocks');
970 $this->ctrl->setParameter($this,
"bl_id", $block_id);
978 $this->tpl->setContent($a_form->getHTML());
987 if(
sizeof(
$_POST[
"qids"]))
989 $items[
"questions"] =
$_POST[
"qids"];
991 if (count($items[
"questions"]) < 2)
993 ilUtil::sendInfo($this->lng->txt(
"qpl_define_questionblock_select_missing"),
true);
994 $this->ctrl->redirect($this,
"questions");
1001 $this->tpl->setContent($a_form->getHTML());
1006 include_once(
"./Services/Form/classes/class.ilPropertyFormGUI.php");
1008 $form->setFormAction($this->ctrl->getFormAction($this,
"saveDefineQuestionblock"));
1009 $form->setTitle($this->lng->txt(
"define_questionblock"));
1013 $form->addItem($title);
1015 $toggle_blocktitle =
new ilCheckboxInputGUI($this->lng->txt(
"survey_show_blocktitle"),
"show_blocktitle");
1016 $toggle_blocktitle->
setInfo($this->lng->txt(
"survey_show_blocktitle_description"));
1017 $form->addItem($toggle_blocktitle);
1019 $toggle_questiontitle =
new ilCheckboxInputGUI($this->lng->txt(
"show_questiontext"),
"show_questiontext");
1020 $toggle_questiontitle->
setInfo($this->lng->txt(
"show_questiontext_description"));
1021 $form->addItem($toggle_questiontitle);
1025 $questionblock = $this->
object->getQuestionblock($a_block_id);
1026 $title->setValue($questionblock[
"title"]);
1027 $toggle_blocktitle->setChecked($questionblock[
"show_blocktitle"]);
1028 $toggle_questiontitle->setChecked($questionblock[
"show_questiontext"]);
1032 $toggle_blocktitle->setChecked(
true);
1033 $toggle_questiontitle->setChecked(
true);
1036 $form->addCommandButton(
"saveDefineQuestionblock", $this->lng->txt(
"save"));
1037 $form->addCommandButton(
"questions", $this->lng->txt(
"cancel"));
1040 if(!$a_question_ids &&
$_POST[
"qids"])
1042 $a_question_ids =
$_POST[
"qids"];
1045 if ($a_question_ids)
1047 foreach ($a_question_ids as $q_id)
1050 $hidden->setValue($q_id);
1051 $form->addItem($hidden);
1063 $this->ctrl->setParameter($this,
"bl_id", $block_id);
1065 if(!$block_id && !is_array($q_ids))
1067 $this->ctrl->redirect($this,
"questions");
1071 if($form->checkInput())
1073 $title = $form->getInput(
"title");
1074 $show_questiontext = $form->getInput(
"show_questiontext");
1075 $show_blocktitle = $form->getInput(
"show_blocktitle") ;
1079 $this->
object->modifyQuestionblock($block_id, $title,
1080 $show_questiontext, $show_blocktitle);
1084 $this->
object->createQuestionblock($title, $show_questiontext,
1085 $show_blocktitle, $q_ids);
1089 $this->ctrl->redirect($this,
"questions");
1092 $form->setValuesByPost();
1103 $survey_questions = $this->
object->getSurveyQuestions();
1105 include_once(
"./Services/Form/classes/class.ilPropertyFormGUI.php");
1107 $form->setFormAction($this->ctrl->getFormAction($this,
""));
1112 $heading->setCols(80);
1113 $heading->setUseRte(TRUE);
1114 include_once
"./Services/AdvancedEditing/classes/class.ilObjAdvancedEditing.php";
1117 $heading->setRTESupport($this->object->getId(),
"svy",
"survey");
1118 $heading->setRequired(
true);
1119 $form->addItem($heading);
1121 $insertbefore =
new ilSelectInputGUI($this->lng->txt(
"insert"),
"insertbefore");
1123 foreach ($survey_questions as $key => $value)
1125 $options[$key] = $this->lng->txt(
"before") .
": \"" . $value[
"title"] .
"\"";
1128 $insertbefore->setRequired(
true);
1129 $form->addItem($insertbefore);
1131 $form->addCommandButton(
"saveHeading", $this->lng->txt(
"save"));
1132 $form->addCommandButton(
"questions", $this->lng->txt(
"cancel"));
1136 $form->setTitle($this->lng->txt(
"edit_heading"));
1138 $heading->setValue($this->object->prepareTextareaOutput($survey_questions[$a_question_id][
"heading"]));
1139 $insertbefore->setValue($a_question_id);
1140 $insertbefore->setDisabled(
true);
1144 $form->setTitle($this->lng->txt(
"add_heading"));
1153 $this->ctrl->setParameter($this,
"q_id", $q_id);
1162 $this->tpl->setContent($a_form->getHTML());
1168 $this->ctrl->setParameter($this,
"q_id", $q_id);
1177 $this->tpl->setContent($a_form->getHTML());
1184 $this->ctrl->setParameter($this,
"q_id", $q_id);
1187 if ($form->checkInput())
1189 include_once
"./Services/AdvancedEditing/classes/class.ilObjAdvancedEditing.php";
1192 $form->getInput(
"insertbefore"));
1193 $this->ctrl->redirect($this,
"questions");
1196 $form->setValuesByPost();
1203 $this->ctrl->setParameter($this,
"q_id", $q_id);
1207 $this->ctrl->redirect($this,
"questions");
1212 include_once(
"./Services/Utilities/classes/class.ilConfirmationGUI.php");
1214 $cgui->setHeaderText($this->lng->txt(
"confirm_remove_heading"));
1216 $cgui->setFormAction($this->ctrl->getFormAction($this,
"confirmedRemoveHeading"));
1217 $cgui->setCancel($this->lng->txt(
"cancel"),
"questions");
1218 $cgui->setConfirm($this->lng->txt(
"confirm"),
"confirmedRemoveHeading");
1220 $this->tpl->setContent($cgui->getHTML());
1229 $this->ctrl->redirect($this,
"questions");
1232 $this->
object->saveHeading(
"", $q_id);
1233 $this->ctrl->redirect($this,
"questions");
1251 $template =
new ilTemplate(
"tpl.il_svy_svy_printview.html", TRUE, TRUE,
"Modules/Survey");
1253 include_once
'./Services/WebServices/RPC/classes/class.ilRPCServerSettings.php';
1256 $this->ctrl->setParameter($this,
"pdf",
"1");
1257 $template->setCurrentBlock(
"pdf_export");
1258 $template->setVariable(
"PDF_URL", $this->ctrl->getLinkTarget($this,
"printView"));
1259 $this->ctrl->setParameter($this,
"pdf",
"");
1260 $template->setVariable(
"PDF_TEXT", $this->lng->txt(
"pdf_export"));
1261 $template->setVariable(
"PDF_IMG_ALT", $this->lng->txt(
"pdf_export"));
1263 $template->parseCurrentBlock();
1265 $template->setVariable(
"PRINT_TEXT", $this->lng->txt(
"print"));
1266 $template->setVariable(
"PRINT_URL",
"javascript:window.print();");
1268 $pages =& $this->
object->getSurveyPages();
1269 foreach ($pages as $page)
1271 if (count($page) > 0)
1273 foreach ($page as $question)
1275 $questionGUI = $this->
object->getQuestionGUI($question[
"type_tag"], $question[
"question_id"]);
1276 if (is_object($questionGUI))
1278 if (strlen($question[
"heading"]))
1280 $template->setCurrentBlock(
"textblock");
1281 $template->setVariable(
"TEXTBLOCK", $question[
"heading"]);
1282 $template->parseCurrentBlock();
1284 $template->setCurrentBlock(
"question");
1285 $template->setVariable(
"QUESTION_DATA", $questionGUI->getPrintView($this->object->getShowQuestionTitles(), $question[
"questionblock_show_questiontext"], $this->
object->getSurveyId()));
1286 $template->parseCurrentBlock();
1289 if (count($page) > 1 && $page[0][
"questionblock_show_blocktitle"])
1291 $template->setCurrentBlock(
"page");
1292 $template->setVariable(
"BLOCKTITLE", $page[0][
"questionblock_title"]);
1293 $template->parseCurrentBlock();
1297 $template->setCurrentBlock(
"page");
1298 $template->parseCurrentBlock();
1302 $this->tpl->addCss(
"./Modules/Survey/templates/default/survey_print.css",
"print");
1303 if (array_key_exists(
"pdf",
$_GET) && (
$_GET[
"pdf"] == 1))
1305 $printbody =
new ilTemplate(
"tpl.il_as_tst_print_body.html", TRUE, TRUE,
"Modules/Test");
1306 $printbody->setVariable(
"TITLE", sprintf($this->lng->txt(
"tst_result_user_name"), $uname));
1307 $printbody->setVariable(
"ADM_CONTENT", $template->get());
1308 $printoutput = $printbody->get();
1309 $printoutput = preg_replace(
"/href=\".*?\"/",
"", $printoutput);
1310 $fo = $this->
object->processPrintoutput2FO($printoutput);
1312 if(!$fo || !$this->object->deliverPDFfromFO($fo))
1315 $this->ctrl->redirect($this,
"printView");
1320 $this->tpl->setVariable(
"ADM_CONTENT", $template->get());
resetfilterQuestionBrowserObject()
static sendSuccess($a_info="", $a_keep=false)
Send Success Message to Screen.
copyQuestionsToPoolObject()
confirmedRemoveHeadingObject()
This class represents an option in a radio group.
confirmRemoveQuestionsObject()
editHeadingObject(ilPropertyFormGUI $a_form=null)
insertQuestionsBeforeObject()
setBrowseForQuestionsSubtabs()
& _getUsedHTMLTagsAsString($a_module="")
Returns a string of all allowed HTML tags for text editing.
insertQuestionsAfterObject()
resetfilterQuestionblockBrowserObject()
addHeadingObject(ilPropertyFormGUI $a_form=null)
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)
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.
if(!is_array($argv)) $options
const ILIAS_IMG_MANAGER_PLUGIN
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static _lookupObjId($a_id)
static & _getQuestionGUI($questiontype, $question_id=-1)
Creates a question gui representation.
special template class to simplify handling of ITX/PEAR
setSize($a_size)
Set Size.
saveDefineQuestionblockObject()
This class represents a text property in a property form.
if(isset($_FILES['img_file']['size']) && $_FILES['img_file']['size'] > 0) $tpl
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.
removeQuestionsForm($checked_questionblocks, $checked_questions, $checked_headings)
static getHtmlPath($relative_path)
get url of path
Survey question table GUI class.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
__construct(ilObjSurveyGUI $a_parent_gui)
browseForQuestionsObject()
while($lm_rec=$ilDB->fetchAssoc($lm_set)) $data
unfoldQuestionblockObject()
setRows($a_rows)
Set Rows.
& _getUsedHTMLTags($a_module="")
Returns an array of all allowed HTML tags for text editing.
This class represents a text area property in a property form.
& _getQuestiontypes()
Creates a list of all available question types.
browseForQuestionblocksObject()
printViewObject()
Creates a print view of the survey questions.
insertQuestionblocksObject()
if($_REQUEST['ilias_path']) define('ILIAS_HTTP_PATH' $_REQUEST['ilias_path']
executeCreateQuestionObject()
filterQuestionBrowserObject()
& _instanciateQuestion($question_id)
Creates an instance of a question with a given question id.
Settings template application class.
filterQuestionblockBrowserObject()
Confirmation screen class.
static getInstance()
Get singelton instance.