33 protected \ILIAS\COPage\PC\InteractiveImage\IIMManager
$iim_manager;
34 protected \ILIAS\COPage\PC\InteractiveImage\GUIService
$iim_gui;
46 $this->tpl = $DIC[
"tpl"];
47 $this->
lng = $DIC->language();
48 $this->
tabs = $DIC->tabs();
49 $this->
ctrl = $DIC->ctrl();
50 $this->
toolbar = $DIC->toolbar();
52 $this->iim_gui = $DIC->copage()->internal()->gui()->pc()->interactiveImage();
53 $this->iim_manager = $DIC->copage()->internal()->domain()->pc()->interactiveImage();
62 $next_class = $this->
ctrl->getNextClass($this);
65 $cmd = $this->
ctrl->getCmd();
67 if (is_object($this->content_obj)) {
72 switch ($next_class) {
73 case strtolower(ilRepoStandardUploadHandlerGUI::class):
85 switch ($this->request->getString(
"mode")) {
88 $gui = $form->getRepoStandardUploadHandlerGUI(
"overlay_file");
91 case "backgroundUpdate":
93 $gui = $form->getRepoStandardUploadHandlerGUI(
"input_file");
98 $gui = $form->getRepoStandardUploadHandlerGUI(
"input_file");
108 bool $a_create =
false,
109 bool $a_change_obj_ref =
false 116 $ilTabs->setBackTarget(
118 (string) $ilCtrl->getParentReturn($this)
127 string $a_post_cmd =
"edpost",
128 string $a_submit_cmd =
"",
129 bool $a_input_error =
false 135 $this->tpl->setOnScreenMessage(
'info',
$lng->
txt(
"cont_iim_create_info"));
138 $form->setFormAction($ilCtrl->getFormAction($this));
172 if ($a_mode ==
"edit") {
173 $fi->setImage($this->content_obj->getBaseThumbnailTarget());
175 $fi->setRequired(
true);
179 if ($a_mode ==
"edit") {
182 $ti->setMaxLength(200);
188 if ($a_mode ==
"create") {
189 $form->setTitle(
$lng->
txt(
"cont_ed_insert_iim"));
190 $form->addCommandButton(
"create_iim",
$lng->
txt(
"save"));
191 $form->addCommandButton(
"cancelCreate",
$lng->
txt(
"cancel"));
195 $this->content_obj->getDomDoc(),
198 $this->content_obj->getPCId(),
201 $ti->setValue($std_alias_item->getCaption());
203 $form->setTitle(
$lng->
txt(
"cont_edit_base_image"));
204 $form->addCommandButton(
"update",
$lng->
txt(
"save"));
207 $form->setFormAction($ilCtrl->getFormAction($this));
222 if ($form->checkInput()) {
223 $mob = $this->content_obj->getMediaObject();
225 $std_item = $mob->getMediaItem(
"Standard");
226 $location = $_FILES[
'image_file'][
'name'];
228 if (
$location !=
"" && is_file($_FILES[
'image_file'][
'tmp_name'])) {
229 $file = $mob_dir .
"/" . $_FILES[
'image_file'][
'name'];
231 $_FILES[
'image_file'][
'tmp_name'],
232 $_FILES[
'image_file'][
'name'],
238 $location = $_FILES[
'image_file'][
'name'];
239 $std_item->setFormat($format);
241 $std_item->setLocationType(
"LocalFile");
242 $mob->setDescription($format);
248 $this->content_obj->getDomDoc(),
251 $this->content_obj->getPCId(),
255 $form->getInput(
"caption")
257 $this->edit_repo->setPageError($this->pg_obj->update());
258 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"msg_obj_modified"),
true);
261 $ilCtrl->redirectByClass(
"ilpcinteractiveimagegui",
"editBaseImage");
271 $this->content_obj->getDomDoc(),
274 $this->content_obj->getPCId(),
290 $this->content_obj->getPCId(),
303 $this->content_obj->getDomDoc(),
306 $this->content_obj->getPCId(),
319 $this->content_obj->getDomDoc(),
322 $this->content_obj->getPCId(),
335 $this->content_obj->getDomDoc(),
338 $this->content_obj->getPCId(),
357 $this->tpl->setOnScreenMessage(
'info',
$lng->
txt(
"cont_iim_overlay_info"));
359 $ilTabs->setTabActive(
"list_overlays");
361 $ilToolbar->addButton(
363 $ilCtrl->getLinkTarget($this,
"addOverlayImages")
369 $this->content_obj->getMediaObject()
396 $form->setTitle(
$lng->
txt(
"cont_add_images"));
397 $form->setFormAction($ilCtrl->getFormAction($this));
401 $fi->
setSuffixes(array(
"gif",
"jpeg",
"jpg",
"png"));
402 $fi->setFilenames(array(0 =>
''));
403 $fi->setRequired(
true);
406 $form->addCommandButton(
"uploadOverlayImages",
$lng->
txt(
"upload"));
407 $form->addCommandButton(
"listOverlayImages",
$lng->
txt(
"cancel"));
418 if ($form->checkInput()) {
419 if (is_array($_FILES[
"ovfile"][
"name"])) {
420 foreach ($_FILES[
"ovfile"][
"name"] as $k => $v) {
421 $name = $_FILES[
"ovfile"][
"name"][$k];
422 $tmp_name = $_FILES[
"ovfile"][
"tmp_name"][$k];
424 $this->content_obj->getMediaObject()->uploadAdditionalFile(
429 $piname = pathinfo($name);
430 $this->content_obj->getMediaObject()->makeThumbnail(
432 basename($name,
"." . $piname[
'extension']) .
".png" 436 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"msg_obj_modified"));
437 $ilCtrl->redirect($this,
"listOverlayImages");
439 $form->setValuesByPost();
453 $files = $this->request->getStringArray(
"file");
454 if (count($files) == 0) {
455 $this->tpl->setOnScreenMessage(
'failure',
$lng->
txt(
"no_checkbox"),
true);
456 $ilCtrl->redirect($this,
"listOverlayImages");
459 $cgui->setFormAction($ilCtrl->getFormAction($this));
460 $cgui->setHeaderText(
$lng->
txt(
"cont_really_delete_overlays"));
461 $cgui->setCancel(
$lng->
txt(
"cancel"),
"listOverlayImages");
462 $cgui->setConfirm(
$lng->
txt(
"delete"),
"deleteOverlays");
464 foreach ($files as $i =>
$d) {
465 $cgui->addItem(
"file[]", $i, $i);
477 $files = $this->request->getStringArray(
"file");
478 if (count($files) > 0) {
479 foreach ($files as
$f) {
481 $this->content_obj->getMediaObject()
482 ->removeAdditionalFile(
"overlays/" . $f);
485 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"cont_overlays_have_been_deleted"),
true);
487 $ilCtrl->redirect($this,
"listOverlayImages");
495 public function listContentPopups():
void 503 $this->tpl->setOnScreenMessage(
'info',
$lng->
txt(
"cont_iim_content_popups_info"));
505 $ilTabs->setTabActive(
"content_popups");
507 $ilToolbar->addButton(
509 $ilCtrl->getLinkTarget($this,
"addPopup")
527 $this->content_obj->addContentPopup();
528 $this->pg_obj->update();
529 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"msg_obj_modified"),
true);
530 $ilCtrl->redirect($this,
"listContentPopups");
538 $titles = $this->request->getStringArray(
"title");
539 if (count($titles) > 0) {
540 $this->content_obj->savePopups($titles);
541 $this->pg_obj->update();
542 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"msg_obj_modified"),
true);
544 $ilCtrl->redirect($this,
"listContentPopups");
556 $tids = $this->request->getStringArray(
"tid");
557 $titles = $this->request->getStringArray(
"title");
559 if (count($tids) == 0) {
560 $this->tpl->setOnScreenMessage(
'failure',
$lng->
txt(
"no_checkbox"),
true);
561 $ilCtrl->redirect($this,
"listContentPopups");
564 $cgui->setFormAction($ilCtrl->getFormAction($this));
565 $cgui->setHeaderText(
$lng->
txt(
"cont_really_delete_popups"));
566 $cgui->setCancel(
$lng->
txt(
"cancel"),
"listContentPopups");
567 $cgui->setConfirm(
$lng->
txt(
"delete"),
"deletePopups");
569 foreach ($tids as $i =>
$d) {
570 $cgui->addItem(
"tid[]", $i, $titles[$i]);
582 $tids = $this->request->getStringArray(
"tid");
584 if (count($tids) > 0) {
585 foreach ($tids as
$id) {
586 $id = explode(
":", $id);
587 $this->content_obj->deletePopup($id[0], $id[1]);
589 $this->pg_obj->update();
590 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"cont_popups_have_been_deleted"),
true);
592 $ilCtrl->redirect($this,
"listContentPopups");
597 $this->
ctrl->setParameter($this,
"cname",
"InteractiveImage");
598 $form = $this->gui->form([self::class],
"#")
600 ->section(
"f", $this->
lng->txt(
"cont_ed_insert_iim"))
603 $this->
lng->txt(
"file"),
604 \Closure::fromCallable([$this,
'handleUploadResult']),
619 return $this->iim_manager->handleUploadResult($upload, $result);
627 $this->tpl->setContent($this->iim_gui->editorInit()->getInitHtml());
634 $this->iim_gui->editorInit()->initUI($this->tpl);
639 if (is_null(
$path)) {
640 $path = [self::class];
643 $f = $this->gui->form(
$path,
"#")
647 $this->
lng->txt(
"file"),
648 \Closure::fromCallable([$this,
'handleOverlayUpload']),
652 [
"image/png",
"image/jpeg",
"image/gif"],
664 return $this->iim_manager->handleOverlayUpload(
665 $this->content_obj->getMediaObject(),
673 $f = $this->gui->form(
null,
"#")
676 $this->
lng->txt(
"title")
683 if (is_null(
$path)) {
684 $path = [self::class];
687 $f = $this->gui->form(
$path,
"#")
691 $this->
lng->txt(
"file"),
692 \Closure::fromCallable([$this,
'handleBackgroundUpload']),
696 [
"image/png",
"image/jpeg",
"image/gif"],
701 $this->
lng->txt(
"cont_caption")
711 $this->log->debug(
">>>");
712 $this->log->debug(
"Start upload");
713 $this->log->debug($this->content_obj->getMediaObject()->getId());
714 return $this->iim_manager->handleUploadResult(
717 $this->content_obj->getMediaObject()
ilPageContent $content_obj
centerAlign()
Align media object to center.
insert(string $a_post_cmd="edpost", string $a_submit_cmd="", bool $a_input_error=false)
Insert new media object form.
__construct(ilPageObject $a_pg_obj, ?ilPageContent $a_content_obj, string $a_hier_id, string $a_pc_id="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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...
handleUploadResult(FileUpload $upload, UploadResult $result)
Interface Observer Contains several chained tasks and infos about them.
initInteractiveImageEditor()
addOverlayImages(?ilPropertyFormGUI $a_form=null)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
getTabs(bool $a_create=false, bool $a_change_obj_ref=false)
Add tabs to ilTabsGUI object.
setContent(string $a_html)
Sets content for standard template.
initForm(string $a_mode="edit")
handleOverlayUpload(FileUpload $upload, UploadResult $result)
Content object of ilPageObject (see ILIAS DTD).
setTabActive(string $a_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
User Interface for Editing of Page Content Objects (Paragraphs, Tables, ...)
getOverlayUploadFormAdapter(?array $path=null)
redirect(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
forwardFormToUploadHandler()
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
handleBackgroundUpload(FileUpload $upload, UploadResult $result)
static getBaseContentStylePath()
ilGlobalTemplateInterface $tpl
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
Class BasicHandlerResult.
rightFloatAlign()
align media object to right, floating text
static moveUploadedFile(string $a_file, string $a_name, string $a_target, bool $a_raise_errors=true, string $a_mode="move_uploaded")
move uploaded file
setTitleIcon(string $a_icon_path, string $a_icon_desc="")
set title icon
update()
Update (base image)
activateTab(string $a_id)
leftFloatAlign()
align media object to left, floating text
TableGUI class for interactive image overlays.
leftAlign()
align media object to left
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
ILIAS COPage PC InteractiveImage GUIService $iim_gui
getBackgroundPropertiesFormAdapter(?array $path=null)
rightAlign()
align media object to right
User interface class for interactive images.
ILIAS COPage InternalGUIService $gui
ILIAS COPage PC InteractiveImage IIMManager $iim_manager