ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilPCIIMOverlaysTableGUI.php
Go to the documentation of this file.
1 <?php
2 
20 
27 {
31 
32  public function __construct(
33  object $a_parent_obj,
34  string $a_parent_cmd,
35  $a_mob
36  ) {
37  global $DIC;
38 
39  $this->ctrl = $DIC->ctrl();
40  $this->lng = $DIC->language();
41  $this->access = $DIC->access();
42  $ilCtrl = $DIC->ctrl();
43  $lng = $DIC->language();
44  $this->iim_manager = $DIC->copage()->internal()->domain()->pc()->interactiveImage();
45 
46  parent::__construct($a_parent_obj, $a_parent_cmd);
47  $this->mob = $a_mob;
48  $this->setData($this->getOverlays());
49  $this->setTitle($lng->txt("cont_overlay_images"));
50 
51  $this->addColumn("", "", "1", true);
52  $this->addColumn($this->lng->txt("thumbnail"), "", "20px");
53  $this->addColumn($this->lng->txt("filename"));
54 
55  $this->setFormAction($ilCtrl->getFormAction($a_parent_obj));
56  $this->setRowTemplate("tpl.iim_overlays_row.html", "components/ILIAS/COPage");
57 
58  $this->addMultiCommand("confirmDeleteOverlays", $lng->txt("delete"));
59  }
60 
61  public function getOverlays(): array
62  {
63  $ov = array();
64  $files = $this->mob->getFilesOfDirectory("/overlays");
65  foreach ($files as $f) {
66  $ov[] = array("filename" => $f);
67  }
68  return $ov;
69  }
70 
71  protected function fillRow(array $a_set): void
72  {
73  $this->tpl->setVariable("FILENAME", $a_set["filename"]);
74  $piname = pathinfo($a_set["filename"]);
75  $th_path = $this->iim_manager->getOverlayThumbnailPath(
76  $this->mob,
77  basename($a_set["filename"], "." . $piname['extension']) . ".png"
78  ) ;
79  if (!is_file($th_path)) {
80  $this->mob->makeThumbnail(
81  "overlays/" . $a_set["filename"],
82  basename($a_set["filename"], "." . $piname['extension']) . ".png"
83  );
84  }
85  if (is_file($th_path)) {
86  $this->tpl->setVariable("THUMB", ilUtil::img($th_path));
87  }
88  }
89 }
setData(array $a_data)
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...
setFormAction(string $a_form_action, bool $a_multipart=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static img(string $a_src, ?string $a_alt=null, $a_width="", $a_height="", $a_border=0, $a_id="", $a_class="")
Build img tag.
ilLanguage $lng
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
global $DIC
Definition: shib_login.php:22
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
TableGUI class for interactive image overlays.
__construct(Container $dic, ilPlugin $plugin)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
addMultiCommand(string $a_cmd, string $a_text)
__construct(object $a_parent_obj, string $a_parent_cmd, $a_mob)