ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjSurveyQuestionPoolGUI.php
Go to the documentation of this file.
1 <?php
2 
24 
39 {
40  protected \ILIAS\SurveyQuestionPool\InternalGUIService $gui;
41  protected \ILIAS\SurveyQuestionPool\Editing\EditManager $edit_manager;
42  protected bool $update;
45  protected ilHelpGUI $help;
46  protected ilLogger $log;
48  protected HTTPServices $http;
50  public string $defaultscript;
51 
52  public function __construct()
53  {
54  global $DIC;
55 
56  $this->nav_history = $DIC["ilNavigationHistory"];
57  $this->toolbar = $DIC->toolbar();
58  $this->help = $DIC["ilHelp"];
59  $this->refinery = $DIC->refinery();
60  $this->http = $DIC->http();
61  $this->archives = $DIC->archives();
62  $this->edit_request = $DIC->surveyQuestionPool()
63  ->internal()
64  ->gui()
65  ->editing()
66  ->request();
67  $this->edit_manager = $DIC->surveyQuestionPool()
68  ->internal()
69  ->domain()
70  ->editing();
71 
72  $this->type = "spl";
73 
75  "",
76  $this->edit_request->getRefId(),
77  true,
78  false
79  );
80  $this->lng->loadLanguageModule("survey");
81  $this->ctrl->saveParameter($this, array("ref_id"));
82  $this->log = ilLoggerFactory::getLogger('svy');
83  $this->gui = $DIC->surveyQuestionPool()->internal()->gui();
84  }
85 
86  public function executeCommand(): void
87  {
88  $ilNavigationHistory = $this->nav_history;
89 
90  if (!$this->checkPermissionBool("visible") &&
91  !$this->checkPermissionBool("read")) {
92  $this->checkPermission("read");
93  }
94 
95  // add entry to navigation history
96  if (!$this->getCreationMode() &&
97  $this->checkPermissionBool("read")) {
98  $ilNavigationHistory->addItem(
99  $this->ref_id,
100  "ilias.php?baseClass=ilObjSurveyQuestionPoolGUI&cmd=questions&ref_id=" . $this->ref_id,
101  "spl"
102  );
103  }
104 
105  $this->tpl->addCss(ilUtil::getStyleSheetLocation("output", "survey.css"), "screen");
106  $this->prepareOutput();
107 
108  $cmd = $this->ctrl->getCmd("questions");
109  $next_class = $this->ctrl->getNextClass($this);
110  $this->ctrl->setReturn($this, "questions");
111  $q_type = "";
112  if ($this->edit_request->getQuestionId() < 1) {
113  $q_type = $this->edit_request->getSelectedQuestionTypes();
114  }
115 
116  $this->log->debug("- cmd=" . $cmd . " next_class=" . $next_class);
117  switch ($next_class) {
118  case 'ilobjectmetadatagui':
119  $this->tabs_gui->activateTab("meta_data");
120  $this->checkPermission('write');
121  $md_gui = new ilObjectMetaDataGUI($this->object);
122  $this->ctrl->forwardCommand($md_gui);
123  break;
124 
125  case 'ilpermissiongui':
126  $perm_gui = new ilPermissionGUI($this);
127  $this->ctrl->forwardCommand($perm_gui);
128  break;
129 
130  case 'ilobjectcopygui':
131  $cp = new ilObjectCopyGUI($this);
132  $cp->setType('spl');
133  $this->ctrl->forwardCommand($cp);
134  break;
135 
136  case 'ilinfoscreengui':
137  $this->tabs_gui->activateTab("info_short");
138  $this->infoScreenForward();
139  break;
140 
141  case "ilcommonactiondispatchergui":
143  $this->ctrl->forwardCommand($gui);
144  break;
145 
146  case strtolower(\ILIAS\SurveyQuestionPool\Settings\SettingsGUI::class):
147  $this->checkPermission("write");
148  $this->tabs_gui->activateTab("settings");
149  $gui = $this->gui->settings()->settingsGUI(
150  $this->object->getId(),
151  $this->object->getRefId()
152  );
153  $this->ctrl->forwardCommand($gui);
154  break;
155 
156  case strtolower(ilExportGUI::class):
157  $export = new ilExportGUI($this, $this->object);
158  $this->ctrl->forwardCommand($export);
159  break;
160 
161  case "":
162  $cmd .= "Object";
163  $this->$cmd();
164  break;
165 
166  default:
168  $q_type,
169  $this->edit_request->getQuestionId()
170  );
171  $this->log->debug("- This is the switch/case default, going to question id =" . $this->edit_request->getQuestionId());
172  $q_gui->setQuestionTabs();
173  $this->ctrl->forwardCommand($q_gui);
174 
175  // not on create
176  if ($q_gui->object->isComplete()) {
177  $this->tpl->setTitle($this->lng->txt("question") . ": " . $q_gui->object->getTitle());
178  }
179  break;
180  }
181  if (strtolower($this->edit_request->getBaseClass()) !== "iladministrationgui" &&
182  $this->getCreationMode() !== true) {
183  $this->tpl->printToStdout();
184  }
185  }
186 
190  public function propertiesObject(?ilPropertyFormGUI $a_form = null): void
191  {
192  $this->ctrl->redirectByClass(\ILIAS\SurveyQuestionPool\Settings\SettingsGUI::class);
193  }
194 
195 
199  public function copyObject(): void
200  {
201  $qids = $this->edit_request->getQuestionIds();
202  if (count($qids) > 0) {
203  foreach ($qids as $key => $value) {
204  $this->object->copyToClipboard($value);
205  }
206  $this->tpl->setOnScreenMessage('info', $this->lng->txt("spl_copy_insert_clipboard"), true);
207  } else {
208  $this->tpl->setOnScreenMessage('info', $this->lng->txt("spl_copy_select_none"), true);
209  }
210  $this->ctrl->redirect($this, "questions");
211  }
212 
216  public function moveObject(): void
217  {
218  $qids = $this->edit_request->getQuestionIds();
219  if (count($qids) > 0) {
220  foreach ($qids as $key => $value) {
221  $this->object->moveToClipboard($value);
222  }
223  $this->tpl->setOnScreenMessage('info', $this->lng->txt("spl_move_insert_clipboard"), true);
224  } else {
225  $this->tpl->setOnScreenMessage('info', $this->lng->txt("spl_move_select_none"), true);
226  }
227  $this->ctrl->redirect($this, "questions");
228  }
229 
233  public function exportQuestionObject(): void
234  {
235  $qids = $this->edit_request->getQuestionIds();
236  if (count($qids) > 0) {
237  $this->createExportFileObject($qids);
238  } else {
239  $this->tpl->setOnScreenMessage('info', $this->lng->txt("qpl_export_select_none"));
240  $this->questionsObject();
241  }
242  }
243 
244  public function exportQuestionExportTabObject(): void
245  {
246  $qids = $this->http->wrapper()->query()->retrieve(
247  "qid",
248  $this->refinery->custom()->transformation(function (string $value) {
249  $value = urldecode($value);
250  return explode(',', $value);
251  })
252  );
253  $this->createExportFileObject($qids);
254  }
255 
259  public function deleteQuestionsObject(): void
260  {
261  $this->checkPermission('write');
262 
263  // create an array of all checked checkboxes
264  $checked_questions = $this->edit_request->getQuestionIds();
265  if (count($checked_questions) === 0) {
266  $this->tpl->setOnScreenMessage('info', $this->lng->txt("qpl_delete_select_none"));
267  $this->questionsObject();
268  return;
269  }
270 
271  $cgui = new ilConfirmationGUI();
272  $cgui->setHeaderText($this->lng->txt("qpl_confirm_delete_questions"));
273 
274  $cgui->setFormAction($this->ctrl->getFormAction($this));
275  $cgui->setCancel($this->lng->txt("cancel"), "cancelDeleteQuestions");
276  $cgui->setConfirm($this->lng->txt("confirm"), "confirmDeleteQuestions");
277 
278  $infos = $this->object->getQuestionInfos($checked_questions);
279  foreach ($infos as $data) {
280  $txt = $data["title"] . " (" .
281  SurveyQuestion::_getQuestionTypeName($data["type_tag"]) . ")";
282  if ($data["description"]) {
283  $txt .= "<div class=\"small\">" . $data["description"] . "</div>";
284  }
285 
286  $cgui->addItem("q_id[]", $data["id"], $txt);
287  }
288 
289  $this->tpl->setContent($cgui->getHTML());
290  }
291 
292  public function confirmDeleteQuestionsObject(): void
293  {
294  // delete questions after confirmation
295  $this->tpl->setOnScreenMessage('success', $this->lng->txt("qpl_questions_deleted"), true);
296  $qids = $this->edit_request->getQuestionIds();
297  foreach ($qids as $q_id) {
298  $this->object->removeQuestion($q_id);
299  }
300  $this->ctrl->redirect($this, "questions");
301  }
302 
303  public function cancelDeleteQuestionsObject(): void
304  {
305  // delete questions after confirmation
306  $this->ctrl->redirect($this, "questions");
307  }
308 
312  public function pasteObject(): void
313  {
314  $clip_questions = $this->edit_manager->getQuestionsFromClipboard();
315  if (count($clip_questions) > 0) {
316  $this->object->pasteFromClipboard();
317  } else {
318  $this->tpl->setOnScreenMessage('info', $this->lng->txt("spl_paste_no_objects"), true);
319  }
320  $this->ctrl->redirect($this, "questions");
321  }
322 
326  public function importQuestionsObject(): void
327  {
328  $tpl = $this->tpl;
329  $form = $this->getImportForm();
330  $tpl->setContent($form->getHTML());
331  }
332 
333  public function getImportForm(): ilPropertyFormGUI
334  {
335  $form = new ilPropertyFormGUI();
336  $form->setFormAction($this->ctrl->getFormAction($this, "uploadQuestions"));
337  $form->setTitle($this->lng->txt("import_question"));
338 
339  $fi = new ilFileInputGUI($this->lng->txt("select_file"), "qtidoc");
340  $fi->setSuffixes(array("xml", "zip"));
341  $fi->setRequired(true);
342  $form->addItem($fi);
343 
344  $form->addCommandButton("uploadQuestions", $this->lng->txt("import"));
345  $form->addCommandButton("questions", $this->lng->txt("cancel"));
346  return $form;
347  }
348 
352  public function uploadQuestionsObject(): void
353  {
354  $form = $this->getImportForm();
355  if ($form->checkInput()) {
356  // check if file was uploaded
357  $source = $_FILES["qtidoc"]["tmp_name"];
358  $error = 0;
359  if (($source === 'none') || (!$source) || $_FILES["qtidoc"]["error"] > UPLOAD_ERR_OK) {
360  $error = 1;
361  }
362  // check correct file type
363  if (!$error && strpos("xml", $_FILES["qtidoc"]["type"]) !== false) {
364  $error = 1;
365  }
366  if (!$error) {
367  // import file into questionpool
368  // create import directory
369  $this->object->createImportDirectory();
370 
371  // copy uploaded file to import directory
372  $full_path = $this->object->getImportDirectory() . "/" . $_FILES["qtidoc"]["name"];
373 
375  $_FILES["qtidoc"]["tmp_name"],
376  $_FILES["qtidoc"]["name"],
377  $full_path
378  );
379  $source = $full_path;
380  $this->object->importObject($source, true);
381  unlink($source);
382  }
383  $this->ctrl->redirect($this, "questions");
384  } else {
385  $form->setValuesByPost();
386  $tpl = $this->tpl;
387  $tpl->setContent($form->getHTML());
388  }
389  }
390 
391  public function filterQuestionBrowserObject(): void
392  {
393  $table_gui = new ilSurveyQuestionsTableGUI($this, 'questions');
394  $table_gui->writeFilterToSession();
395  $this->ctrl->redirect($this, 'questions');
396  }
397 
398  public function resetfilterQuestionBrowserObject(): void
399  {
400  $table_gui = new ilSurveyQuestionsTableGUI($this, 'questions');
401  $table_gui->resetFilter();
402  $this->ctrl->redirect($this, 'questions');
403  }
404 
408  public function questionsObject(): void
409  {
410  $this->tabs_gui->activateTab("survey_questions");
411  $ilUser = $this->user;
412  $ilToolbar = $this->toolbar;
413 
414  $this->object->purgeQuestions();
415 
416  if ($this->checkPermissionBool('write')) {
417  $qtypes = new ilSelectInputGUI("", "sel_question_types");
418  $qtypes->setValue($ilUser->getPref("svy_lastquestiontype"));
419  $ilToolbar->addInputItem($qtypes);
420 
421  $options = array();
422  foreach (ilObjSurveyQuestionPool::_getQuestiontypes() as $translation => $data) {
423  $options[$data["type_tag"]] = $translation;
424  }
425  $qtypes->setOptions($options);
426 
427  $ilToolbar->setFormAction($this->ctrl->getFormAction($this));
428 
429  $this->gui->button(
430  $this->lng->txt("svy_create_question"),
431  "createQuestion"
432  )->submit()->toToolbar();
433 
434  $ilToolbar->addSeparator();
435  /*
436  $this->gui->button(
437  $this->lng->txt("import"),
438  "importQuestions"
439  )->submit()->toToolbar();
440  */
441  }
442 
443  $table_gui = new ilSurveyQuestionsTableGUI($this, 'questions', $this->checkPermissionBool('write'));
444  $table_gui->setEditable($this->checkPermissionBool('write'));
445  $arrFilter = array();
446  foreach ($table_gui->getFilterItems() as $item) {
447  if ($item->getValue() !== false) {
448  $arrFilter[$item->getPostVar()] = $item->getValue();
449  }
450  }
451  $table_gui->setData($this->object->getQuestionsData($arrFilter));
452  $this->tpl->setContent($table_gui->getHTML());
453  }
454 
455  public function updateObject(): void
456  {
457  $this->update = $this->object->update();
458  $this->tpl->setOnScreenMessage('success', $this->lng->txt("msg_obj_modified"), true);
459  }
460 
461  protected function afterSave(ilObject $new_object): void
462  {
463  // always send a message
464  $this->tpl->setOnScreenMessage('success', $this->lng->txt("object_added"), true);
465 
466  ilUtil::redirect("ilias.php?ref_id=" . $new_object->getRefId() .
467  "&baseClass=ilObjSurveyQuestionPoolGUI");
468  }
469 
473  public function exportObject(): void
474  {
475  $export = new ilExportGUI($this, $this->object);
476  $export->listExportFiles();
477  }
478 
482  public function createExportFileObject($questions = null): void
483  {
484  $this->checkPermission("write");
485 
487  $svy = $this->object;
488  $survey_exp = new ilSurveyQuestionpoolExport($svy);
489  $survey_exp->buildExportFile($questions);
490  $this->ctrl->redirect($this, "export");
491  }
492 
496  public function downloadExportFileObject(): void
497  {
498  $files = $this->edit_request->getFiles();
499  if (count($files) === 0) {
500  $this->tpl->setOnScreenMessage('info', $this->lng->txt("no_checkbox"), true);
501  $this->ctrl->redirect($this, "export");
502  }
503 
504  if (count($files) > 1) {
505  $this->tpl->setOnScreenMessage('info', $this->lng->txt("select_max_one_item"), true);
506  $this->ctrl->redirect($this, "export");
507  }
508 
509 
510  $export_dir = $this->object->getExportDirectory();
511 
512  $file = basename($files[0]);
513 
514  ilFileDelivery::deliverFileLegacy($export_dir . "/" . $file, $file);
515  }
516 
520  public function confirmDeleteExportFileObject(): void
521  {
522  $files = $this->edit_request->getFiles();
523  if (count($files) === 0) {
524  $this->tpl->setOnScreenMessage('info', $this->lng->txt("no_checkbox"), true);
525  $this->ctrl->redirect($this, "export");
526  }
527 
528  $this->tpl->setOnScreenMessage('question', $this->lng->txt("info_delete_sure"));
529  $table_gui = new ilSurveyQuestionPoolExportTableGUI($this, 'export', true);
530  $export_dir = $this->object->getExportDirectory();
531  $data = array();
532  foreach ($files as $exp_file) {
533  $file_arr = explode("__", $exp_file);
534  $data[] = array('file' => $exp_file,
535  'date' => ilDatePresentation::formatDate(new ilDateTime($file_arr[0], IL_CAL_UNIX)),
536  'size' => filesize($export_dir . "/" . $exp_file)
537  );
538  }
539  $table_gui->setData($data);
540  $this->tpl->setVariable('ADM_CONTENT', $table_gui->getHTML());
541  }
542 
543  public function cancelDeleteExportFileObject(): void
544  {
545  ilSession::clear("ilExportFiles");
546  $this->ctrl->redirect($this, "export");
547  }
548 
549  public function deleteExportFileObject(): void
550  {
551  $export_dir = $this->object->getExportDirectory();
552  $files = $this->edit_request->getFiles();
553  foreach ($files as $file) {
554  $file = basename($file);
555 
556  $exp_file = $export_dir . "/" . $file;
557  $exp_dir = $export_dir . "/" . substr($file, 0, -4);
558  if (is_file($exp_file)) {
559  unlink($exp_file);
560  }
561  if (is_dir($exp_dir)) {
562  ilFileUtils::delDir($exp_dir);
563  }
564  }
565  $this->ctrl->redirect($this, "export");
566  }
567 
571  public function createQuestionObject(): void
572  {
573  $ilUser = $this->user;
574 
575  $ilUser->writePref(
576  "svy_lastquestiontype",
577  $this->edit_request->getSelectedQuestionTypes()
578  );
579 
581  $this->edit_request->getSelectedQuestionTypes()
582  );
583  $q_gui->object->setObjId($this->object->getId());
584  $q_gui->object->createNewQuestion();
585 
586  $this->ctrl->setParameterByClass(get_class($q_gui), "q_id", $q_gui->object->getId());
587  $this->ctrl->setParameterByClass(
588  get_class($q_gui),
589  "sel_question_types",
590  $this->edit_request->getSelectedQuestionTypes()
591  );
592  $this->ctrl->redirectByClass(get_class($q_gui), "editQuestion");
593  }
594 
598  public function previewObject(): void
599  {
601  "",
602  $this->edit_request->getPreview()
603  );
604  $this->ctrl->setParameterByClass(get_class($q_gui), "sel_question_types", $q_gui->getQuestionType());
605  $this->ctrl->setParameterByClass(get_class($q_gui), "q_id", $this->edit_request->getPreview());
606  $this->ctrl->redirectByClass(get_class($q_gui), "preview");
607  }
608 
612  public function infoScreenObject(): void
613  {
614  $this->ctrl->redirectByClass(ilInfoScreenGUI::class, "showSummary");
615  }
616 
620  public function infoScreenForward(): void
621  {
622  if (!$this->checkPermissionBool("read")) {
623  $this->checkPermission("visible");
624  }
625 
626  $info = new ilInfoScreenGUI($this);
627  $info->enablePrivateNotes();
628 
629  // standard meta data
630  $info->addMetaDataSections($this->object->getId(), 0, $this->object->getType());
631 
632  $this->ctrl->forwardCommand($info);
633  }
634 
635  protected function importFile(string $file_to_import, string $path_to_uploaded_file_in_temp_dir): void
636  {
637  $unzip = $this->archives->unzip(Streams::ofResource(fopen($file_to_import, 'r')));
638  # If export contains a manifest xml use standard import
639  if (in_array(basename($file_to_import, ".zip") . DIRECTORY_SEPARATOR . "manifest.xml", iterator_to_array($unzip->getFiles()))) {
640  parent::importFile($file_to_import, $path_to_uploaded_file_in_temp_dir);
641  return;
642  }
643  $tpl = $this->tpl;
644 
645  $newObj = new ilObjSurveyQuestionPool();
646  $newObj->setTitle("dummy");
647  $newObj->create(true);
648  $this->putObjectInTree($newObj);
649 
650  // import qti data
651  $newObj->importObject($file_to_import);
652 
653  if ($path_to_uploaded_file_in_temp_dir !== ''
654  && $this->temp_file_system->hasDir($path_to_uploaded_file_in_temp_dir)) {
655  $this->temp_file_system->deleteDir($path_to_uploaded_file_in_temp_dir);
656  }
657 
658  $this->deleteUploadedImportFile($path_to_uploaded_file_in_temp_dir);
659  $this->tpl->setOnScreenMessage('success', $this->lng->txt("object_imported"), true);
660  ilUtil::redirect("ilias.php?ref_id=" . $newObj->getRefId() .
661  "&baseClass=ilObjSurveyQuestionPoolGUI");
662  }
663 
664  protected function addLocatorItems(): void
665  {
666  $ilLocator = $this->locator;
667  switch ($this->ctrl->getCmd()) {
668  case "create":
669  case "importFile":
670  case "cancel":
671  break;
672  default:
673  $ilLocator->addItem($this->object->getTitle(), $this->ctrl->getLinkTarget($this, ""), "", $this->edit_request->getRefId());
674  break;
675  }
676  if ($this->edit_request->getQuestionId() > 0) {
677  $q_id = $this->edit_request->getQuestionId();
678  $q_type = SurveyQuestion::_getQuestionType($q_id) . "GUI";
679  $q_title = SurveyQuestion::_getTitle($q_id);
680  if ($q_title) {
681  // not on create
682  $this->ctrl->setParameterByClass($q_type, "q_id", $q_id);
683  $ilLocator->addItem(
684  $q_title,
685  $this->ctrl->getLinkTargetByClass($q_type, "editQuestion")
686  );
687  }
688  }
689  }
690 
691  protected function getTabs(): void
692  {
693  $ilHelp = $this->help;
694  $ilHelp->setScreenIdComponent("spl");
695 
696  if ($this->checkPermissionBool("read")) {
697  $this->tabs_gui->addTab(
698  "survey_questions",
699  $this->lng->txt("survey_questions"),
700  $this->ctrl->getLinkTarget($this, 'questions')
701  );
702 
703  $this->tabs_gui->addTab(
704  "info_short",
705  $this->lng->txt("info_short"),
706  $this->ctrl->getLinkTarget($this, "infoScreen")
707  );
708  }
709 
710  if ($this->checkPermissionBool('write')) {
711  $this->tabs_gui->addTab(
712  "settings",
713  $this->lng->txt("settings"),
714  $this->ctrl->getLinkTargetByClass(\ILIAS\SurveyQuestionPool\Settings\SettingsGUI::class)
715  );
716 
717  // meta data
718  $mdgui = new ilObjectMetaDataGUI($this->object);
719  $mdtab = $mdgui->getTab();
720  if ($mdtab) {
721  $this->tabs_gui->addTab(
722  "meta_data",
723  $this->lng->txt("meta_data"),
724  $mdtab
725  );
726  }
727 
728  // export
729  $this->tabs_gui->addTab(
730  "export",
731  $this->lng->txt("export"),
732  $this->ctrl->getLinkTarget($this, 'export')
733  );
734  }
735 
736  if ($this->checkPermissionBool("edit_permission")) {
737  $this->tabs_gui->addTab(
738  "perm_settings",
739  $this->lng->txt("perm_settings"),
740  $this->ctrl->getLinkTargetByClass(array(get_class($this),'ilpermissiongui'), "perm")
741  );
742  }
743  }
744 
748  public function saveObligatoryObject(): void
749  {
750  $obligatory = $this->edit_request->getObligatory();
751  $this->object->setObligatoryStates($obligatory);
752 
753  $this->tpl->setOnScreenMessage('success', $this->lng->txt('msg_obj_modified'), true);
754  $this->ctrl->redirect($this, "questions");
755  }
756 
760  public static function _goto(string $a_target): void
761  {
762  global $DIC;
763  $main_tpl = $DIC->ui()->mainTemplate();
764 
765  $ctrl = $DIC->ctrl();
766  $ilAccess = $DIC->access();
767  $lng = $DIC->language();
768 
769  if ($ilAccess->checkAccess("visible", "", $a_target) ||
770  $ilAccess->checkAccess("read", "", $a_target)) {
771  $ctrl->setParameterByClass("ilObjSurveyQuestionPoolGUI", "ref_id", $a_target);
772  $ctrl->redirectByClass("ilObjSurveyQuestionPoolGUI", "infoScreen");
773  } elseif ($ilAccess->checkAccess("read", "", ROOT_FOLDER_ID)) {
774  $main_tpl->setOnScreenMessage('failure', sprintf(
775  $lng->txt("msg_no_perm_read_item"),
777  ), true);
779  }
780  }
781 }
Class ilObjSurveyQuestionPoolGUI.
importQuestionsObject()
display the import form to import questions into the question pool
static getStyleSheetLocation(string $mode="output", string $a_css_name="")
get full style sheet file name (path inclusive) of current user
Class ilObjectMetaDataGUI.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getLogger(string $a_component_id)
Get component logger.
writePref(string $a_keyword, string $a_value)
This class represents a selection list property in a property form.
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
Class ilObjSurveyQuestionPool.
confirmDeleteExportFileObject()
confirmation screen for export file deletion
GUI class for the workflow of copying objects.
const ROOT_FOLDER_ID
Definition: constants.php:32
ILIAS SurveyQuestionPool InternalGUIService $gui
copyObject()
Copies checked questions in the questionpool to a clipboard.
prepareOutput(bool $show_sub_objects=true)
This class represents a file property in a property form.
Interface Observer Contains several chained tasks and infos about them.
Help GUI class.
saveObligatoryObject()
Save obligatory states.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setContent(string $a_html)
Sets content for standard template.
setParameterByClass(string $a_class, string $a_parameter, $a_value)
propertiesObject(?ilPropertyFormGUI $a_form=null)
Edit question pool properties.
static _getQuestionTypeName(string $type_tag)
Return the translation for a given question type.
static _goto(string $a_target)
Redirect script to call a survey question pool reference id.
static _getQuestionType(int $question_id)
Returns the question type of a question with a given id.
setSuffixes(array $a_suffixes)
static _getTitle(int $question_id)
Returns the question title of a question with a given id.
ILIAS SurveyQuestionPool Editing EditManager $edit_manager
const IL_CAL_UNIX
redirectByClass( $a_class, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
static _lookupObjId(int $ref_id)
static deliverFileLegacy(string $a_file, ?string $a_filename=null, ?string $a_mime=null, ?bool $isInline=false, ?bool $removeAfterDelivery=false, ?bool $a_exit_after=true)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
deleteUploadedImportFile(string $path_to_uploaded_file_in_temp_dir)
ilLanguage $lng
static _getQuestionGUI(?string $questiontype, int $question_id=-1)
Creates a question gui representation.
importFile(string $file_to_import, string $path_to_uploaded_file_in_temp_dir)
static http()
Fetches the global http state from ILIAS.
infoScreenObject()
this one is called from the info button in the repository
ilGlobalTemplateInterface $tpl
static _lookupTitle(int $obj_id)
setScreenIdComponent(string $a_comp)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilObjectGUI Basic methods of all Output classes.
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
global $DIC
Definition: shib_login.php:22
ilToolbarGUI $toolbar
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static moveUploadedFile(string $a_file, string $a_name, string $a_target, bool $a_raise_errors=true, string $a_mode="move_uploaded")
move uploaded file
putObjectInTree(ilObject $obj, ?int $parent_node_id=null)
Add object to tree at given position.
$txt
Definition: error.php:31
Last visited history for repository items.
ilErrorHandling $error
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
static redirect(string $a_script)
deleteQuestionsObject()
Creates a confirmation form to delete questions from the question pool.
__construct(Container $dic, ilPlugin $plugin)
static _getQuestiontypes()
Get all available question types.
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
uploadQuestionsObject()
imports question(s) into the questionpool
questionsObject()
list questions of question pool
moveObject()
mark one or more question objects for moving
ilLocatorGUI $locator
static clear(string $a_var)
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
pasteObject()
paste questions from the clipboard into the question pool
static _gotoRepositoryRoot(bool $raise_error=false)
Goto repository root.