35 protected \ILIAS\DI\LoggingServices
$ilLog;
41 $this->tpl = $DIC->ui()->mainTemplate();
42 $this->
ctrl = $DIC->ctrl();
44 $this->parent_object = $parent_gui->getObject();
45 $this->tabs_gui = $DIC->tabs();
46 $this->
toolbar = $DIC->toolbar();
47 $this->
lng = $DIC->language();
48 $this->
ilLog = $DIC->logger();
50 $this->
lng->loadLanguageModule(
'user');
51 if (!$this->
ilAccess->checkaccess(
'write',
'', $this->parent_gui->getObject()->getRefId())) {
52 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'),
true);
58 $cmd = $this->
ctrl->getCmd();
60 $this->tabs_gui->clearTargets();
61 $this->tabs_gui->setBackTarget(
62 $this->
lng->txt(
"back"),
63 $this->
ctrl->getLinkTargetByClass(
'ilOrgUnitSimpleImportGUI',
'chooseImport')
67 case 'userImportScreen':
81 $this->tpl->setContent($form->getHTML());
89 $form->addItem($input);
90 $form->setFormAction($this->
ctrl->getFormAction($this));
91 $form->addCommandButton(
'startImport', $this->
lng->txt(
'import'));
99 if (!$form->checkInput()) {
100 $this->tpl->setContent($form->getHTML());
102 $file = $form->getInput(
'import_file');
105 $importer->simpleUserImport($file[
'tmp_name']);
107 $this->
ilLog->
write($e->getMessage() .
' - ' . $e->getTraceAsString());
108 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'import_failed'),
true);
109 $this->
ctrl->redirect($this,
'render');
119 $this->tpl->setOnScreenMessage(
121 sprintf($this->
lng->txt(
'user_import_successful'), $stats[
'created'], $stats[
'removed']),
126 $msg = $this->
lng->txt(
'import_terminated_with_warnings') .
'<br>';
128 $msg .=
'-' . $this->
lng->txt($warning[
'lang_var']) .
' (Import ID: ' . $warning[
'import_id'] .
')<br>';
130 $this->tpl->setOnScreenMessage(
'info', $msg,
true);
133 $msg = $this->
lng->txt(
'import_terminated_with_errors') .
'<br>';
134 foreach ($importer->
getErrors() as $warning) {
135 $msg .=
'- ' . $this->
lng->txt($warning[
'lang_var']) .
' (Import ID: ' . $warning[
'import_id'] .
')<br>';
137 $this->tpl->setOnScreenMessage(
'failure', $msg,
true);
ilGlobalTemplateInterface $tpl
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(object $parent_gui)
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...
displayImportResults(ilOrgUnitImporter $importer)
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...
ilAccessHandler $ilAccess
write(string $a_msg, $a_log_level=null)
logging
ILIAS DI LoggingServices $ilLog