40 protected \ILIAS\SurveyQuestionPool\InternalGUIService
$gui;
56 $this->nav_history = $DIC[
"ilNavigationHistory"];
57 $this->
toolbar = $DIC->toolbar();
58 $this->
help = $DIC[
"ilHelp"];
60 $this->
http = $DIC->http();
61 $this->archives = $DIC->archives();
62 $this->edit_request = $DIC->surveyQuestionPool()
67 $this->edit_manager = $DIC->surveyQuestionPool()
76 $this->edit_request->getRefId(),
80 $this->
lng->loadLanguageModule(
"survey");
81 $this->
ctrl->saveParameter($this, array(
"ref_id"));
83 $this->gui = $DIC->surveyQuestionPool()->internal()->gui();
98 $ilNavigationHistory->addItem(
100 "ilias.php?baseClass=ilObjSurveyQuestionPoolGUI&cmd=questions&ref_id=" . $this->ref_id,
108 $cmd = $this->
ctrl->getCmd(
"questions");
109 $next_class = $this->
ctrl->getNextClass($this);
110 $this->
ctrl->setReturn($this,
"questions");
112 if ($this->edit_request->getQuestionId() < 1) {
113 $q_type = $this->edit_request->getSelectedQuestionTypes();
116 $this->log->debug(
"- cmd=" . $cmd .
" next_class=" . $next_class);
117 switch ($next_class) {
118 case 'ilobjectmetadatagui':
119 $this->tabs_gui->activateTab(
"meta_data");
122 $this->
ctrl->forwardCommand($md_gui);
125 case 'ilpermissiongui':
127 $this->
ctrl->forwardCommand($perm_gui);
130 case 'ilobjectcopygui':
133 $this->
ctrl->forwardCommand($cp);
136 case 'ilinfoscreengui':
137 $this->tabs_gui->activateTab(
"info_short");
141 case "ilcommonactiondispatchergui":
143 $this->
ctrl->forwardCommand($gui);
146 case strtolower(\
ILIAS\SurveyQuestionPool\
Settings\SettingsGUI::class):
148 $this->tabs_gui->activateTab(
"settings");
149 $gui = $this->gui->settings()->settingsGUI(
151 $this->
object->getRefId()
153 $this->
ctrl->forwardCommand($gui);
156 case strtolower(ilExportGUI::class):
158 $this->
ctrl->forwardCommand($export);
169 $this->edit_request->getQuestionId()
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);
176 if ($q_gui->object->isComplete()) {
177 $this->tpl->setTitle($this->
lng->txt(
"question") .
": " . $q_gui->object->getTitle());
181 if (strtolower($this->edit_request->getBaseClass()) !==
"iladministrationgui" &&
183 $this->tpl->printToStdout();
192 $this->
ctrl->redirectByClass(\
ILIAS\SurveyQuestionPool\
Settings\SettingsGUI::class);
201 $qids = $this->edit_request->getQuestionIds();
202 if (count($qids) > 0) {
203 foreach ($qids as $key => $value) {
204 $this->
object->copyToClipboard($value);
206 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"spl_copy_insert_clipboard"),
true);
208 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"spl_copy_select_none"),
true);
210 $this->
ctrl->redirect($this,
"questions");
218 $qids = $this->edit_request->getQuestionIds();
219 if (count($qids) > 0) {
220 foreach ($qids as $key => $value) {
221 $this->
object->moveToClipboard($value);
223 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"spl_move_insert_clipboard"),
true);
225 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"spl_move_select_none"),
true);
227 $this->
ctrl->redirect($this,
"questions");
235 $qids = $this->edit_request->getQuestionIds();
236 if (count($qids) > 0) {
237 $this->createExportFileObject($qids);
239 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"qpl_export_select_none"));
246 $qids = $this->
http->wrapper()->query()->retrieve(
248 $this->
refinery->custom()->transformation(
function (
string $value) {
249 $value = urldecode($value);
250 return explode(
',', $value);
253 $this->createExportFileObject($qids);
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"));
272 $cgui->setHeaderText($this->
lng->txt(
"qpl_confirm_delete_questions"));
274 $cgui->setFormAction($this->
ctrl->getFormAction($this));
275 $cgui->setCancel($this->
lng->txt(
"cancel"),
"cancelDeleteQuestions");
276 $cgui->setConfirm($this->
lng->txt(
"confirm"),
"confirmDeleteQuestions");
278 $infos = $this->
object->getQuestionInfos($checked_questions);
279 foreach ($infos as
$data) {
280 $txt = $data[
"title"] .
" (" .
282 if ($data[
"description"]) {
283 $txt .=
"<div class=\"small\">" . $data[
"description"] .
"</div>";
286 $cgui->addItem(
"q_id[]", $data[
"id"],
$txt);
289 $this->tpl->setContent($cgui->getHTML());
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);
300 $this->
ctrl->redirect($this,
"questions");
306 $this->
ctrl->redirect($this,
"questions");
314 $clip_questions = $this->edit_manager->getQuestionsFromClipboard();
315 if (count($clip_questions) > 0) {
316 $this->
object->pasteFromClipboard();
318 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"spl_paste_no_objects"),
true);
320 $this->
ctrl->redirect($this,
"questions");
336 $form->setFormAction($this->
ctrl->getFormAction($this,
"uploadQuestions"));
337 $form->setTitle($this->
lng->txt(
"import_question"));
341 $fi->setRequired(
true);
344 $form->addCommandButton(
"uploadQuestions", $this->
lng->txt(
"import"));
345 $form->addCommandButton(
"questions", $this->
lng->txt(
"cancel"));
355 if ($form->checkInput()) {
357 $source = $_FILES[
"qtidoc"][
"tmp_name"];
359 if (($source ===
'none') || (!$source) || $_FILES[
"qtidoc"][
"error"] > UPLOAD_ERR_OK) {
363 if (!
$error && strpos(
"xml", $_FILES[
"qtidoc"][
"type"]) !==
false) {
369 $this->
object->createImportDirectory();
372 $full_path = $this->
object->getImportDirectory() .
"/" . $_FILES[
"qtidoc"][
"name"];
375 $_FILES[
"qtidoc"][
"tmp_name"],
376 $_FILES[
"qtidoc"][
"name"],
379 $source = $full_path;
380 $this->
object->importObject($source,
true);
383 $this->
ctrl->redirect($this,
"questions");
385 $form->setValuesByPost();
394 $table_gui->writeFilterToSession();
395 $this->
ctrl->redirect($this,
'questions');
401 $table_gui->resetFilter();
402 $this->
ctrl->redirect($this,
'questions');
410 $this->tabs_gui->activateTab(
"survey_questions");
414 $this->
object->purgeQuestions();
418 $qtypes->setValue($ilUser->getPref(
"svy_lastquestiontype"));
419 $ilToolbar->addInputItem($qtypes);
423 $options[
$data[
"type_tag"]] = $translation;
425 $qtypes->setOptions($options);
427 $ilToolbar->setFormAction($this->
ctrl->getFormAction($this));
430 $this->
lng->txt(
"svy_create_question"),
432 )->submit()->toToolbar();
434 $ilToolbar->addSeparator();
445 $arrFilter = array();
446 foreach ($table_gui->getFilterItems() as $item) {
447 if ($item->getValue() !==
false) {
448 $arrFilter[$item->getPostVar()] = $item->getValue();
451 $table_gui->setData($this->
object->getQuestionsData($arrFilter));
452 $this->tpl->setContent($table_gui->getHTML());
457 $this->update = $this->
object->update();
458 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"msg_obj_modified"),
true);
464 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"object_added"),
true);
467 "&baseClass=ilObjSurveyQuestionPoolGUI");
476 $export->listExportFiles();
482 public function createExportFileObject($questions =
null):
void 489 $survey_exp->buildExportFile($questions);
490 $this->
ctrl->redirect($this,
"export");
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");
504 if (count($files) > 1) {
505 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"select_max_one_item"),
true);
506 $this->
ctrl->redirect($this,
"export");
510 $export_dir = $this->
object->getExportDirectory();
512 $file = basename($files[0]);
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");
528 $this->tpl->setOnScreenMessage(
'question', $this->
lng->txt(
"info_delete_sure"));
530 $export_dir = $this->
object->getExportDirectory();
532 foreach ($files as $exp_file) {
533 $file_arr = explode(
"__", $exp_file);
534 $data[] = array(
'file' => $exp_file,
536 'size' => filesize($export_dir .
"/" . $exp_file)
539 $table_gui->setData(
$data);
540 $this->tpl->setVariable(
'ADM_CONTENT', $table_gui->getHTML());
546 $this->
ctrl->redirect($this,
"export");
551 $export_dir = $this->
object->getExportDirectory();
552 $files = $this->edit_request->getFiles();
553 foreach ($files as $file) {
554 $file = basename($file);
556 $exp_file = $export_dir .
"/" . $file;
557 $exp_dir = $export_dir .
"/" . substr($file, 0, -4);
558 if (is_file($exp_file)) {
561 if (is_dir($exp_dir)) {
565 $this->
ctrl->redirect($this,
"export");
576 "svy_lastquestiontype",
577 $this->edit_request->getSelectedQuestionTypes()
581 $this->edit_request->getSelectedQuestionTypes()
583 $q_gui->object->setObjId($this->
object->getId());
584 $q_gui->object->createNewQuestion();
586 $this->
ctrl->setParameterByClass(get_class($q_gui),
"q_id", $q_gui->object->getId());
587 $this->
ctrl->setParameterByClass(
589 "sel_question_types",
590 $this->edit_request->getSelectedQuestionTypes()
592 $this->
ctrl->redirectByClass(get_class($q_gui),
"editQuestion");
602 $this->edit_request->getPreview()
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");
614 $this->
ctrl->redirectByClass(ilInfoScreenGUI::class,
"showSummary");
627 $info->enablePrivateNotes();
630 $info->addMetaDataSections($this->
object->getId(), 0, $this->
object->getType());
632 $this->
ctrl->forwardCommand($info);
635 protected function importFile(
string $file_to_import,
string $path_to_uploaded_file_in_temp_dir): void
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);
646 $newObj->setTitle(
"dummy");
647 $newObj->create(
true);
651 $newObj->importObject($file_to_import);
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);
659 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"object_imported"),
true);
661 "&baseClass=ilObjSurveyQuestionPoolGUI");
667 switch ($this->
ctrl->getCmd()) {
673 $ilLocator->addItem($this->
object->getTitle(), $this->
ctrl->getLinkTarget($this,
""),
"", $this->edit_request->getRefId());
676 if ($this->edit_request->getQuestionId() > 0) {
677 $q_id = $this->edit_request->getQuestionId();
682 $this->
ctrl->setParameterByClass($q_type,
"q_id", $q_id);
685 $this->
ctrl->getLinkTargetByClass($q_type,
"editQuestion")
697 $this->tabs_gui->addTab(
699 $this->
lng->txt(
"survey_questions"),
700 $this->
ctrl->getLinkTarget($this,
'questions')
703 $this->tabs_gui->addTab(
705 $this->
lng->txt(
"info_short"),
706 $this->
ctrl->getLinkTarget($this,
"infoScreen")
711 $this->tabs_gui->addTab(
713 $this->
lng->txt(
"settings"),
714 $this->
ctrl->getLinkTargetByClass(\
ILIAS\SurveyQuestionPool\
Settings\SettingsGUI::class)
719 $mdtab = $mdgui->getTab();
721 $this->tabs_gui->addTab(
723 $this->
lng->txt(
"meta_data"),
729 $this->tabs_gui->addTab(
731 $this->
lng->txt(
"export"),
732 $this->
ctrl->getLinkTarget($this,
'export')
737 $this->tabs_gui->addTab(
739 $this->
lng->txt(
"perm_settings"),
740 $this->
ctrl->getLinkTargetByClass(array(get_class($this),
'ilpermissiongui'),
"perm")
750 $obligatory = $this->edit_request->getObligatory();
751 $this->
object->setObligatoryStates($obligatory);
753 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_obj_modified'),
true);
754 $this->
ctrl->redirect($this,
"questions");
760 public static function _goto(
string $a_target): void
763 $main_tpl = $DIC->ui()->mainTemplate();
765 $ctrl = $DIC->ctrl();
766 $ilAccess = $DIC->access();
767 $lng = $DIC->language();
769 if ($ilAccess->checkAccess(
"visible",
"", $a_target) ||
770 $ilAccess->checkAccess(
"read",
"", $a_target)) {
774 $main_tpl->setOnScreenMessage(
'failure', sprintf(
775 $lng->
txt(
"msg_no_perm_read_item"),
Class ilObjSurveyQuestionPoolGUI.
cancelDeleteQuestionsObject()
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
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
confirmDeleteQuestionsObject()
resetfilterQuestionBrowserObject()
static getLogger(string $a_component_id)
Get component logger.
previewObject()
create preview of object
writePref(string $a_keyword, string $a_value)
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.
ILIAS SurveyQuestionPool InternalGUIService $gui
copyObject()
Copies checked questions in the questionpool to a clipboard.
exportObject()
list all export files
EditingGUIRequest $edit_request
prepareOutput(bool $show_sub_objects=true)
Interface Observer Contains several chained tasks and infos about them.
RefineryFactory $refinery
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.
static _getTitle(int $question_id)
Returns the question title of a question with a given id.
ilNavigationHistory $nav_history
ILIAS SurveyQuestionPool Editing EditManager $edit_manager
downloadExportFileObject()
download export file
cancelDeleteExportFileObject()
redirectByClass( $a_class, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
exportQuestionExportTabObject()
afterSave(ilObject $new_object)
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)
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)
createQuestionObject()
create new question
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
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.
Last visited history for repository items.
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.
infoScreenForward()
show information screen
filterQuestionBrowserObject()
__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
static clear(string $a_var)
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
exportQuestionObject()
export a question
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.