ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilSurveyEditorGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
17 {
18  protected $parent_gui; // [ilObjSurveyGUI]
19  protected $object; // [ilObjSurvey]
20 
21  public function __construct(ilObjSurveyGUI $a_parent_gui)
22  {
23  global $ilCtrl, $lng, $tpl;
24 
25  $this->parent_gui = $a_parent_gui;
26  $this->object = $this->parent_gui->object;
27 
28  $this->ctrl = $ilCtrl;
29  $this->lng = $lng;
30  $this->tpl = $tpl;
31 
32  $this->ctrl->saveParameter($this, array("pgov", "pgov_pos"));
33  }
34 
35  public function executeCommand()
36  {
37  global $ilTabs;
38 
39  $cmd = $this->ctrl->getCmd("questions");
40 
41  if($_REQUEST["pgov"])
42  {
43  if($cmd == "questions")
44  {
45  $this->ctrl->setCmdClass("ilsurveypagegui");
46  $this->ctrl->setCmd("renderpage");
47  }
48  else if($cmd == "confirmRemoveQuestions")
49  {
50  // #14324
51  $this->ctrl->setCmdClass("ilsurveypagegui");
52  $this->ctrl->setCmd("confirmRemoveQuestions");
53  }
54  }
55 
56  $next_class = $this->ctrl->getNextClass($this);
57  switch($next_class)
58  {
59  case 'ilsurveypagegui':
60  $this->questionsSubtabs("page");
61  include_once './Modules/Survey/classes/class.ilSurveyPageGUI.php';
62  $pg = new ilSurveyPageGUI($this->object, $this);
63  $this->ctrl->forwardCommand($pg);
64  break;
65 
66  default:
67  // question gui
68  if(stristr($next_class, "questiongui"))
69  {
70  $ilTabs->clearTargets();
71  $this->ctrl->saveParameter($this, array("new_for_survey"));
72 
73  include_once "./Modules/SurveyQuestionPool/classes/class.SurveyQuestionGUI.php";
74  $q_gui = SurveyQuestionGUI::_getQuestionGUI(null, $_REQUEST["q_id"]);
75  if (is_object($q_gui->object))
76  {
77  global $ilHelp;
78  $ilHelp->setScreenIdComponent("spl_qt".$q_gui->object->getQuestionTypeId());
79  }
80  // $q_gui->object->setObjId($this->object->getId());
81  $q_gui->setBackUrl($this->ctrl->getLinkTarget($this, "questions"));
82  $q_gui->setQuestionTabs();
83  $this->ctrl->forwardCommand($q_gui);
84 
85  if(!(int)$_REQUEST["new_for_survey"])
86  {
87  // not on create
88  $this->tpl->setTitle($this->lng->txt("question").": ".$q_gui->object->getTitle());
89  }
90  }
91  else
92  {
93  $cmd .= "Object";
94  $this->$cmd();
95  }
96  break;
97  }
98  }
99 
100  protected function questionsSubtabs($a_cmd)
101  {
102  global $ilTabs;
103 
104  if($a_cmd == "questions" && $_REQUEST["pgov"])
105  {
106  $a_cmd = "page";
107  }
108 
109  $hidden_tabs = array();
110  $template = $this->object->getTemplate();
111  if($template)
112  {
113  include_once "Services/Administration/classes/class.ilSettingsTemplate.php";
114  $template = new ilSettingsTemplate($template);
115  $hidden_tabs = $template->getHiddenTabs();
116  }
117 
118  $ilTabs->addSubTab("page",
119  $this->lng->txt("survey_per_page_view"),
120  $this->ctrl->getLinkTargetByClass("ilsurveypagegui", "renderPage"));
121 
122  if(!in_array("survey_question_editor", $hidden_tabs))
123  {
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"]);
129  }
130 
131  $ilTabs->addSubTab("print",
132  $this->lng->txt("print_view"),
133  $this->ctrl->getLinkTarget($this, "printView"));
134 
135  if($this->object->getSurveyPages())
136  {
137  if($a_cmd == "page")
138  {
139  $this->ctrl->setParameterByClass("ilsurveyexecutiongui", "pgov", max(1, $_REQUEST["pg"]));
140  }
141  $this->ctrl->setParameterByClass("ilsurveyexecutiongui", "prvw", 1);
142  $ilTabs->addSubTab("preview",
143  $this->lng->txt("preview"),
144  $this->ctrl->getLinkTargetByClass(array("ilobjsurveygui", "ilsurveyexecutiongui"), "preview"));
145  }
146 
147  $ilTabs->activateSubTab($a_cmd);
148  }
149 
150 
151  //
152  // QUESTIONS BROWSER INCL. MULTI-ACTIONS
153  //
154 
155  public function questionsObject()
156  {
157  global $ilToolbar, $ilUser;
158 
159 
160  // insert new questions?
161  if ($_GET["new_id"] > 0)
162  {
163  // add a question to the survey previous created in a questionpool
164  $existing = $this->object->getExistingQuestions();
165  if (!in_array($_GET["new_id"], $existing))
166  {
167  $inserted = $this->object->insertQuestion($_GET["new_id"]);
168  if (!$inserted)
169  {
170  ilUtil::sendFailure($this->lng->txt("survey_error_insert_incomplete_question"));
171  }
172  }
173  }
174 
175 
176  $this->questionsSubtabs("questions");
177 
178  $hasDatasets = $this->object->_hasDatasets($this->object->getSurveyId());
179  $read_only = $hasDatasets;
180 
181 
182  // toolbar
183 
184  if (!$read_only)
185  {
186  $qtypes = array();
187  include_once "./Modules/SurveyQuestionPool/classes/class.ilObjSurveyQuestionPool.php";
188  foreach (ilObjSurveyQuestionPool::_getQuestiontypes() as $translation => $data)
189  {
190  $qtypes[$data["type_tag"]] = $translation;
191  }
192 
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");
196  $types->setOptions($qtypes);
197  $ilToolbar->addInputItem($types, "");
198  $ilToolbar->addFormButton($this->lng->txt("svy_create_question"), "createQuestion");
199 
200  if($this->object->isPoolActive())
201  {
202  $ilToolbar->addSeparator();
203 
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));
207  }
208 
209  $ilToolbar->addSeparator();
210 
211  $ilToolbar->addButton($this->lng->txt("add_heading"),
212  $this->ctrl->getLinkTarget($this, "addHeading"));
213  }
214  if ($hasDatasets)
215  {
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);
219  }
220 
221 
222  // table gui
223 
224  include_once "Modules/Survey/classes/class.ilSurveyQuestionTableGUI.php";
225  $table = new ilSurveyQuestionTableGUI($this, "questions", $this->object,
226  $read_only);
227  $this->tpl->setContent($table->getHTML());
228  }
229 
239  protected function gatherSelectedTableItems($allow_blocks = true, $allow_questions = true, $allow_headings = false, $allow_questions_in_blocks = false)
240  {
241  $block_map = array();
242  foreach($this->object->getSurveyQuestions() as $item)
243  {
244  $block_map[$item["question_id"]] = $item["questionblock_id"];
245  }
246 
247  $questions = $blocks = $headings = array();
248  if($_POST["id"])
249  {
250  foreach ($_POST["id"] as $key)
251  {
252  // questions
253  if ($allow_questions && preg_match("/cb_(\d+)/", $key, $matches))
254  {
255  if(($allow_questions_in_blocks || !$block_map[$matches[1]]) &&
256  !in_array($block_map[$matches[1]], $blocks))
257  {
258  array_push($questions, $matches[1]);
259  }
260  }
261  // blocks
262  if ($allow_blocks && preg_match("/cb_qb_(\d+)/", $key, $matches))
263  {
264  array_push($blocks, $matches[1]);
265  }
266  // headings
267  if ($allow_headings && preg_match("/cb_tb_(\d+)/", $key, $matches))
268  {
269  array_push($headings, $matches[1]);
270  }
271  }
272  }
273 
274  return array("questions" => $questions,
275  "blocks" => $blocks,
276  "headings" => $headings);
277  }
278 
279  public function saveObligatoryObject()
280  {
281  if(isset($_POST["order"]))
282  {
283  $position = -1;
284  $order = array();
285  asort($_POST["order"]);
286  foreach(array_keys($_POST["order"]) as $id)
287  {
288  // block items
289  if(substr($id, 0, 3) == "qb_")
290  {
291  $block_id = substr($id, 3);
292  $block = $_POST["block_order"][$block_id];
293  asort($block);
294  foreach(array_keys($block) as $question_id)
295  {
296  $position++;
297  $order[$question_id] = $position;
298  }
299  }
300  else
301  {
302  $question_id = substr($id, 2);
303  $position++;
304  $order[$question_id] = $position;
305  }
306  }
307  $this->object->updateOrder($order);
308  }
309 
310  $obligatory = array();
311  foreach ($_POST as $key => $value)
312  {
313  if (preg_match("/obligatory_(\d+)/", $key, $matches))
314  {
315  $obligatory[$matches[1]] = 1;
316  }
317  }
318  $this->object->setObligatoryStates($obligatory);
319  ilUtil::sendSuccess($this->lng->txt('msg_obj_modified'), true);
320  $this->ctrl->redirect($this, "questions");
321  }
322 
323  public function unfoldQuestionblockObject()
324  {
325  $items = $this->gatherSelectedTableItems(true, false, false, false);
326  if (count($items["blocks"]))
327  {
328  ilUtil::sendSuccess($this->lng->txt('msg_obj_modified'), true);
329  $this->object->unfoldQuestionblocks($items["blocks"]);
330  }
331  else
332  {
333  ilUtil::sendInfo($this->lng->txt("qpl_unfold_select_none"), true);
334  }
335  $this->ctrl->redirect($this, "questions");
336  }
337 
338  public function moveQuestionsObject()
339  {
340  $items = $this->gatherSelectedTableItems(true, true, false, false);
341 
342  $move_questions = $items["questions"];
343  foreach ($items["blocks"] as $block_id)
344  {
345  foreach ($this->object->getQuestionblockQuestionIds($block_id) as $qid)
346  {
347  array_push($move_questions, $qid);
348  }
349  }
350  if (count($move_questions) == 0)
351  {
352  ilUtil::sendInfo($this->lng->txt("no_question_selected_for_move"), true);
353  $this->ctrl->redirect($this, "questions");
354  }
355  else
356  {
357  $_SESSION["move_questions"] = $move_questions;
358  ilUtil::sendInfo($this->lng->txt("select_target_position_for_move_question"));
359  $this->questionsObject();
360  }
361  }
362 
363  public function insertQuestionsBeforeObject()
364  {
365  $this->insertQuestions(0);
366  }
367 
368  public function insertQuestionsAfterObject()
369  {
370  $this->insertQuestions(1);
371  }
372 
373  protected function insertQuestions($insert_mode)
374  {
375  $insert_id = null;
376  if($_POST["id"])
377  {
378  $items = $this->gatherSelectedTableItems(true, true, false, false);
379 
380  // we are using POST id for original order
381  while(!$insert_id && sizeof($_POST["id"]))
382  {
383  $target = array_shift($_POST["id"]);
384  if (preg_match("/^cb_(\d+)$/", $target, $matches))
385  {
386  // questions in blocks are not allowed
387  if(in_array($matches[1], $items["questions"]))
388  {
389  $insert_id = $matches[1];
390  }
391  }
392  if (!$insert_id && preg_match("/^cb_qb_(\d+)$/", $target, $matches))
393  {
394  $ids = $this->object->getQuestionblockQuestionIds($matches[1]);
395  if (count($ids))
396  {
397  if ($insert_mode == 0)
398  {
399  $insert_id = $ids[0];
400  }
401  else if ($insert_mode == 1)
402  {
403  $insert_id = $ids[count($ids)-1];
404  }
405  }
406  }
407  }
408  }
409 
410  if(!$insert_id)
411  {
412  ilUtil::sendInfo($this->lng->txt("no_target_selected_for_move"), true);
413  }
414  else
415  {
416  ilUtil::sendSuccess($this->lng->txt('msg_obj_modified'), true);
417  $this->object->moveQuestions($_SESSION["move_questions"], $insert_id, $insert_mode);
418  unset($_SESSION["move_questions"]);
419  }
420 
421  $this->ctrl->redirect($this, "questions");
422  }
423 
424  public function removeQuestionsObject()
425  {
426  $items = $this->gatherSelectedTableItems(true, true, true, true);
427  if (count($items["blocks"]) + count($items["questions"]) + count($items["headings"]) > 0)
428  {
429  ilUtil::sendQuestion($this->lng->txt("remove_questions"));
430  $this->removeQuestionsForm($items["blocks"], $items["questions"], $items["headings"]);
431  return;
432  }
433  else
434  {
435  ilUtil::sendInfo($this->lng->txt("no_question_selected_for_removal"), true);
436  $this->ctrl->redirect($this, "questions");
437  }
438  }
439 
440  public function removeQuestionsForm($checked_questionblocks, $checked_questions, $checked_headings)
441  {
442  include_once("./Services/Utilities/classes/class.ilConfirmationGUI.php");
443  $cgui = new ilConfirmationGUI();
444  $cgui->setHeaderText($this->lng->txt("survey_sure_delete_questions"));
445 
446  $cgui->setFormAction($this->ctrl->getFormAction($this, "confirmRemoveQuestions"));
447  $cgui->setCancel($this->lng->txt("cancel"), "questions");
448  $cgui->setConfirm($this->lng->txt("confirm"), "confirmRemoveQuestions");
449 
450  $counter = 0;
451  $surveyquestions =& $this->object->getSurveyQuestions();
452  include_once "./Modules/SurveyQuestionPool/classes/class.SurveyQuestion.php";
453  foreach ($surveyquestions as $question_id => $data)
454  {
455  if (in_array($data["question_id"], $checked_questions))
456  {
457  $type = SurveyQuestion::_getQuestionTypeName($data["type_tag"]);
458 
459  $cgui->addItem("id_".$data["question_id"], $data["question_id"],
460  $type.": ".$data["title"]);
461  }
462  else if((in_array($data["questionblock_id"], $checked_questionblocks)))
463  {
464  $type = SurveyQuestion::_getQuestionTypeName($data["type_tag"]);
465 
466  $cgui->addItem("id_qb_".$data["questionblock_id"], $data["questionblock_id"],
467  $data["questionblock_title"]." - ".$type.": ".$data["title"]);
468  }
469  else if (in_array($data["question_id"], $checked_headings))
470  {
471  $cgui->addItem("id_tb_".$data["question_id"], $data["question_id"],
472  $data["heading"]);
473  }
474  }
475 
476  $this->tpl->setContent($cgui->getHTML());
477  }
478 
480  {
481  $checked_questions = array();
482  $checked_questionblocks = array();
483  $checked_headings = array();
484  foreach ($_POST as $key => $value)
485  {
486  if (preg_match("/id_(\d+)/", $key, $matches))
487  {
488  array_push($checked_questions, $matches[1]);
489  }
490  if (preg_match("/id_qb_(\d+)/", $key, $matches))
491  {
492  array_push($checked_questionblocks, $matches[1]);
493  }
494  if (preg_match("/id_tb_(\d+)/", $key, $matches))
495  {
496  array_push($checked_headings, $matches[1]);
497  }
498  }
499 
500  if(sizeof($checked_questions) || sizeof($checked_questionblocks))
501  {
502  $this->object->removeQuestions($checked_questions, $checked_questionblocks);
503  }
504  if($checked_headings)
505  {
506  foreach($checked_headings as $q_id)
507  {
508  $this->object->saveHeading("", $q_id);
509  }
510  }
511  $this->object->saveCompletionStatus();
512  ilUtil::sendSuccess($this->lng->txt("questions_removed"), true);
513  $this->ctrl->redirect($this, "questions");
514  }
515 
516  public function copyQuestionsToPoolObject()
517  {
518  $items = $this->gatherSelectedTableItems(true, true, false, true);
519 
520  // gather questions from blocks
521  $copy_questions = $items["questions"];
522  foreach ($items["blocks"] as $block_id)
523  {
524  foreach ($this->object->getQuestionblockQuestionIds($block_id) as $qid)
525  {
526  array_push($copy_questions, $qid);
527  }
528  }
529  $copy_questions = array_unique($copy_questions);
530 
531  // only if not already in pool
532  if (count($copy_questions))
533  {
534  foreach($copy_questions as $idx => $question_id)
535  {
536  $question = ilObjSurvey::_instanciateQuestion($question_id);
537  if($question->getOriginalId())
538  {
539  unset($copy_questions[$idx]);
540  }
541  }
542 
543  }
544  if (count($copy_questions) == 0)
545  {
546  ilUtil::sendInfo($this->lng->txt("no_question_selected_for_copy_to_pool"), true);
547  $this->ctrl->redirect($this, "questions");
548  }
549  else
550  {
551  $this->questionsSubtabs("questions");
552 
553  include_once "Services/Form/classes/class.ilPropertyFormGUI.php";
554  $form = new ilPropertyFormGUI();
555 
556  $form->setFormAction($this->ctrl->getFormAction($this, "executeCreateQuestion"));
557 
558  $ids = new ilHiddenInputGUI("question_ids");
559  $ids->setValue(implode(";", $copy_questions));
560  $form->addItem($ids);
561 
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);
566 
567  $form->addCommandButton("executeCopyQuestionsToPool", $this->lng->txt("submit"));
568  $form->addCommandButton("questions", $this->lng->txt("cancel"));
569 
570  return $this->tpl->setContent($form->getHTML());
571  }
572  }
573 
575  {
576  $question_ids = explode(";", $_POST["question_ids"]);
577  $pool_id = ilObject::_lookupObjId($_POST["sel_spl"]);
578 
579  foreach($question_ids as $qid)
580  {
581  // create copy (== pool "original")
582  $new_question = ilObjSurvey::_instanciateQuestion($qid);
583  $new_question->setId();
584  $new_question->setObjId($pool_id);
585  $new_question->saveToDb();
586 
587  // link "source" (survey) to copy (pool)
588  SurveyQuestion::_changeOriginalId($qid, $new_question->getId(), $pool_id);
589  }
590 
591  ilUtil::sendSuccess($this->lng->txt("survey_copy_to_questionpool_success"), true);
592  $this->ctrl->redirect($this, "questions");
593  }
594 
595 
596  //
597  // QUESTION CREATION
598  //
599 
600  public function createQuestionObject(ilPropertyFormGUI $a_form = null)
601  {
602  if(!$this->object->isPoolActive())
603  {
604  $_POST["usage"] = 1;
605  $_GET["sel_question_types"] = $_POST["sel_question_types"];
606  return $this->executeCreateQuestionObject();
607  }
608 
609  if(!$a_form)
610  {
611  $this->questionsSubtabs("questions");
612 
613  include_once "Services/Form/classes/class.ilPropertyFormGUI.php";
614  $form = new ilPropertyFormGUI();
615 
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"));
619  }
620  else
621  {
622  $form = $a_form;
623  }
624 
625  $usage = new ilRadioGroupInputGUI($this->lng->txt("survey_pool_selection"), "usage");
626  $usage->setRequired(true);
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);
634 
635  if(isset($_SESSION["svy_qpool_choice"]))
636  {
637  $usage->setValue($_SESSION["svy_qpool_choice"]);
638  }
639  else
640  {
641  // default: no pool
642  $usage->setValue(1);
643  }
644 
645  $questionpools =& $this->object->getAvailableQuestionpools(FALSE, TRUE, TRUE, "write");
646  $pools = new ilSelectInputGUI($this->lng->txt("select_questionpool"), "sel_spl");
647  $pools->setOptions($questionpools);
648  $existing_pool->addSubItem($pools);
649 
650  $name = new ilTextInputGUI($this->lng->txt("spl_new"), "name_spl"); // #11740
651  $name->setSize(50);
652  $name->setMaxLength(50);
653  $new_pool->addSubItem($name);
654 
655  if($a_form)
656  {
657  return $a_form;
658  }
659 
660  $form->addCommandButton("executeCreateQuestion", $this->lng->txt("submit"));
661  $form->addCommandButton("questions", $this->lng->txt("cancel"));
662 
663  return $this->tpl->setContent($form->getHTML());
664  }
665 
667  {
668  $_SESSION["svy_qpool_choice"] = $_POST["usage"];
669 
670  $q_type = $_GET["sel_question_types"];
671 
672  // no pool
673  if ($_POST["usage"] == 1)
674  {
675  $obj_id = $this->object->getId();
676  }
677  // existing pool
678  else if ($_POST["usage"] == 3 && strlen($_POST["sel_spl"]))
679  {
680  $obj_id = ilObject::_lookupObjId($_POST["sel_spl"]);
681  }
682  // new pool
683  elseif ($_POST["usage"] == 2 && strlen($_POST["name_spl"]))
684  {
685  $obj_id = $this->createQuestionPool($_POST["name_spl"]);
686  }
687  else
688  {
689  if(!$_POST["usage"])
690  {
691  ilUtil::sendFailure($this->lng->txt("select_one"), true);
692  }
693  else
694  {
695  ilUtil::sendFailure($this->lng->txt("err_no_pool_name"), true);
696  }
697  $this->ctrl->setParameter($this, "sel_question_types", $q_type);
698  $this->ctrl->redirect($this, "createQuestion");
699  }
700 
701 
702  // create question and redirect to question form
703 
704  include_once "./Modules/SurveyQuestionPool/classes/class.SurveyQuestionGUI.php";
705  $q_gui = SurveyQuestionGUI::_getQuestionGUI($q_type);
706  $q_gui->object->setObjId($obj_id); // survey/pool!
707  $q_gui->object->createNewQuestion();
708  $q_gui_class = get_class($q_gui);
709 
710  if($_REQUEST["pgov"])
711  {
712  $this->ctrl->setParameterByClass($q_gui_class, "pgov", $_REQUEST["pgov"]);
713  $this->ctrl->setParameterByClass($q_gui_class, "pgov_pos",$_REQUEST["pgov_pos"]);
714  }
715 
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");
721  }
722 
723  protected function createQuestionPool($name = "dummy")
724  {
725  global $tree;
726 
727  $parent_ref = $tree->getParentId($this->object->getRefId());
728 
729  include_once "./Modules/SurveyQuestionPool/classes/class.ilObjSurveyQuestionPool.php";
730  $qpl = new ilObjSurveyQuestionPool();
731  $qpl->setType("spl");
732  $qpl->setTitle($name);
733  $qpl->setDescription("");
734  $qpl->create();
735  $qpl->createReference();
736  $qpl->putInTree($parent_ref);
737  $qpl->setPermissions($parent_ref);
738  $qpl->setOnline(1); // must be online to be available
739  $qpl->saveToDb();
740 
741  return $qpl->getId();
742  }
743 
744 
745  //
746  // ADD FROM POOL
747  //
748 
749  protected function setBrowseForQuestionsSubtabs()
750  {
751  global $ilTabs, $ilToolbar, $ilUser;
752 
753  if(!isset($_REQUEST["pgov"]))
754  {
755  $link = $this->ctrl->getLinkTarget($this, "questions");
756  }
757  else
758  {
759  $link = $this->ctrl->getLinkTargetByClass("ilsurveypagegui", "renderpage");
760  }
761  $ilTabs->setBackTarget($this->lng->txt("menubacktosurvey"), $link);
762 
763  // type selector
764  include_once "Services/Form/classes/class.ilSelectInputGUI.php";
765  $types = new ilSelectInputGUI($this->lng->txt("display_all_available"), "datatype");
766  $types->setOptions(array(
767  1 => $this->lng->txt("questions"),
768  2 => $this->lng->txt("questionblocks")
769  ));
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"));
774  }
775 
776  public function changeDatatypeObject()
777  {
778  global $ilUser;
779 
780  $ilUser->writePref('svy_insert_type', $_POST['datatype']);
781 
782  switch ($_POST["datatype"])
783  {
784  case 2:
785  $this->ctrl->redirect($this, 'browseForQuestionblocks');
786  break;
787 
788  case 1:
789  default:
790  $this->ctrl->redirect($this, 'browseForQuestions');
791  break;
792  }
793  }
794 
795  public function browseForQuestionsObject()
796  {
798 
799  include_once "./Modules/Survey/classes/tables/class.ilSurveyQuestionbrowserTableGUI.php";
800  $table_gui = new ilSurveyQuestionbrowserTableGUI($this, 'browseForQuestions', $this->object, true);
801  $table_gui->setEditable(true);
802  $this->tpl->setContent($table_gui->getHTML());
803  }
804 
805  public function filterQuestionBrowserObject()
806  {
807  include_once "./Modules/Survey/classes/tables/class.ilSurveyQuestionbrowserTableGUI.php";
808  $table_gui = new ilSurveyQuestionbrowserTableGUI($this, 'browseForQuestions', $this->object);
809  $table_gui->writeFilterToSession();
810  $this->ctrl->redirect($this, 'browseForQuestions');
811  }
812 
814  {
815  include_once "./Modules/Survey/classes/tables/class.ilSurveyQuestionbrowserTableGUI.php";
816  $table_gui = new ilSurveyQuestionbrowserTableGUI($this, 'browseForQuestions', $this->object);
817  $table_gui->resetFilter();
818  $this->ctrl->redirect($this, 'browseForQuestions');
819  }
820 
821  public function insertQuestionsObject()
822  {
823  $inserted_objects = 0;
824  if (is_array($_POST['q_id']))
825  {
826  if($_REQUEST["pgov"])
827  {
828  include_once "Modules/Survey/classes/class.ilSurveyPageGUI.php";
829  $page_gui = new ilSurveyPageGUI($this->object, $this);
830  $page_gui->determineCurrentPage();
831 
832  // as target position is predefined, insert in reverse order
833  $_POST['q_id'] = array_reverse($_POST['q_id']);
834  }
835  foreach ($_POST['q_id'] as $question_id)
836  {
837  if(!$_REQUEST["pgov"])
838  {
839  $this->object->insertQuestion($question_id);
840  }
841  else
842  {
843  // target position (pgov pos) is processed there
844  $page_gui->insertNewQuestion($question_id);
845  }
846  $inserted_objects++;
847  }
848  }
849  if ($inserted_objects)
850  {
851  $this->object->saveCompletionStatus();
852  ilUtil::sendSuccess($this->lng->txt("questions_inserted"), true);
853  if(!$_REQUEST["pgov"])
854  {
855  $this->ctrl->redirect($this, "questions");
856  }
857  else
858  {
859  $target_page = $_REQUEST["pgov"];
860  if(substr($_REQUEST["pgov_pos"], -1) == "c")
861  {
862  // see ilSurveyPageGUI::insertNewQuestion()
863  if((int)$_REQUEST["pgov_pos"])
864  {
865  $target_page++;
866  }
867  else
868  {
869  $target_page = 1;
870  }
871  }
872  $this->ctrl->setParameterByClass("ilsurveypagegui", "pgov", $target_page);
873  $this->ctrl->redirectByClass("ilsurveypagegui", "renderpage");
874  }
875  }
876  else
877  {
878  ilUtil::sendInfo($this->lng->txt("insert_missing_question"), true);
879  $this->ctrl->redirect($this, 'browseForQuestions');
880  }
881  }
882 
884  {
886 
887  include_once "./Modules/Survey/classes/tables/class.ilSurveyQuestionblockbrowserTableGUI.php";
888  $table_gui = new ilSurveyQuestionblockbrowserTableGUI($this, 'browseForQuestionblocks', $this->object, true);
889  $table_gui->setEditable(true);
890  $this->tpl->setContent($table_gui->getHTML());
891  }
892 
894  {
895  include_once "./Modules/Survey/classes/tables/class.ilSurveyQuestionblockbrowserTableGUI.php";
896  $table_gui = new ilSurveyQuestionblockbrowserTableGUI($this, 'browseForQuestionblocks', $this->object);
897  $table_gui->writeFilterToSession();
898  $this->ctrl->redirect($this, 'browseForQuestionblocks');
899  }
900 
902  {
903  include_once "./Modules/Survey/classes/tables/class.ilSurveyQuestionblockbrowserTableGUI.php";
904  $table_gui = new ilSurveyQuestionblockbrowserTableGUI($this, 'browseForQuestionblocks', $this->object);
905  $table_gui->resetFilter();
906  $this->ctrl->redirect($this, 'browseForQuestionblocks');
907  }
908 
909  public function insertQuestionblocksObject()
910  {
911  $inserted_objects = 0;
912  if (is_array($_POST['cb']))
913  {
914  if($_REQUEST["pgov"])
915  {
916  include_once "Modules/Survey/classes/class.ilSurveyPageGUI.php";
917  $page_gui = new ilSurveyPageGUI($this->object, $this);
918  $page_gui->determineCurrentPage();
919 
920  // as target position is predefined, insert in reverse order
921  $_POST['cb'] = array_reverse($_POST['cb']);
922  }
923  foreach ($_POST['cb'] as $questionblock_id)
924  {
925  if(!$_REQUEST["pgov"])
926  {
927  $this->object->insertQuestionblock($questionblock_id);
928  }
929  else
930  {
931  $page_gui->insertQuestionblock($questionblock_id);
932  }
933  $inserted_objects++;
934  }
935  }
936  if ($inserted_objects)
937  {
938  $this->object->saveCompletionStatus();
939  ilUtil::sendSuccess(($inserted_objects == 1) ? $this->lng->txt("questionblock_inserted") : $this->lng->txt("questionblocks_inserted"), true);
940  if(!$_REQUEST["pgov"])
941  {
942  $this->ctrl->redirect($this, "questions");
943  }
944  else
945  {
946  $target_page = $_REQUEST["pgov"];
947  if(substr($_REQUEST["pgov_pos"], -1) == "c")
948  {
949  $target_page++;
950  }
951  $this->ctrl->setParameterByClass("ilsurveypagegui", "pgov", $target_page);
952  $this->ctrl->redirectByClass("ilsurveypagegui", "renderpage");
953  }
954  }
955  else
956  {
957  ilUtil::sendInfo($this->lng->txt("insert_missing_questionblock"), true);
958  $this->ctrl->redirect($this, 'browseForQuestionblocks');
959  }
960  }
961 
962 
963  //
964  // BLOCKS
965  //
966 
967  public function editQuestionblockObject(ilPropertyFormGUI $a_form = null)
968  {
969  $block_id = (int)$_REQUEST["bl_id"];
970  $this->ctrl->setParameter($this, "bl_id", $block_id);
971 
972  if(!$a_form)
973  {
974  $a_form = $this->initQuestionblockForm($block_id);
975  }
976 
977  $this->questionsSubtabs("questions");
978  $this->tpl->setContent($a_form->getHTML());
979  }
980 
981  public function createQuestionblockObject(ilPropertyFormGUI $a_form = null)
982  {
983  if(!$a_form)
984  {
985  // gather questions from table selected
986  $items = $this->gatherSelectedTableItems(false, true, false, false);
987  if(sizeof($_POST["qids"]))
988  {
989  $items["questions"] = $_POST["qids"];
990  }
991  if (count($items["questions"]) < 2)
992  {
993  ilUtil::sendInfo($this->lng->txt("qpl_define_questionblock_select_missing"), true);
994  $this->ctrl->redirect($this, "questions");
995  }
996 
997  $a_form = $this->initQuestionblockForm(null, $items["questions"]);
998  }
999 
1000  $this->questionsSubtabs("questions");
1001  $this->tpl->setContent($a_form->getHTML());
1002  }
1003 
1004  protected function initQuestionblockForm($a_block_id = null, $a_question_ids = null)
1005  {
1006  include_once("./Services/Form/classes/class.ilPropertyFormGUI.php");
1007  $form = new ilPropertyFormGUI();
1008  $form->setFormAction($this->ctrl->getFormAction($this, "saveDefineQuestionblock"));
1009  $form->setTitle($this->lng->txt("define_questionblock"));
1010 
1011  $title = new ilTextInputGUI($this->lng->txt("title"), "title");
1012  $title->setRequired(true);
1013  $form->addItem($title);
1014 
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);
1018 
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);
1022 
1023  if($a_block_id)
1024  {
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"]);
1029  }
1030  else
1031  {
1032  $toggle_blocktitle->setChecked(true);
1033  $toggle_questiontitle->setChecked(true);
1034  }
1035 
1036  $form->addCommandButton("saveDefineQuestionblock", $this->lng->txt("save"));
1037  $form->addCommandButton("questions", $this->lng->txt("cancel"));
1038 
1039  // reload?
1040  if(!$a_question_ids && $_POST["qids"])
1041  {
1042  $a_question_ids = $_POST["qids"];
1043  }
1044 
1045  if ($a_question_ids)
1046  {
1047  foreach ($a_question_ids as $q_id)
1048  {
1049  $hidden = new ilHiddenInputGUI("qids[]");
1050  $hidden->setValue($q_id);
1051  $form->addItem($hidden);
1052  }
1053  }
1054 
1055  return $form;
1056  }
1057 
1059  {
1060  $block_id = (int)$_REQUEST["bl_id"];
1061  $q_ids = $_POST["qids"];
1062 
1063  $this->ctrl->setParameter($this, "bl_id", $block_id);
1064 
1065  if(!$block_id && !is_array($q_ids))
1066  {
1067  $this->ctrl->redirect($this, "questions");
1068  }
1069 
1070  $form = $this->initQuestionblockForm($block_id);
1071  if($form->checkInput())
1072  {
1073  $title = $form->getInput("title");
1074  $show_questiontext = $form->getInput("show_questiontext");
1075  $show_blocktitle = $form->getInput("show_blocktitle") ;
1076  if ($block_id)
1077  {
1078 
1079  $this->object->modifyQuestionblock($block_id, $title,
1080  $show_questiontext, $show_blocktitle);
1081  }
1082  else if($q_ids)
1083  {
1084  $this->object->createQuestionblock($title, $show_questiontext,
1085  $show_blocktitle, $q_ids);
1086  }
1087 
1088  ilUtil::sendSuccess($this->lng->txt('msg_obj_modified'), true);
1089  $this->ctrl->redirect($this, "questions");
1090  }
1091 
1092  $form->setValuesByPost();
1093  $this->editQuestionblockObject($form);
1094  }
1095 
1096 
1097  //
1098  // HEADING
1099  //
1100 
1101  protected function initHeadingForm($a_question_id = null)
1102  {
1103  $survey_questions = $this->object->getSurveyQuestions();
1104 
1105  include_once("./Services/Form/classes/class.ilPropertyFormGUI.php");
1106  $form = new ilPropertyFormGUI();
1107  $form->setFormAction($this->ctrl->getFormAction($this, ""));
1108 
1109  // heading
1110  $heading = new ilTextAreaInputGUI($this->lng->txt("heading"), "heading");
1111  $heading->setRows(10);
1112  $heading->setCols(80);
1113  $heading->setUseRte(TRUE);
1114  include_once "./Services/AdvancedEditing/classes/class.ilObjAdvancedEditing.php";
1115  $heading->setRteTags(ilObjAdvancedEditing::_getUsedHTMLTags("survey"));
1116  $heading->removePlugin(ilRTE::ILIAS_IMG_MANAGER_PLUGIN);
1117  $heading->setRTESupport($this->object->getId(), "svy", "survey");
1118  $heading->setRequired(true);
1119  $form->addItem($heading);
1120 
1121  $insertbefore = new ilSelectInputGUI($this->lng->txt("insert"), "insertbefore");
1122  $options = array();
1123  foreach ($survey_questions as $key => $value)
1124  {
1125  $options[$key] = $this->lng->txt("before") . ": \"" . $value["title"] . "\"";
1126  }
1127  $insertbefore->setOptions($options);
1128  $insertbefore->setRequired(true);
1129  $form->addItem($insertbefore);
1130 
1131  $form->addCommandButton("saveHeading", $this->lng->txt("save"));
1132  $form->addCommandButton("questions", $this->lng->txt("cancel"));
1133 
1134  if ($a_question_id)
1135  {
1136  $form->setTitle($this->lng->txt("edit_heading"));
1137 
1138  $heading->setValue($this->object->prepareTextareaOutput($survey_questions[$a_question_id]["heading"]));
1139  $insertbefore->setValue($a_question_id);
1140  $insertbefore->setDisabled(true);
1141  }
1142  else
1143  {
1144  $form->setTitle($this->lng->txt("add_heading"));
1145  }
1146 
1147  return $form;
1148  }
1149 
1150  public function addHeadingObject(ilPropertyFormGUI $a_form = null)
1151  {
1152  $q_id = $_REQUEST["q_id"];
1153  $this->ctrl->setParameter($this, "q_id", $q_id);
1154 
1155  $this->questionsSubtabs("questions");
1156 
1157  if(!$a_form)
1158  {
1159  $a_form = $this->initHeadingForm($q_id);
1160  }
1161 
1162  $this->tpl->setContent($a_form->getHTML());
1163  }
1164 
1165  public function editHeadingObject(ilPropertyFormGUI $a_form = null)
1166  {
1167  $q_id = $_REQUEST["q_id"];
1168  $this->ctrl->setParameter($this, "q_id", $q_id);
1169 
1170  $this->questionsSubtabs("questions");
1171 
1172  if(!$a_form)
1173  {
1174  $a_form = $this->initHeadingForm($q_id);
1175  }
1176 
1177  $this->tpl->setContent($a_form->getHTML());
1178  }
1179 
1180  public function saveHeadingObject()
1181  {
1182  // #15474
1183  $q_id = (int)$_REQUEST["q_id"];
1184  $this->ctrl->setParameter($this, "q_id", $q_id);
1185 
1186  $form = $this->initHeadingForm($q_id);
1187  if ($form->checkInput())
1188  {
1189  include_once "./Services/AdvancedEditing/classes/class.ilObjAdvancedEditing.php";
1190  $this->object->saveHeading(ilUtil::stripSlashes($form->getInput("heading"),
1192  $form->getInput("insertbefore"));
1193  $this->ctrl->redirect($this, "questions");
1194  }
1195 
1196  $form->setValuesByPost();
1197  $this->addHeadingObject($form);
1198  }
1199 
1200  public function removeHeadingObject()
1201  {
1202  $q_id = (int)$_REQUEST["q_id"];
1203  $this->ctrl->setParameter($this, "q_id", $q_id);
1204 
1205  if(!$q_id)
1206  {
1207  $this->ctrl->redirect($this, "questions");
1208  }
1209 
1210  $this->questionsSubtabs("questions");
1211 
1212  include_once("./Services/Utilities/classes/class.ilConfirmationGUI.php");
1213  $cgui = new ilConfirmationGUI();
1214  $cgui->setHeaderText($this->lng->txt("confirm_remove_heading"));
1215 
1216  $cgui->setFormAction($this->ctrl->getFormAction($this, "confirmedRemoveHeading"));
1217  $cgui->setCancel($this->lng->txt("cancel"), "questions");
1218  $cgui->setConfirm($this->lng->txt("confirm"), "confirmedRemoveHeading");
1219 
1220  $this->tpl->setContent($cgui->getHTML());
1221  }
1222 
1223 
1225  {
1226  $q_id = (int)$_REQUEST["q_id"];
1227  if(!$q_id)
1228  {
1229  $this->ctrl->redirect($this, "questions");
1230  }
1231 
1232  $this->object->saveHeading("", $q_id);
1233  $this->ctrl->redirect($this, "questions");
1234  }
1235 
1236 
1237 
1238 
1239 
1240 
1241 
1242 
1248  function printViewObject()
1249  {
1250  $this->questionsSubtabs("print");
1251  $template = new ilTemplate("tpl.il_svy_svy_printview.html", TRUE, TRUE, "Modules/Survey");
1252 
1253  include_once './Services/WebServices/RPC/classes/class.ilRPCServerSettings.php';
1254  if(ilRPCServerSettings::getInstance()->isEnabled())
1255  {
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"));
1262  $template->setVariable("PDF_IMG_URL", ilUtil::getHtmlPath(ilUtil::getImagePath("application-pdf.png")));
1263  $template->parseCurrentBlock();
1264  }
1265  $template->setVariable("PRINT_TEXT", $this->lng->txt("print"));
1266  $template->setVariable("PRINT_URL", "javascript:window.print();");
1267 
1268  $pages =& $this->object->getSurveyPages();
1269  foreach ($pages as $page)
1270  {
1271  if (count($page) > 0)
1272  {
1273  foreach ($page as $question)
1274  {
1275  $questionGUI = $this->object->getQuestionGUI($question["type_tag"], $question["question_id"]);
1276  if (is_object($questionGUI))
1277  {
1278  if (strlen($question["heading"]))
1279  {
1280  $template->setCurrentBlock("textblock");
1281  $template->setVariable("TEXTBLOCK", $question["heading"]);
1282  $template->parseCurrentBlock();
1283  }
1284  $template->setCurrentBlock("question");
1285  $template->setVariable("QUESTION_DATA", $questionGUI->getPrintView($this->object->getShowQuestionTitles(), $question["questionblock_show_questiontext"], $this->object->getSurveyId()));
1286  $template->parseCurrentBlock();
1287  }
1288  }
1289  if (count($page) > 1 && $page[0]["questionblock_show_blocktitle"])
1290  {
1291  $template->setCurrentBlock("page");
1292  $template->setVariable("BLOCKTITLE", $page[0]["questionblock_title"]);
1293  $template->parseCurrentBlock();
1294  }
1295  else
1296  {
1297  $template->setCurrentBlock("page");
1298  $template->parseCurrentBlock();
1299  }
1300  }
1301  }
1302  $this->tpl->addCss("./Modules/Survey/templates/default/survey_print.css", "print");
1303  if (array_key_exists("pdf", $_GET) && ($_GET["pdf"] == 1))
1304  {
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);
1311  // #11436
1312  if(!$fo || !$this->object->deliverPDFfromFO($fo))
1313  {
1314  ilUtil::sendFailure($this->lng->txt("msg_failed"), true);
1315  $this->ctrl->redirect($this, "printView");
1316  }
1317  }
1318  else
1319  {
1320  $this->tpl->setVariable("ADM_CONTENT", $template->get());
1321  }
1322  }
1323 
1324 }
1325 
1326 ?>
< a tabindex="-1" style="border-style: none;" href="#" title="Refresh Image" onclick="document.getElementById('siimage').src = './securimage_show.php?sid=' + Math.random(); this.blur(); return false">< img src="./images/refresh.png" alt="Reload Image" height="32" width="32" onclick="this.blur()" align="bottom" border="0"/></a >< br/>< strong > Enter Code *if($_SERVER['REQUEST_METHOD']=='POST' &&@ $_POST['do']=='contact') $_SESSION['ctform']['success']
static sendSuccess($a_info="", $a_keep=false)
Send Success Message to Screen.
This class represents an option in a radio group.
editHeadingObject(ilPropertyFormGUI $a_form=null)
$_POST['username']
Definition: cron.php:12
Class ilSurveyEditorGUI.
This class represents a selection list property in a property form.
This class represents a property form user interface.
& _getUsedHTMLTagsAsString($a_module="")
Returns a string of all allowed HTML tags for text editing.
$_GET["client_id"]
addHeadingObject(ilPropertyFormGUI $a_form=null)
$cmd
Definition: sahs_server.php:35
Survey per page view.
static _changeOriginalId($a_question_id, $a_original_id, $a_object_id)
Change original id of existing question in db.
This class represents a checkbox property in a property form.
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)
global $ilCtrl
Definition: ilias.php:18
createQuestionObject(ilPropertyFormGUI $a_form=null)
setInfo($a_info)
Set Information Text.
Class ilObjSurveyGUI.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
createQuestionPool($name="dummy")
initQuestionblockForm($a_block_id=null, $a_question_ids=null)
This class represents a hidden form property in a property form.
This class represents a property in a property form.
setValue($a_value)
Set Value.
if(!is_array($argv)) $options
const ILIAS_IMG_MANAGER_PLUGIN
Definition: class.ilRTE.php:36
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.
This class represents a text property in a property form.
if(isset($_FILES['img_file']['size']) && $_FILES['img_file']['size'] > 0) $tpl
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.
setOptions($a_options)
Set Options.
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)
while($lm_rec=$ilDB->fetchAssoc($lm_set)) $data
global $ilUser
Definition: imgupload.php:15
& _getUsedHTMLTags($a_module="")
Returns an array of all allowed HTML tags for text editing.
global $lng
Definition: privfeed.php:40
This class represents a text area property in a property form.
& _getQuestiontypes()
Creates a list of all available question types.
printViewObject()
Creates a print view of the survey questions.
if($_REQUEST['ilias_path']) define('ILIAS_HTTP_PATH' $_REQUEST['ilias_path']
Definition: index.php:7
& _instanciateQuestion($question_id)
Creates an instance of a question with a given question id.
Settings template application class.
setRequired($a_required)
Set Required.
Confirmation screen class.
static getInstance()
Get singelton instance.