35 protected \ILIAS\DI\LoggingServices
$ilLog;
40 $this->tpl = $DIC->ui()->mainTemplate();
41 $this->
ctrl = $DIC->ctrl();
43 $this->parent_object = $parent_gui->
getObject();
44 $this->tabs_gui = $DIC->tabs();
45 $this->
toolbar = $DIC->toolbar();
46 $this->
lng = $DIC->language();
48 $this->
lng->loadLanguageModule(
'user');
49 $this->
ilLog = $DIC->logger();
51 $this->may_create_orgus = $this->
ilAccess->checkAccess(
"create_orgu",
"", $this->parent_gui->getRefId(),
'orgu');
54 if (!$this->may_create_orgus) {
55 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"permission_denied"),
true);
64 $cmd = $this->
ctrl->getCmd();
71 $this->tabs_gui->clearTargets();
72 $this->tabs_gui->setBackTarget(
73 $this->
lng->txt(
"back"),
74 $this->
ctrl->getLinkTarget($this,
'chooseImport')
79 $this->tabs_gui->clearTargets();
80 $this->tabs_gui->setBackTarget(
81 $this->
lng->txt(
"back"),
82 $this->
ctrl->getLinkTarget($this,
'chooseImport')
93 if (!$this->may_create_orgus || !$this->is_top_level_orgu) {
94 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"msg_no_perm_edit"));
95 $this->
ctrl->redirectByClass(
'ilinfoscreengui',
'');
98 $this->tabs_gui->setTabActive(
'view_content');
99 $this->tabs_gui->removeSubTab(
"page_editor");
100 $this->tabs_gui->removeSubTab(
"ordering");
102 if ($this->may_create_orgus && $this->is_top_level_orgu) {
104 $this->
lng->txt(
"simple_import"),
105 $this->
ctrl->getLinkTargetByClass(
"ilOrgUnitSimpleImportGUI",
"importScreen")
108 $this->
lng->txt(
"simple_user_import"),
109 $this->
ctrl->getLinkTargetByClass(
"ilOrgUnitSimpleUserImportGUI",
"userImportScreen")
116 $form = $this->
initForm(
"startImport");
117 $this->tpl->setContent($form->getHTML());
125 $input->setSuffixes(array(
'zip',
'xml'));
126 $form->addItem($input);
127 $form->setFormAction($this->
ctrl->getFormAction($this));
128 $form->addCommandButton($submit_action, $this->
lng->txt(
"import"));
135 $form = $this->
initForm(
"startImport");
136 if (!$form->checkInput()) {
137 $this->tpl->setContent($form->getHTML());
139 $file = $form->getInput(
"import_file");
142 $file_path = $file[
"tmp_name"];
143 $file_type = pathinfo($file[
"name"], PATHINFO_EXTENSION);
144 $file_name = pathinfo($file[
"name"], PATHINFO_FILENAME);
146 if ($file_type ==
"zip") {
147 $extract_path = $file_path .
'_extracted/';
148 $extracted_file = $extract_path . $file_name .
'/manifest.xml';
150 $zip =
new ZipArchive();
151 $res = $zip->open($file_path);
153 $zip->extractTo($extract_path);
156 if (file_exists($extracted_file)) {
157 $file_path = $extracted_file;
162 $importer->simpleImport($file_path);
164 $this->
ilLog->
write($e->getMessage() .
" - " . $e->getTraceAsString());
165 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"import_failed"),
true);
166 $this->
ctrl->redirect($this,
"render");
177 if (!$importer->hasErrors() && !$importer->hasWarnings()) {
178 $stats = $importer->getStats();
179 $this->tpl->setOnScreenMessage(
181 sprintf($this->
lng->txt(
"import_successful"), $stats[
"created"], $stats[
"updated"], $stats[
"deleted"]),
185 if ($importer->hasWarnings()) {
186 $msg = $this->
lng->txt(
"import_terminated_with_warnings") .
" <br/>";
187 foreach ($importer->getWarnings() as $warning) {
188 $msg .=
"-" . $this->
lng->txt($warning[
"lang_var"]) .
" (Import ID: " . $warning[
"import_id"] .
")<br />";
190 $this->tpl->setOnScreenMessage(
'info', $msg,
true);
192 if ($importer->hasErrors()) {
193 $msg = $this->
lng->txt(
"import_terminated_with_errors") .
"<br/>";
194 foreach ($importer->getErrors() as $warning) {
195 $msg .=
"- " . $this->
lng->txt($warning[
"lang_var"]) .
" (Import ID: " . $warning[
"import_id"] .
")<br />";
197 $this->tpl->setOnScreenMessage(
'failure', $msg,
true);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilAccessHandler $ilAccess
ilGlobalTemplateInterface $tpl
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(ilObjectGUI $parent_gui)
ILIAS DI LoggingServices $ilLog
Class ilObjectGUI Basic methods of all Output classes.
write(string $a_msg, $a_log_level=null)
logging
displayImportResults($importer)