ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMediaPoolTableGUI.php
Go to the documentation of this file.
1 <?php
2 
20 
27 {
28  public const IL_MEP_SELECT = "select";
29  public const IL_MEP_EDIT = "edit";
30  public const IL_MEP_SELECT_CONTENT = "selectc";
31  public const IL_MEP_SELECT_SINGLE = "selectsingle";
32  protected \ILIAS\MediaObjects\Thumbs\ThumbsGUI $thumbs_gui;
33  protected \ILIAS\DI\UIServices $ui;
34 
35  protected string $mode = "";
36  protected array $filter = [];
37  protected int $current_folder = 0;
38  protected string $folder_par;
39  protected ilTree $tree;
41  protected bool $all_objects = false;
42  protected \ILIAS\MediaPool\StandardGUIRequest $request;
43  protected \ILIAS\MediaPool\Clipboard\ClipboardManager $clipboard_manager;
44 
47  protected ilObjUser $user;
48  public string $insert_command = "create_mob";
52 
53  public function __construct(
54  object $a_parent_obj,
55  string $a_parent_cmd,
56  ilObjMediaPool $a_media_pool,
57  string $a_folder_par = "obj_id",
58  string $a_mode = ilMediaPoolTableGUI::IL_MEP_EDIT,
59  bool $a_all_objects = false,
60  ?ilGlobalTemplateInterface $a_parent_tpl = null
61  ) {
62  global $DIC;
63 
64  $this->ctrl = $DIC->ctrl();
65  $this->lng = $DIC->language();
66  $this->access = $DIC->access();
67  $this->rbacreview = $DIC->rbac()->review();
68  $this->user = $DIC->user();
69 
70  $ilCtrl = $DIC->ctrl();
71  $ilAccess = $DIC->access();
72  $lng = $DIC->language();
73  $this->ui = $DIC->ui();
74 
75  $this->clipboard_manager = $DIC->mediaPool()
76  ->internal()
77  ->domain()
78  ->clipboard();
79 
80  $this->request = $DIC->mediaPool()
81  ->internal()
82  ->gui()
83  ->standardRequest();
84 
85  if ($a_parent_tpl === null) {
86  $a_parent_tpl = $DIC->ui()->mainTemplate();
87  }
88  $this->parent_tpl = $a_parent_tpl;
89  if ($a_all_objects) {
90  $this->setId("mepall");
91  if (method_exists($a_parent_obj, "getObject") &&
92  is_object($a_parent_obj->getObject())) {
93  $this->setId("mepall" . $a_parent_obj->getObject()->getId());
94  }
95  } else {
96  $this->setId("mepfold");
97  if (method_exists($a_parent_obj, "getObject") &&
98  is_object($a_parent_obj->getObject())) {
99  $this->setId("mepfold" . $a_parent_obj->getObject()->getId());
100  }
101  }
102 
103  parent::__construct($a_parent_obj, $a_parent_cmd);
104  $this->setMode($a_mode);
105  $this->all_objects = $a_all_objects;
106  $lng->loadLanguageModule("mep");
107 
108  $this->media_pool = $a_media_pool;
109  $this->tree = ilObjMediaPool::_getPoolTree($this->media_pool->getId());
110  $this->folder_par = $a_folder_par;
111  $this->pool_repo = new MediaPoolRepository();
112 
113  if ($this->all_objects) {
114  $this->setExternalSorting(true);
115  $this->initFilter();
116  }
117 
118  $current_folder = $this->clipboard_manager->getFolder();
119 
120  // folder determination
121  $requested_folder_id = $this->request->getFolderId($this->folder_par);
122  if ($requested_folder_id > 0) {
123  $this->current_folder = $requested_folder_id;
124  } elseif ($current_folder > 0 && $this->tree->isInTree($current_folder)) {
125  $this->current_folder = $current_folder;
126  } else {
127  $this->current_folder = $this->tree->getRootId();
128  }
129  $this->clipboard_manager->setFolder($this->current_folder);
130 
131  // standard columns
132  $this->addColumn("", "", "1"); // checkbox
133  $this->addColumn($lng->txt("mep_thumbnail"), "", "100px");
134  $this->addColumn($lng->txt("mep_title_and_description"));
135  $this->setEnableHeader(true);
136  $this->setFormAction($ilCtrl->getFormAction($a_parent_obj));
137  $this->setRowTemplate("tpl.mep_list_row.html", "components/ILIAS/MediaPool");
138 
139  if ($this->showAdvMetadata()) {
140  // adv metadata init (adds filter)
141  $this->adv_filter_record_gui = new ilAdvancedMDRecordGUI(
143  'mep',
144  $this->media_pool->getId(),
145  'mob'
146  );
147  $this->adv_filter_record_gui->setTableGUI($this);
148  $this->adv_filter_record_gui->parse();
149 
150  // adv metadata columns
151  $adv_th_record_gui = new ilAdvancedMDRecordGUI(
153  'mep',
154  $this->media_pool->getId(),
155  'mob'
156  );
157  $adv_th_record_gui->setTableGUI($this);
158  $adv_th_record_gui->parse();
159  if ($a_mode === self::IL_MEP_SELECT) {
160  $this->setFilterCommand("insert_applyFilter");
161  $this->setResetCommand("insert_resetFilter");
162  }
163  }
164 
165  // actions column
166  $this->addColumn($lng->txt("actions"));
167 
168  // get items
169  $this->getItems();
170 
171  // title
172  if ($a_mode !== self::IL_MEP_EDIT) {
173  if ($this->current_folder !== $this->tree->getRootId() && !$this->all_objects) {
174  $node = $this->tree->getNodeData($this->current_folder);
175  $this->setTitle(
176  $lng->txt("mep_choose_from_folder") . ": " . $node["title"],
177  "standard/icon_fold.svg",
178  $node["title"]
179  );
180  } else {
181  $this->setTitle(
182  $lng->txt("mep_choose_from_mep") . ": " .
183  ilObject::_lookupTitle($this->media_pool->getId()),
184  "standard/icon_mep.svg",
185  ilObject::_lookupTitle($this->media_pool->getId())
186  );
187  }
188  }
189 
190  // action commands
191  if ($ilAccess->checkAccess("write", "", $this->media_pool->getRefId()) &&
192  $this->getMode() === self::IL_MEP_EDIT) {
193  $this->addMultiCommand("copyToClipboard", $lng->txt("cont_copy_to_clipboard"));
194  $this->addMultiCommand("move", $lng->txt("move"));
195  $this->addMultiCommand("confirmRemove", $lng->txt("remove"));
196  }
197 
198  if ($this->getMode() === self::IL_MEP_SELECT_SINGLE) {
199  // ... even more coupling with ilpcmediaobjectgui
200  $this->addMultiCommand("selectObjectReference", $lng->txt("cont_select"));
201  }
202 
203  if ($this->getMode() === self::IL_MEP_EDIT &&
204  $ilAccess->checkAccess("write", "", $this->media_pool->getRefId())) {
205  $this->setSelectAllCheckbox("id");
206  }
207  $this->thumbs_gui = $DIC->mediaObjects()->internal()->gui()->thumbs();
208  }
209 
210  protected function showAdvMetadata(): bool
211  {
212  return ($this->all_objects);
213  }
214 
216  {
218  }
219 
220  public function setInsertCommand(string $a_val): void
221  {
222  $this->insert_command = $a_val;
223  }
224 
225  public function getInsertCommand(): string
226  {
227  return $this->insert_command;
228  }
229 
230  public function setTitleFilter(string $title): void
231  {
232  // activate filter
233  $tprop = new ilTablePropertiesStorageGUI();
234  $tprop->storeProperty(
235  $this->getId(),
236  $this->user->getId(),
237  'filter',
238  1
239  );
240 
241  // reset filter and offset
242  $this->resetFilter();
243  $this->resetOffset();
244 
245  // set title input and write it to session
247  $input = $this->getFilterItemByPostVar("title");
248  $input->setValue($title);
249  $input->writeToSession();
250  }
251 
252  public function getHTML(): string
253  {
254  $html = parent::getHTML();
255  $html .= ilObjMediaPoolGUI::getPreviewModalHTML($this->media_pool->getRefId(), $this->parent_tpl);
256  return $html;
257  }
258 
259  public function initFilter(): void
260  {
261  $mset = new ilSetting("mobs");
262  $lng = $this->lng;
263 
264  // title/description
265  $ti = new ilTextInputGUI($lng->txt("title"), "title");
266  $ti->setMaxLength(64);
267  $ti->setSize(20);
268  $this->addFilterItem($ti);
269  $ti->readFromSession();
270  $this->filter["title"] = $ti->getValue();
271 
272  // keyword
273  $GLOBALS['lng']->loadLanguageModule('meta');
274  $ke = new ilTextInputGUI($lng->txt('meta_keyword'), 'keyword');
275  $ke->setMaxLength(64);
276  $ke->setSize(20);
277  $this->addFilterItem($ke);
278  $ke->readFromSession();
279  $this->filter['keyword'] = $ke->getValue();
280 
281  // Caption
282  $ca = new ilTextInputGUI($lng->txt('cont_caption'), 'caption');
283  $ca->setMaxLength(64);
284  $ca->setSize(20);
285  $this->addFilterItem($ca);
286  $ca->readFromSession();
287  $this->filter['caption'] = $ca->getValue();
288 
289  // format
290  $options = array(
291  "" => $lng->txt("mep_all"),
292  );
293  if ($mset->get("mep_activate_pages")) {
294  $options["mob"] = $lng->txt("mep_mob");
295  $options["pg"] = $lng->txt("mep_mpg");
296  }
297  $formats = $this->media_pool->getUsedFormats();
298  $options = array_merge($options, $formats);
299  $si = new ilSelectInputGUI($this->lng->txt("mep_format"), "format");
300  $si->setOptions($options);
301  $this->addFilterItem($si);
302  $si->readFromSession();
303  $this->filter["format"] = $si->getValue();
304  }
305 
306  public function setMode(string $a_mode): void
307  {
308  $this->mode = $a_mode;
309  }
310 
311  public function getMode(): string
312  {
313  return $this->mode;
314  }
315 
316  public function getItems(): void
317  {
318  if (!$this->all_objects) {
319  $fobjs = $this->media_pool->getChilds($this->current_folder, "fold");
320  $f2objs = array();
321  foreach ($fobjs as $obj) {
322  $f2objs[$obj["title"] . ":" . $obj["child"]] = $obj;
323  }
324  ksort($f2objs);
325 
326  // get current media objects / pages
327  if ($this->getMode() === self::IL_MEP_SELECT) {
328  $mobjs = $this->media_pool->getChilds($this->current_folder, "mob");
329  } elseif ($this->getMode() === self::IL_MEP_SELECT_CONTENT) {
330  $mobjs = $this->media_pool->getChilds($this->current_folder, "pg");
331  } else {
332  $mobjs = $this->media_pool->getChildsExceptFolders($this->current_folder);
333  }
334  $m2objs = array();
335  foreach ($mobjs as $obj) {
336  $m2objs[$obj["title"] . ":" . $obj["child"]] = $obj;
337  }
338  ksort($m2objs);
339 
340  // merge everything together
341  $objs = array_merge($f2objs, $m2objs);
342  } else {
343  $objs = $this->pool_repo->getItems(
344  $this->media_pool->getId(),
345  $this->filter["title"],
346  $this->filter["format"],
347  $this->filter['keyword'],
348  $this->filter['caption']
349  );
350  }
351 
352  // add advanced metadata
353  if ($this->showAdvMetadata()) {
354  $mobs = array_filter($objs, function ($m) {
355  return ($m["type"] === "mob");
356  });
357 
359  $this->media_pool->getRefId(),
360  "mep",
361  "mob",
362  [0],
363  "mob",
364  $mobs,
365  "",
366  "foreign_id",
367  $this->adv_filter_record_gui->getFilterElements()
368  );
369 
370  $snippets = array_filter($objs, function ($m) {
371  return ($m["type"] === "pg");
372  });
373 
375  $this->media_pool->getRefId(),
376  "mep",
377  "mpg",
378  [$this->media_pool->getId()],
379  "mpg",
380  $snippets,
381  "mep_id",
382  "obj_id",
383  $this->adv_filter_record_gui->getFilterElements()
384  );
385 
386  $objs = array_merge($mobs, $snippets);
387  }
388  $this->setData($objs);
389  }
390 
391  protected function prepareOutput(): void
392  {
393  $lng = $this->lng;
394 
395  if ($this->getMode() === self::IL_MEP_SELECT ||
396  $this->getMode() === self::IL_MEP_SELECT_CONTENT) {
397  $this->addMultiCommand($this->getInsertCommand(), $lng->txt("insert"));
398  $this->addCommandButton("cancelCreate", $lng->txt("cancel"));
399  }
400  }
401 
402  protected function fillRow(array $a_set): void
403  {
404  $lng = $this->lng;
405  $ilCtrl = $this->ctrl;
406  $ilAccess = $this->access;
407  $actions = [];
408 
409  $this->tpl->setCurrentBlock("link");
410 
411  // adv metadata columns
412  if ($this->showAdvMetadata()) {
413  $adv_cell_record_gui = new ilAdvancedMDRecordGUI(
415  'mep',
416  $this->media_pool->getId(),
417  'mob'
418  );
419  $adv_cell_record_gui->setTableGUI($this);
420  $adv_cell_record_gui->setRowData($a_set);
421  $this->tpl->setVariable("ADV_CELLS", $adv_cell_record_gui->parse());
422  }
423 
424 
425  switch ($a_set["type"]) {
426  case "fold":
427  $this->tpl->setVariable("TXT_TITLE", htmlentities($a_set["title"]));
428  $ilCtrl->setParameter($this->parent_obj, $this->folder_par, $a_set["obj_id"]);
429  $ilCtrl->setParameter($this->parent_obj, "id", $a_set["obj_id"]);
430  $this->tpl->setVariable(
431  "LINK_VIEW",
432  $ilCtrl->getLinkTarget($this->parent_obj, $this->parent_cmd)
433  );
434  $this->tpl->parseCurrentBlock();
435 
436  if ($ilAccess->checkAccess("write", "", $this->media_pool->getRefId()) &&
437  $this->getMode() === self::IL_MEP_EDIT) {
438  $actions[$lng->txt("edit")] = $ilCtrl->getLinkTarget($this->parent_obj, "editFolder");
439  $ilCtrl->setParameterByClass("ilobjmediapoolgui", "mepitem_id", $this->request->getItemId());
440  $actions[$lng->txt("move")] = $ilCtrl->getLinkTarget($this->parent_obj, "move");
441  $actions[$lng->txt("remove")] = $ilCtrl->getLinkTarget($this->parent_obj, "confirmRemove");
442  $ilCtrl->setParameter($this->parent_obj, $this->folder_par, $a_set["obj_id"]);
443  $ilCtrl->setParameter(
444  $this->parent_obj,
445  $this->folder_par,
446  $this->request->getFolderId($this->folder_par)
447  );
448  $this->tpl->parseCurrentBlock();
449  }
450 
451  $this->tpl->setCurrentBlock("tbl_content");
452  $this->tpl->setVariable("IMG", ilUtil::img(ilUtil::getImagePath("standard/icon_" . $a_set["type"] . ".svg")));
453  $ilCtrl->setParameter($this->parent_obj, $this->folder_par, $this->current_folder);
454  break;
455 
456  case "pg":
457  if ($this->getMode() === self::IL_MEP_SELECT ||
458  $this->getMode() === self::IL_MEP_SELECT_SINGLE) {
459  $this->tpl->setVariable("TXT_NO_LINK_TITLE", htmlentities($a_set["title"]));
460  } else {
461  $this->tpl->setVariable("ONCLICK", "il.MediaPool.preview('" . $a_set["child"] . "'); return false;");
462  $this->tpl->setVariable("TXT_TITLE", htmlentities($a_set["title"]));
463  $ilCtrl->setParameterByClass("ilobjmediapoolgui", "mepitem_id", $a_set["child"]);
464  }
465 
466  if ($this->getMode() === self::IL_MEP_EDIT &&
467  $ilAccess->checkAccess("write", "", $this->media_pool->getRefId())) {
468  $ilCtrl->setParameterByClass("ilmediapoolpagegui", "mepitem_id", $a_set["child"]);
469  $ilCtrl->setParameterByClass("ilobjmediapoolgui", "id", $a_set["child"]);
470 
471  $actions[$lng->txt("edit")] = $ilCtrl->getLinkTargetByClass("ilmediapoolpagegui", "edit");
472 
473  $mdgui = new ilObjectMetaDataGUI(
474  $this->media_pool,
475  "mpg",
476  $a_set["child"]
477  );
478  $mdtab = $mdgui->getTab("ilmediapoolpagegui");
479  if ($mdtab) {
480  $actions[$lng->txt("meta_data")] = $mdtab;
481  }
482 
483  $actions[$lng->txt("cont_usage")] = $ilCtrl->getLinkTargetByClass("ilmediapoolpagegui", "showMediaPoolPageUsages");
484  $actions[$lng->txt("settings")] = $ilCtrl->getLinkTargetByClass("ilmediapoolpagegui", "editMediaPoolPage");
485  $ilCtrl->setParameterByClass("ilobjmediapoolgui", "mepitem_id", $this->request->getItemId());
486  $actions[$lng->txt("move")] = $ilCtrl->getLinkTarget($this->parent_obj, "move");
487  $actions[$lng->txt("remove")] = $ilCtrl->getLinkTarget($this->parent_obj, "confirmRemove");
488  }
489 
490  $this->tpl->setCurrentBlock("tbl_content");
491  $this->tpl->setVariable("IMG", ilUtil::img(ilUtil::getImagePath("standard/icon_pg.svg")));
492  $ilCtrl->setParameter($this->parent_obj, $this->folder_par, $this->current_folder);
493  break;
494 
495  case "mob":
496  $this->tpl->setVariable("ONCLICK", "il.MediaPool.preview('" . $a_set["child"] . "'); return false;");
497  $this->tpl->setVariable("TXT_TITLE", htmlentities($a_set["title"]));
498  $ilCtrl->setParameterByClass("ilobjmediaobjectgui", "mepitem_id", $a_set["child"]);
499  $ilCtrl->setParameter($this->parent_obj, "mob_id", $a_set["foreign_id"]);
500  $ilCtrl->setParameter($this->parent_obj, "id", $a_set["child"]);
501 
502  // edit link
503  if ($ilAccess->checkAccess("write", "", $this->media_pool->getRefId()) &&
504  $this->getMode() === self::IL_MEP_EDIT) {
505  $actions[$lng->txt("edit")] = $ilCtrl->getLinkTargetByClass("ilobjmediaobjectgui", "edit");
506  $ilCtrl->setParameterByClass("ilobjmediapoolgui", "mepitem_id", $this->request->getItemId());
507  $actions[$lng->txt("cont_copy_to_clipboard")] = $ilCtrl->getLinkTargetByClass("ilobjmediapoolgui", "copyToClipboard");
508  $actions[$lng->txt("move")] = $ilCtrl->getLinkTargetByClass("ilobjmediapoolgui", "move");
509  $actions[$lng->txt("remove")] = $ilCtrl->getLinkTarget($this->parent_obj, "confirmRemove");
510  }
511 
512  $this->tpl->setCurrentBlock("link");
513  $this->tpl->setCurrentBlock("tbl_content");
514 
515  // output thumbnail (or mob icon)
516  if (ilObject::_lookupType($a_set["foreign_id"]) === "mob") {
517  $mob_id = (int) $a_set["foreign_id"];
518  $this->tpl->setVariable(
519  "IMG",
520  $this->thumbs_gui->getThumbHtml($mob_id)
521  );
522 
523  // output media info
524  $mob = new ilObjMediaObject($mob_id);
525  $this->tpl->setVariable(
526  "MEDIA_INFO",
528  );
529  $ilCtrl->setParameter($this->parent_obj, $this->folder_par, $this->current_folder);
530  }
531  break;
532  }
533 
534  if ($ilAccess->checkAccess("write", "", $this->media_pool->getRefId())) {
535  if ((
536  $this->getMode() === self::IL_MEP_EDIT ||
537  ($this->getMode() === self::IL_MEP_SELECT && $a_set["type"] === "mob") ||
538  ($this->getMode() === self::IL_MEP_SELECT_CONTENT && $a_set["type"] === "pg")
539  )) {
540  $this->tpl->setCurrentBlock("chbox");
541  $this->tpl->setVariable("CHECKBOX_ID", $a_set["child"]);
542  $this->tpl->parseCurrentBlock();
543  $this->tpl->setCurrentBlock("tbl_content");
544  } elseif ($this->getMode() === self::IL_MEP_SELECT_SINGLE && $a_set["type"] === "mob") {
545  $this->tpl->setCurrentBlock("radio");
546  $this->tpl->setVariable("RADIO_ID", $a_set["child"]);
547  $this->tpl->parseCurrentBlock();
548  $this->tpl->setCurrentBlock("tbl_content");
549  }
550  }
551 
552  if (count($actions) > 0) {
553  $items = [];
554  foreach ($actions as $txt => $act) {
555  $items[] = $this->ui->factory()->link()->standard($txt, $act);
556  }
557  $dd = $this->ui->factory()->dropdown()->standard($items);
558  $this->tpl->setVariable("DROPDOWN", $this->ui->renderer()->render($dd));
559  }
560  }
561 
562  public function render(): string
563  {
564  $ilCtrl = $this->ctrl;
565 
566  $mtpl = new ilTemplate("tpl.media_sel_table.html", true, true, "components/ILIAS/MediaPool");
567 
568  $pre = "";
569  if ($this->current_folder !== $this->tree->getRootId() && !$this->all_objects) {
570  $path = $this->tree->getPathFull($this->current_folder);
571 
572  $loc = new ilLocatorGUI();
573  foreach ($path as $p) {
574  $ilCtrl->setParameter($this->parent_obj, $this->folder_par, $p["child"]);
575  $title = htmlentities($p["title"]);
576  if ($this->tree->getRootId() == $p["child"]) {
577  $title = ilObject::_lookupTitle($this->media_pool->getId());
578  }
579  $loc->addItem(
580  $title,
581  $ilCtrl->getLinkTarget($this->parent_obj, $this->parent_cmd)
582  );
583  }
584  $ilCtrl->setParameter(
585  $this->parent_obj,
586  $this->folder_par,
587  $this->current_folder
588  );
589 
590  $mtpl->setCurrentBlock("loc");
591  $mtpl->setVariable("LOC", $loc->getHTML());
592  $mtpl->parseCurrentBlock();
593  }
594 
595  $mtpl->setVariable("TABLE", parent::render());
596 
597  return $mtpl->get();
598  }
599 }
setData(array $a_data)
Class ilObjectMetaDataGUI.
ILIAS MediaObjects Thumbs ThumbsGUI $thumbs_gui
This class represents a selection list property in a property form.
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)
addFilterItem(ilTableFilterItem $a_input_item, bool $a_optional=false)
ilAdvancedMDRecordGUI $adv_filter_record_gui
ilGlobalTemplateInterface $parent_tpl
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
setResetCommand(string $a_val, string $a_caption="")
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
__construct(object $a_parent_obj, string $a_parent_cmd, ilObjMediaPool $a_media_pool, string $a_folder_par="obj_id", string $a_mode=ilMediaPoolTableGUI::IL_MEP_EDIT, bool $a_all_objects=false, ?ilGlobalTemplateInterface $a_parent_tpl=null)
loadLanguageModule(string $a_module)
Load language module.
ILIAS MediaPool StandardGUIRequest $request
setOptions(array $a_options)
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
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setId(string $a_val)
$path
Definition: ltiservices.php:29
getFilterItemByPostVar(string $a_post_var)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
resetOffset(bool $a_in_determination=false)
setExternalSorting(bool $a_val)
ILIAS MediaPool Clipboard ClipboardManager $clipboard_manager
static queryForRecords(int $adv_rec_obj_ref_id, string $adv_rec_obj_type, string $adv_rec_obj_subtype, array $a_obj_id, string $a_subtype, array $a_records, string $a_obj_id_key, string $a_obj_subid_key, ?array $a_amet_filter=null)
static _lookupTitle(int $obj_id)
$GLOBALS["DIC"]
Definition: wac.php:53
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setFilterCommand(string $a_val, string $a_caption="")
global $DIC
Definition: shib_login.php:22
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
$txt
Definition: error.php:31
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
static getPreviewModalHTML(int $a_mpool_ref_id, ilGlobalTemplateInterface $a_tpl)
Get preview modal html.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getPoolTree(int $a_obj_id)
__construct(Container $dic, ilPlugin $plugin)
setTableGUI(ilTable2GUI $a_val)
Set table for self::MODE_TABLE_FILTER.
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)
static _getMediaInfoHTML(ilObjMediaObject $a_mob)
get media info as html
filter(string $filter_id, $class_path, string $cmd, bool $activated=true, bool $expanded=true)
static _lookupType(int $id, bool $reference=false)
addMultiCommand(string $a_cmd, string $a_text)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setEnableHeader(bool $a_enableheader)
TableGUI class for recent changes in wiki.
MediaPoolRepository $pool_repo