28 protected \ILIAS\DI\Container
$DIC;
30 protected \ilLanguage
$lng;
42 $this->
lng = $DIC->language();
44 $this->
ctrl = $DIC->ctrl();
45 $this->
ctrl->saveParameter($parent_gui,
'arid');
55 abstract public function fillForm(): void;
57 abstract protected function fillObject(): bool;
64 if ($this->
object->getId()) {
65 $this->
object->update();
67 $this->
object->create();
70 return $this->
object->getId();
75 if (!$this->
object->getId()) {
87 private function txt(
string $key): string
89 return $this->
lng->txt($key);
92 private function infoTxt(
string $key): string
94 return $this->
lng->txt($key .
'_info');
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)