54 $ilCtrl = $DIC[
'ilCtrl'];
55 $ilTabs = $DIC[
'ilTabs'];
56 $ilToolbar = $DIC[
'ilToolbar'];
60 $this->ctrl = $ilCtrl;
61 $this->parent_gui = $parent_gui;
62 $this->parent_object = $parent_gui->object;
63 $this->tabs_gui = $this->parent_gui->tabs_gui;
64 $this->toolbar = $ilToolbar;
67 $this->lng->loadLanguageModule(
'user');
68 if (!$this->
ilAccess->checkaccess(
"write",
"", $this->parent_gui->object->getRefId())) {
79 $cmd = $this->ctrl->getCmd();
97 $this->tpl->setContent(
$form->getHTML());
105 $input->setValue($this->parent_object->getImportId());
106 $form->addItem($input);
107 $form->setFormAction($this->ctrl->getFormAction($this));
108 $form->addCommandButton(
"update", $this->lng->txt(
"save"));
117 $form->setValuesByPost();
118 if (
$form->checkInput()) {
119 $this->parent_object->setImportId(
$form->getItemByPostVar(
"ext_id")->getValue());
120 $this->parent_object->update();
121 ilUtil::sendSuccess($this->lng->txt(
"ext_id_updated"),
true);
122 $this->ctrl->redirect($this,
"edit");
124 $this->tpl->setContent(
$form->getHTML());
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.