3 declare(strict_types=1);
37 $this->main_tpl = $DIC->ui()->mainTemplate();
50 $this->dic->ctrl()->getNextClass($this);
51 $cmd = $this->dic->ctrl()->getCmd(self::DEFAULT_CMD);
54 case method_exists($this, $cmd):
59 $this->{self::DEFAULT_CMD}();
70 $this->dic->ui()->mainTemplate()->setContent($form->getHTML());
75 $this->dic->language()->loadLanguageModule(
'cntr');
78 $form->setFormAction($this->dic->ctrl()->getFormAction($this,
'saveForm'));
79 $form->setTitle($this->dic->language()->txt(
'icon_settings'));
81 $this->addSettingsToForm($form);
83 $form->addCommandButton(
'saveForm', $this->dic->language()->txt(
'save'));
91 $customIconFactory = $this->dic[
'object.customicons.factory'];
92 $customIcon = $customIconFactory->getByObjId($this->
object->getId(), $this->
object->getType());
95 if (is_string($this->uploadFieldInformationText) && $this->uploadFieldInformationText !==
'') {
96 $icon->
setInfo($this->uploadFieldInformationText);
99 $icon->setSuffixes($customIcon->getSupportedFileExtensions());
100 $icon->setUseCache(
false);
101 if ($customIcon->exists()) {
102 $icon->setImage($customIcon->getFullPath());
113 $this->saveIcon($form);
115 $this->main_tpl->setOnScreenMessage(
'success', $this->dic->language()->txt(
'msg_obj_modified'),
true);
116 $this->dic->ctrl()->redirect($this,
'showForm');
126 $customIconFactory = $this->dic[
'object.customicons.factory'];
127 $customIcon = $customIconFactory->getByObjId($this->
object->getId(), $this->
object->getType());
130 $fileData = (array) $form->
getInput(
'icon');
133 if ($item && $item->getDeletionFlag()) {
134 $customIcon->remove();
137 if (isset($fileData[
'tmp_name']) && $fileData[
'tmp_name']) {
138 $customIcon->saveFromHttpRequest();
string $uploadFieldInformationText
setUploadFieldInformationText(?string $uploadFieldInformationText)
__construct(Container $dic, $parentGui, ilObject $object)
Customizing of pimple-DIC for ILIAS.
ilGlobalTemplateInterface $main_tpl
showForm(?ilPropertyFormGUI $form=null)