19 declare(strict_types=1);
51 $this->
lng = $domain_service->lng();
52 $this->
lng->loadLanguageModule(
"content");
54 $this->request = $gui_service
56 $this->gui = $gui_service;
58 $images = $this->request->getFiles();
59 if (count($images) == 1 && $manager->filenameExists(current($images))) {
60 $this->current_image = current($images);
61 $this->current_images = $images;
63 $this->current_images = array_filter($images,
function ($i) use ($manager) {
64 return $manager->filenameExists($i);
69 $this->tpl = $gui_service->mainTemplate();
74 $ctrl = $this->gui->ctrl();
76 $next_class = $ctrl->getNextClass($this);
77 $cmd = $ctrl->getCmd(
"listImages");
79 switch ($next_class) {
81 case strtolower(ilRepoStandardUploadHandlerGUI::class):
83 $gui = $form->getRepoStandardUploadHandlerGUI(
"image");
84 $ctrl->forwardCommand($gui);
89 "listImages",
"addImage",
"cancelUpload",
"uploadImage",
"deleteImage",
90 "resizeImageForm",
"resizeImage" 99 $tpl = $this->gui->mainTemplate();
100 $ilToolbar = $this->gui->toolbar();
101 $ilCtrl = $this->gui->ctrl();
104 if ($this->access_manager->checkWrite()) {
105 $ilToolbar->addButton(
106 $lng->
txt(
"sty_add_image"),
107 $ilCtrl->getLinkTarget($this,
"addImage")
114 $this->access_manager,
122 $tpl = $this->gui->mainTemplate();
130 $ilCtrl = $this->gui->ctrl();
132 $ilCtrl->redirect($this,
"listImages");
137 $tpl = $this->gui->mainTemplate();
138 $ilCtrl = $this->gui->ctrl();
139 $ilCtrl->redirect($this,
"listImages");
144 $form = $this->gui->form(self::class,
"uploadImage")
145 ->
section(
"image_section", $this->
lng->txt(
"sty_add_image"))
148 $this->
lng->txt(
"sty_image_file"),
153 [
"image/jpeg",
"image/png",
"image/gif",
"image/svg+xml"]
162 $this->manager->importFromUploadResult(
165 return new \ILIAS\FileUpload\Handler\BasicHandlerResult(
175 $ilCtrl = $this->gui->ctrl();
176 foreach ($this->current_images as $i) {
177 $this->manager->deleteByFilename($i);
179 $ilCtrl->redirect($this,
"listImages");
189 $ctrl = $this->gui->ctrl();
194 $image = $this->manager->getByFilename($this->current_image);
198 " / " . $lng->
txt(
"cont_height"),
"width_height");
200 $width_height->setHeight($image->getHeight());
201 $width_height->setWidth($image->getWidth());
202 $form->addItem($width_height);
206 $hi->setValue($this->current_image);
209 $form->addCommandButton(
"resizeImage", $lng->
txt(
"sty_resize"));
211 $form->setTitle($lng->
txt(
"sty_resize_image"));
212 $form->setFormAction($ctrl->getFormAction($this));
219 $ctrl = $this->gui->ctrl();
221 $main_tpl = $this->gui->mainTemplate();
224 if ($form->checkInput()) {
225 $wh = $form->getInput(
"width_height");
227 $this->manager->resizeImage(
228 $this->current_image,
229 (
int) ($wh[
"width"] ?? 0),
230 (
int) ($wh[
"height"] ?? 0),
231 (
bool) ($wh[
"const_prop"] ??
false)
234 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
235 $ctrl->redirect($this,
"listImages");
237 $form->setValuesByPost();
238 $main_tpl->setContent($form->getHTML());
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
Content style internal ui factory.
Interface Observer Contains several chained tasks and infos about them.
setContent(string $a_html)
Sets content for standard template.
ilGlobalTemplateInterface $tpl
Content InternalGUIService $gui
Access StyleAccessManager $access_manager
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Content StandardGUIRequest $request
Main business logic for content style images.
Content ImageManager $manager
TableGUI class for style editor (image list)
__construct(Content\InternalDomainService $domain_service, Content\InternalGUIService $gui_service, Access\StyleAccessManager $access_manager, Content\ImageManager $manager)
Manages access to content style editing.
handleImageUpload(\ILIAS\FileUpload\FileUpload $upload, \ILIAS\FileUpload\DTO\UploadResult $result)