33 protected \ILIAS\DI\UIServices
$ui;
42 protected \ILIAS\MediaPool\StandardGUIRequest
$request;
57 string $a_folder_par =
"obj_id",
59 bool $a_all_objects =
false,
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();
70 $ilCtrl = $DIC->ctrl();
71 $ilAccess = $DIC->access();
72 $lng = $DIC->language();
73 $this->
ui = $DIC->ui();
75 $this->clipboard_manager = $DIC->mediaPool()
80 $this->request = $DIC->mediaPool()
85 if ($a_parent_tpl ===
null) {
86 $a_parent_tpl = $DIC->ui()->mainTemplate();
88 $this->parent_tpl = $a_parent_tpl;
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());
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());
105 $this->all_objects = $a_all_objects;
108 $this->media_pool = $a_media_pool;
110 $this->folder_par = $a_folder_par;
113 if ($this->all_objects) {
118 $current_folder = $this->clipboard_manager->getFolder();
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)) {
127 $this->current_folder = $this->tree->getRootId();
129 $this->clipboard_manager->setFolder($this->current_folder);
137 $this->
setRowTemplate(
"tpl.mep_list_row.html",
"components/ILIAS/MediaPool");
144 $this->media_pool->getId(),
148 $this->adv_filter_record_gui->parse();
154 $this->media_pool->getId(),
158 $adv_th_record_gui->parse();
159 if ($a_mode === self::IL_MEP_SELECT) {
172 if ($a_mode !== self::IL_MEP_EDIT) {
174 $node = $this->tree->getNodeData($this->current_folder);
176 $lng->
txt(
"mep_choose_from_folder") .
": " . $node[
"title"],
177 "standard/icon_fold.svg",
182 $lng->
txt(
"mep_choose_from_mep") .
": " .
184 "standard/icon_mep.svg",
191 if ($ilAccess->checkAccess(
"write",
"", $this->media_pool->getRefId()) &&
192 $this->
getMode() === self::IL_MEP_EDIT) {
198 if ($this->
getMode() === self::IL_MEP_SELECT_SINGLE) {
203 if ($this->
getMode() === self::IL_MEP_EDIT &&
204 $ilAccess->checkAccess(
"write",
"", $this->media_pool->getRefId())) {
207 $this->thumbs_gui = $DIC->mediaObjects()->internal()->gui()->thumbs();
212 return ($this->all_objects);
222 $this->insert_command = $a_val;
230 public function setTitleFilter(
string $title):
void 234 $tprop->storeProperty(
236 $this->
user->getId(),
248 $input->setValue($title);
249 $input->writeToSession();
254 $html = parent::getHTML();
266 $ti->setMaxLength(64);
269 $ti->readFromSession();
270 $this->
filter[
"title"] = $ti->getValue();
273 $GLOBALS[
'lng']->loadLanguageModule(
'meta');
275 $ke->setMaxLength(64);
278 $ke->readFromSession();
279 $this->
filter[
'keyword'] = $ke->getValue();
283 $ca->setMaxLength(64);
286 $ca->readFromSession();
287 $this->
filter[
'caption'] = $ca->getValue();
293 if ($mset->get(
"mep_activate_pages")) {
294 $options[
"mob"] =
$lng->
txt(
"mep_mob");
295 $options[
"pg"] =
$lng->
txt(
"mep_mpg");
297 $formats = $this->media_pool->getUsedFormats();
298 $options = array_merge($options, $formats);
302 $si->readFromSession();
303 $this->
filter[
"format"] = $si->getValue();
308 $this->mode = $a_mode;
318 if (!$this->all_objects) {
319 $fobjs = $this->media_pool->getChilds($this->current_folder,
"fold");
321 foreach ($fobjs as $obj) {
322 $f2objs[$obj[
"title"] .
":" . $obj[
"child"]] = $obj;
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");
332 $mobjs = $this->media_pool->getChildsExceptFolders($this->current_folder);
335 foreach ($mobjs as $obj) {
336 $m2objs[$obj[
"title"] .
":" . $obj[
"child"]] = $obj;
341 $objs = array_merge($f2objs, $m2objs);
343 $objs = $this->pool_repo->getItems(
344 $this->media_pool->getId(),
347 $this->filter[
'keyword'],
348 $this->filter[
'caption']
354 $mobs = array_filter($objs,
function ($m) {
355 return ($m[
"type"] ===
"mob");
359 $this->media_pool->getRefId(),
367 $this->adv_filter_record_gui->getFilterElements()
370 $snippets = array_filter($objs,
function ($m) {
371 return ($m[
"type"] ===
"pg");
375 $this->media_pool->getRefId(),
378 [$this->media_pool->getId()],
383 $this->adv_filter_record_gui->getFilterElements()
386 $objs = array_merge($mobs, $snippets);
395 if ($this->
getMode() === self::IL_MEP_SELECT ||
396 $this->
getMode() === self::IL_MEP_SELECT_CONTENT) {
402 protected function fillRow(array $a_set): void
409 $this->tpl->setCurrentBlock(
"link");
416 $this->media_pool->getId(),
420 $adv_cell_record_gui->setRowData($a_set);
421 $this->tpl->setVariable(
"ADV_CELLS", $adv_cell_record_gui->parse());
425 switch ($a_set[
"type"]) {
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(
432 $ilCtrl->getLinkTarget($this->parent_obj, $this->parent_cmd)
434 $this->tpl->parseCurrentBlock();
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(
446 $this->request->getFolderId($this->folder_par)
448 $this->tpl->parseCurrentBlock();
451 $this->tpl->setCurrentBlock(
"tbl_content");
453 $ilCtrl->setParameter($this->parent_obj, $this->folder_par, $this->current_folder);
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"]));
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"]);
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"]);
471 $actions[
$lng->
txt(
"edit")] = $ilCtrl->getLinkTargetByClass(
"ilmediapoolpagegui",
"edit");
478 $mdtab = $mdgui->getTab(
"ilmediapoolpagegui");
480 $actions[
$lng->
txt(
"meta_data")] = $mdtab;
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");
490 $this->tpl->setCurrentBlock(
"tbl_content");
492 $ilCtrl->setParameter($this->parent_obj, $this->folder_par, $this->current_folder);
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"]);
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");
512 $this->tpl->setCurrentBlock(
"link");
513 $this->tpl->setCurrentBlock(
"tbl_content");
517 $mob_id = (
int) $a_set[
"foreign_id"];
518 $this->tpl->setVariable(
520 $this->thumbs_gui->getThumbHtml($mob_id)
525 $this->tpl->setVariable(
529 $ilCtrl->setParameter($this->parent_obj, $this->folder_par, $this->current_folder);
534 if ($ilAccess->checkAccess(
"write",
"", $this->media_pool->getRefId())) {
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")
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");
552 if (count($actions) > 0) {
554 foreach ($actions as
$txt => $act) {
555 $items[] = $this->
ui->factory()->link()->standard(
$txt, $act);
557 $dd = $this->
ui->factory()->dropdown()->standard($items);
558 $this->tpl->setVariable(
"DROPDOWN", $this->
ui->renderer()->render($dd));
566 $mtpl =
new ilTemplate(
"tpl.media_sel_table.html",
true,
true,
"components/ILIAS/MediaPool");
570 $path = $this->tree->getPathFull($this->current_folder);
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"]) {
581 $ilCtrl->getLinkTarget($this->parent_obj, $this->parent_cmd)
584 $ilCtrl->setParameter(
587 $this->current_folder
590 $mtpl->setCurrentBlock(
"loc");
591 $mtpl->setVariable(
"LOC", $loc->getHTML());
592 $mtpl->parseCurrentBlock();
595 $mtpl->setVariable(
"TABLE", parent::render());
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)
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)
loadLanguageModule(string $a_module)
Load language module.
static img(string $a_src, ?string $a_alt=null, $a_width="", $a_height="", $a_border=0, $a_id="", $a_class="")
Build img tag.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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)
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)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setFilterCommand(string $a_val, string $a_caption="")
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__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)
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)
setEnableHeader(bool $a_enableheader)