ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilInternalLinkGUI.php
Go to the documentation of this file.
1 <?php
2 
20 
26 {
27  protected \ILIAS\MediaObjects\Thumbs\ThumbsGUI $thumbs_gui;
29  protected int $parent_fold_id;
30  protected string $default_parent_obj_type;
32  protected string $return;
33  protected string $default_link_type = "";
34  protected int $default_parent_ref_id = 0;
35  protected int $default_parent_obj_id = 0;
36  protected int $parent_ref_id = 0;
37  protected int $parent_obj_id = 0;
38  protected string $link_type = ""; // "PageObject_New"
39  protected string $link_target = ""; // "New"
40  protected string $base_link_type = ""; // "PageObject"
41  public string $set_link_script = "";
43  protected array $ltypes = [];
45  protected array $parent_type = [];
46  public ilCtrl $ctrl;
47  protected bool $filter_white_list = false;
49  protected array $filter_link_types = [];
50  protected ilTree $tree;
51  protected ilLanguage $lng;
52  protected ilObjUser $user;
53 
54  public function __construct(
55  string $a_default_link_type,
56  int $a_default_parent_id,
57  bool $a_is_ref = true
58  ) {
59  global $DIC;
60  $this->tree = $DIC->repositoryTree();
61  $this->lng = $DIC->language();
62  $this->ctrl = $DIC->ctrl();
63  $this->user = $DIC->user();
64 
65  $this->request = new StandardGUIRequest(
66  $DIC->http(),
67  $DIC->refinery()
68  );
69  $this->thumbs_gui = $DIC->mediaObjects()->internal()->gui()->thumbs();
70 
71  $this->lng->loadLanguageModule("link");
72  $this->lng->loadLanguageModule("content");
73  $this->ctrl->saveParameter($this, array("linkmode", "link_par_ref_id", "link_par_obj_id",
74  "link_par_fold_id", "link_type"));
75 
76  // default type and parent
77  $this->default_link_type = $a_default_link_type;
78  if ($a_is_ref) {
79  $this->default_parent_ref_id = $a_default_parent_id;
80  $this->default_parent_obj_id = ilObject::_lookupObjId($a_default_parent_id);
81  } else {
82  $this->default_parent_ref_id = 0;
83  $this->default_parent_obj_id = $a_default_parent_id;
84  }
85  $this->default_parent_obj_type = ($this->default_parent_obj_id > 0)
86  ? ilObject::_lookupType($this->default_parent_obj_id)
87  : "";
88 
89  // current parent object
90  $this->parent_ref_id = $this->request->getLinkParentRefId();
91  $this->parent_fold_id = $this->request->getLinkParentFolderId(); // e.g. media pool folder
92  if ($this->parent_ref_id > 0) {
93  $this->parent_obj_id = ilObject::_lookupObjId($this->parent_ref_id);
94  } else {
95  $this->parent_obj_id = $this->request->getLinkParentObjId();
96  }
97  }
98 
99  public function init(): void
100  {
101  $lng = $this->lng;
102  $tree = $this->tree;
103  $ctrl = $this->ctrl;
104 
105  if ($this->parent_ref_id > 0 && !$tree->isInTree($this->parent_ref_id)) {
106  $this->resetLinkList();
107  }
108 
109  $this->parent_type = array(
110  "StructureObject" => "lm",
111  "PageObject" => "lm",
112  "GlossaryItem" => "glo",
113  "Media" => "mep",
114  "WikiPage" => "wiki",
115  "PortfolioPage" => "prtf",
116  "PortfolioTemplatePage" => "prtt",
117  "File" => "",
118  "RepositoryItem" => "",
119  "User" => ""
120  );
121 
122  // filter link types
123  $this->ltypes = array(
124  "StructureObject" => $lng->txt("cont_lk_chapter"),
125  "StructureObject_New" => $lng->txt("cont_lk_chapter_new"),
126  "PageObject" => $lng->txt("cont_lk_page"),
127  "PageObject_FAQ" => $lng->txt("cont_lk_page_faq"),
128  "PageObject_New" => $lng->txt("cont_lk_page_new"),
129  "GlossaryItem" => $lng->txt("cont_lk_term"),
130  "GlossaryItem_New" => $lng->txt("cont_lk_term_new"),
131  "Media" => $lng->txt("cont_lk_media_inline"),
132  "Media_Media" => $lng->txt("cont_lk_media_media"),
133  "Media_FAQ" => $lng->txt("cont_lk_media_faq"),
134  "Media_New" => $lng->txt("cont_lk_media_new"),
135  "WikiPage" => $lng->txt("cont_wiki_page"),
136  "PortfolioPage" => $lng->txt("cont_prtf_page"),
137  "PortfolioTemplatePage" => $lng->txt("cont_prtt_page"),
138  "File" => $lng->txt("cont_lk_file"),
139  "RepositoryItem" => $lng->txt("cont_repository_item"),
140  "User" => $lng->txt("cont_user")
141  );
142  if (!$this->filter_white_list) {
143  foreach ($this->filter_link_types as $link_type) {
144  unset($this->ltypes[$link_type]);
145  }
146  } else {
147  $ltypes = array();
148  foreach ($this->ltypes as $k => $l) {
149  if (in_array($k, $this->filter_link_types, true)) {
150  $ltypes[$k] = $l;
151  }
152  }
153  $this->ltypes = $ltypes;
154  }
155  // determine link type and target
156  $this->link_type = ($this->request->getLinkType() === "")
157  ? $this->default_link_type
158  : $this->request->getLinkType();
159  $ltype_arr = explode("_", $this->link_type);
160  $this->base_link_type = $ltype_arr[0];
161  $this->link_target = $ltype_arr[1] ?? "";
162 
163 
164  $def_type = ilObject::_lookupType($this->default_parent_obj_id);
165 
166  // determine content object id
167  switch ($this->base_link_type) {
168  case "PageObject":
169  case "StructureObject":
170  case "GlossaryItem":
171  case "Media":
172  case "WikiPage":
173  case "PortfolioPage":
174  case "PortfolioTemplatePage":
175  if ($this->parent_ref_id === 0 && $this->parent_obj_id === 0
176  && $def_type === ($this->parent_type[$this->base_link_type] ?? "")) {
177  $this->parent_ref_id = $this->default_parent_ref_id;
178  $this->parent_obj_id = $this->default_parent_obj_id;
179  $ctrl->setParameter($this, "link_par_obj_id", $this->parent_obj_id);
180  $ctrl->setParameter($this, "link_par_ref_id", $this->parent_ref_id);
181  }
182  break;
183  }
184  }
185 
186  public function setSetLinkTargetScript(string $a_script): void
187  {
188  $this->set_link_script = $a_script;
189  }
190 
191  public function setReturn(string $a_return): void
192  {
193  $this->return = $a_return;
194  }
195 
196  public function getSetLinkTargetScript(): string
197  {
198  return $this->set_link_script;
199  }
200 
201  public function filterLinkType(string $a_link_type): void
202  {
203  $this->filter_link_types[] = $a_link_type;
204  }
205 
209  public function setFilterWhiteList(bool $a_white_list): void
210  {
211  $this->filter_white_list = $a_white_list;
212  }
213 
214 
215  public function executeCommand(): string
216  {
217  $this->init();
218  $next_class = $this->ctrl->getNextClass($this);
219 
220  $cmd = $this->ctrl->getCmd("showLinkHelp");
221  switch ($next_class) {
222  default:
223  $ret = $this->$cmd();
224  break;
225  }
226 
227  return (string) $ret;
228  }
229 
230  public function resetLinkList(): void
231  {
232  $ctrl = $this->ctrl;
233 
234  $ctrl->setParameter($this, "link_par_ref_id", 0);
235  $ctrl->setParameter($this, "link_par_obj_id", 0);
236  $ctrl->setParameter($this, "link_par_fold_id", 0);
237  $ctrl->setParameter($this, "link_type", "");
238 
239  $ctrl->redirect($this, "showLinkHelp", "", true);
240  }
241 
242  public function closeLinkHelp(): void
243  {
244  if ($this->return === "") {
245  $this->ctrl->returnToParent($this);
246  } else {
247  ilUtil::redirect($this->return);
248  }
249  }
250 
254  public function prepareJavascriptOutput(string $str): string
255  {
256  return htmlspecialchars($str, ENT_QUOTES);
257  }
258 
259 
263  public function showLinkHelp(): void
264  {
265  $ilUser = $this->user;
266  $ilCtrl = $this->ctrl;
267 
268 
269  $parent_type = $this->parent_type[$this->base_link_type] ?? "";
270  if ((in_array($this->base_link_type, array("GlossaryItem", "WikiPage", "PageObject", "StructureObject"), true) &&
271  ($this->parent_ref_id === 0))
272  ||
273  (($this->parent_ref_id > 0) &&
274  ilObject::_lookupType($this->parent_ref_id, true) !== $parent_type)) {
275  if ($parent_type !== "") {
276  $this->changeTargetObject($parent_type);
277  }
278  }
279  if ($ilCtrl->isAsynch()) {
280  $tpl = new ilGlobalTemplate("tpl.link_help_asynch.html", true, true, "components/ILIAS/COPage/IntLink");
281  $tpl->setVariable("NEW_LINK_URL", $this->ctrl->getLinkTarget(
282  $this,
283  "",
284  false,
285  true,
286  false
287  ));
288  } else {
289  $tpl = new ilGlobalTemplate("tpl.link_help.html", true, true, "components/ILIAS/COPage/IntLink");
290  $tpl->setVariable("LOCATION_STYLESHEET", ilUtil::getStyleSheetLocation());
291  }
292 
293  $tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this, "changeLinkType", "", true));
294  $tpl->setVariable("FORMACTION2", $this->ctrl->getFormAction($this));
295  $tpl->setVariable("TXT_HELP_HEADER", $this->lng->txt("cont_link_select"));
296  $tpl->setVariable("TXT_TYPE", $this->lng->txt("cont_link_type"));
297 
298 
299  $select_ltype = ilLegacyFormElementsUtil::formSelect(
300  $this->link_type,
301  "ltype",
302  $this->ltypes,
303  false,
304  true,
305  "0",
306  "",
307  array("id" => "ilIntLinkTypeSelector")
308  );
309  $tpl->setVariable("SELECT_TYPE", $select_ltype);
310  $tpl->setVariable("CMD_CHANGETYPE", "changeLinkType");
311  $tpl->setVariable("BTN_CHANGETYPE", $this->lng->txt("cont_change_type"));
312 
313  $tpl->setVariable("CMD_CLOSE", "closeLinkHelp");
314  $tpl->setVariable("BTN_CLOSE", $this->lng->txt("close"));
315 
316  $chapterRowBlock = "chapter_row_js";
317 
318  // switch link type
319  switch ($this->base_link_type) {
320  // page link
321  case "PageObject":
322  $cont_obj = new ilObjLearningModule($this->parent_ref_id, true);
323 
324  // get all chapters
325  $ctree = $cont_obj->getLMTree();
326  $nodes = $ctree->getSubTree($ctree->getNodeData($ctree->getRootId()));
327  $tpl->setCurrentBlock("chapter_list");
328  $tpl->setVariable("TXT_CONTENT_OBJECT", $this->lng->txt("obj_lm"));
329  $tpl->setVariable("TXT_CONT_TITLE", $cont_obj->getTitle());
330  $tpl->setVariable("THEAD", $this->lng->txt("pages"));
331 
332 
333  $tpl->setCurrentBlock("change_cont_obj");
334  $tpl->setVariable("CMD_CHANGE_CONT_OBJ", "changeTargetObject");
335  $tpl->setVariable("BTN_CHANGE_CONT_OBJ", $this->lng->txt("change"));
336  $tpl->parseCurrentBlock();
337 
338  foreach ($nodes as $node) {
339  if ($node["type"] === "st") {
340  $tpl->setCurrentBlock("header_row");
341  $tpl->setVariable("TXT_HEADER", $node["title"]);
342  $tpl->parseCurrentBlock();
343  $tpl->setCurrentBlock("row");
344  $tpl->parseCurrentBlock();
345  }
346 
347  if ($node["type"] === "pg") {
348  $this->renderLink(
349  $tpl,
350  $node["title"],
351  $node["obj_id"],
352  "PageObject",
353  "pg",
354  "page",
355  ilPCParagraph::_readAnchors("lm", $node["obj_id"], "")
356  );
357  }
358  }
359 
360  // get all free pages
361  $pages = ilLMPageObject::getPageList($cont_obj->getId());
362  $free_pages = array();
363  foreach ($pages as $page) {
364  if (!$ctree->isInTree($page["obj_id"])) {
365  $free_pages[] = $page;
366  }
367  }
368  if (count($free_pages) > 0) {
369  $tpl->setCurrentBlock("header_row");
370  $tpl->setVariable("TXT_HEADER", $this->lng->txt("cont_free_pages"));
371  $tpl->parseCurrentBlock();
372 
373  foreach ($free_pages as $node) {
374  $this->renderLink(
375  $tpl,
376  $node["title"],
377  $node["obj_id"],
378  "PageObject",
379  "pg",
380  "page",
381  ilPCParagraph::_readAnchors("lm", $node["obj_id"], "")
382  );
383  }
384  }
385 
386  $tpl->setCurrentBlock("chapter_list");
387  $tpl->parseCurrentBlock();
388 
389  break;
390 
391  // chapter link
392  case "StructureObject":
393 
394  // check whether current object matchs to type
395  if (ilObject::_lookupType($this->parent_ref_id, true) !== "lm") {
396  $this->changeTargetObject("lm");
397  }
398 
399  $cont_obj = new ilObjLearningModule($this->parent_ref_id, true);
400 
401  // get all chapters
402  $ctree = $cont_obj->getLMTree();
403  $nodes = $ctree->getSubTree($ctree->getNodeData($ctree->getRootId()));
404  $tpl->setCurrentBlock("chapter_list");
405  $tpl->setVariable("TXT_CONTENT_OBJECT", $this->lng->txt("obj_lm"));
406  $tpl->setVariable("TXT_CONT_TITLE", $cont_obj->getTitle());
407  $tpl->setVariable("THEAD", $this->lng->txt("link_chapters"));
408  $tpl->setCurrentBlock("change_cont_obj");
409  $tpl->setVariable("CMD_CHANGE_CONT_OBJ", "changeTargetObject");
410  $tpl->setVariable("BTN_CHANGE_CONT_OBJ", $this->lng->txt("change"));
411  $tpl->parseCurrentBlock();
412 
413  foreach ($nodes as $node) {
414  if ($node["type"] === "st") {
415  $this->renderLink(
416  $tpl,
417  $node["title"],
418  $node["obj_id"],
419  "StructureObject",
420  "st",
421  "chap"
422  );
423  }
424  }
425  $tpl->setCurrentBlock("chapter_list");
426  $tpl->parseCurrentBlock();
427  break;
428 
429  // glossary item link
430  case "GlossaryItem":
431  $glossary = new ilObjGlossary($this->parent_ref_id, true);
432 
433  // get all glossary items
434  $terms = $glossary->getTermList();
435  $tpl->setCurrentBlock("chapter_list");
436  $tpl->setVariable("TXT_CONTENT_OBJECT", $this->lng->txt("glossary"));
437  $tpl->setVariable("TXT_CONT_TITLE", $glossary->getTitle());
438  $tpl->setVariable("THEAD", $this->lng->txt("link_terms"));
439  $tpl->setCurrentBlock("change_cont_obj");
440  $tpl->setVariable("CMD_CHANGE_CONT_OBJ", "changeTargetObject");
441  $tpl->setVariable("BTN_CHANGE_CONT_OBJ", $this->lng->txt("change"));
442  $tpl->parseCurrentBlock();
443 
444  foreach ($terms as $term) {
445  $this->renderLink(
446  $tpl,
447  $term["term"],
448  $term["id"],
449  "GlossaryItem",
450  "git",
451  "term"
452  );
453  }
454 
455  $tpl->setCurrentBlock("chapter_list");
456  $tpl->parseCurrentBlock();
457  break;
458 
459  // media object
460  case "Media":
461  //$tpl->setVariable("TARGET2", " target=\"content\" ");
462  // content object id = 0 --> get clipboard objects
463  if ($this->parent_ref_id === 0) {
464  $tpl->setCurrentBlock("change_cont_obj");
465  $tpl->setVariable("CMD_CHANGE_CONT_OBJ", "changeTargetObject");
466  $tpl->setVariable("BTN_CHANGE_CONT_OBJ", $this->lng->txt("change"));
467  $tpl->parseCurrentBlock();
468  $mobjs = $ilUser->getClipboardObjects("mob");
469  // sort by name
470  $objs = array();
471  foreach ($mobjs as $obj) {
472  $objs[$obj["title"] . ":" . $obj["id"]] = $obj;
473  }
474  ksort($objs);
475  $tpl->setCurrentBlock("chapter_list");
476  $tpl->setVariable("TXT_CONTENT_OBJECT", $this->lng->txt("cont_media_source"));
477  $tpl->setVariable("TXT_CONT_TITLE", $this->lng->txt("cont_personal_clipboard"));
478  $tpl->setVariable("THEAD", $this->lng->txt("link_mobs"));
479  $tpl->setVariable("COLSPAN", "2");
480 
481  foreach ($objs as $obj) {
482  $this->renderLink(
483  $tpl,
484  $obj["title"],
485  $obj["id"],
486  "MediaObject",
487  "mob",
488  "media"
489  );
490  }
491  } else {
492  $med_pool = new ilObjMediaPool($this->parent_ref_id, true);
493  // get current folders
494  $fobjs = $med_pool->getChilds($this->parent_fold_id, "fold");
495  $f2objs = array();
496  foreach ($fobjs as $obj) {
497  $f2objs[$obj["title"] . ":" . $obj["child"]] = $obj;
498  }
499  ksort($f2objs);
500  // get current media objects
501  $mobjs = $med_pool->getChilds($this->parent_fold_id, "mob");
502  $m2objs = array();
503  foreach ($mobjs as $obj) {
504  $m2objs[$obj["title"] . ":" . $obj["child"]] = $obj;
505  }
506  ksort($m2objs);
507 
508  // merge everything together
509  $objs = array_merge($f2objs, $m2objs);
510 
511  $tpl->setCurrentBlock("chapter_list");
512  $tpl->setVariable("TXT_CONTENT_OBJECT", $this->lng->txt("mep"));
513  $tpl->setVariable("TXT_CONT_TITLE", $med_pool->getTitle());
514  $tpl->setVariable("THEAD", $this->lng->txt("link_mobs"));
515  $tpl->setCurrentBlock("change_cont_obj");
516  $tpl->setVariable("CMD_CHANGE_CONT_OBJ", "changeTargetObject");
517  $tpl->setVariable("BTN_CHANGE_CONT_OBJ", $this->lng->txt("change"));
518  $tpl->setVariable("COLSPAN", "2");
519  $tpl->parseCurrentBlock();
520  if ($parent_id = $med_pool->getParentId($this->parent_fold_id)) {
521  $tpl->setCurrentBlock("icon");
522  $tpl->setVariable("ICON_SRC", ilUtil::getImagePath("standard/icon_fold.svg"));
523  $tpl->parseCurrentBlock();
524  $tpl->setCurrentBlock("link_row");
525  $tpl->setVariable("TXT_CHAPTER", "..");
526  $this->ctrl->setParameter($this, "mep_fold", $parent_id);
527  if ($ilCtrl->isAsynch()) {
528  $tpl->setVariable("LINK", "#");
529  $tpl->setVariable(
530  "LR_ONCLICK",
531  " onclick=\"return il.IntLink.setMepPoolFolder('" . $parent_id . "');\" "
532  );
533  } else {
534  $tpl->setVariable(
535  "LINK",
536  $this->ctrl->getLinkTarget($this, "setMedPoolFolder")
537  );
538  }
539  $tpl->parseCurrentBlock();
540  $tpl->setCurrentBlock("row");
541  $tpl->parseCurrentBlock();
542  }
543  foreach ($objs as $obj) {
544  if ($obj["type"] === "fold") {
545  $tpl->setCurrentBlock("icon");
546  $tpl->setVariable("ICON_SRC", ilUtil::getImagePath("standard/icon_fold.svg"));
547  $tpl->parseCurrentBlock();
548  $tpl->setCurrentBlock("link_row");
549  $tpl->setVariable("TXT_CHAPTER", $obj["title"]);
550  $this->ctrl->setParameter($this, "mep_fold", $obj["child"]);
551  if ($ilCtrl->isAsynch()) {
552  $tpl->setVariable("LINK", "#");
553  $tpl->setVariable(
554  "LR_ONCLICK",
555  " onclick=\"return il.IntLink.setMepPoolFolder('" . $obj["child"] . "');\" "
556  );
557  } else {
558  $tpl->setVariable(
559  "LINK",
560  $this->ctrl->getLinkTarget($this, "setMedPoolFolder")
561  );
562  }
563  $tpl->parseCurrentBlock();
564  } else {
565  $fid = ilMediaPoolItem::lookupForeignId($obj["child"]);
566  if (ilObject::_lookupType($fid) === "mob") {
567  $this->renderLink(
568  $tpl,
569  $obj["title"],
570  $fid,
571  "MediaObject",
572  "mob",
573  "media"
574  );
575  }
576  }
577  $tpl->setCurrentBlock("row");
578  $tpl->parseCurrentBlock();
579  }
580  }
581  $tpl->setCurrentBlock("chapter_list");
582  $tpl->parseCurrentBlock();
583  break;
584 
585  // wiki page link
586  case "WikiPage":
587  $wiki_id = ilObject::_lookupObjId($this->parent_ref_id);
588  $wpages = ilWikiPage::getAllWikiPages($wiki_id);
589 
590  // get all glossary items
591  $tpl->setCurrentBlock("chapter_list");
592  $tpl->setVariable("TXT_CONTENT_OBJECT", $this->lng->txt("obj_wiki"));
593  $tpl->setVariable("TXT_CONT_TITLE", ilObject::_lookupTitle($wiki_id));
594  $tpl->setVariable("THEAD", $this->lng->txt("link_wpages"));
595  $tpl->setCurrentBlock("change_cont_obj");
596  $tpl->setVariable("CMD_CHANGE_CONT_OBJ", "changeTargetObject");
597  $tpl->setVariable("BTN_CHANGE_CONT_OBJ", $this->lng->txt("change"));
598  $tpl->parseCurrentBlock();
599 
600  foreach ($wpages as $wpage) {
601  $this->renderLink(
602  $tpl,
603  $wpage["title"],
604  $wpage["id"],
605  "WikiPage",
606  "wpage",
607  "wpage",
608  ilPCParagraph::_readAnchors("wpg", $wpage["id"], "")
609  );
610  }
611  $tpl->setCurrentBlock("chapter_list");
612  $tpl->parseCurrentBlock();
613  break;
614 
615  // Portfolio page link
616  case "PortfolioPage":
617  case "PortfolioTemplatePage":
618  $prtf_id = $this->parent_obj_id;
619  $ppages = ilPortfolioPage::getAllPortfolioPages($prtf_id);
620 
621  // get all glossary items
622  $tpl->setCurrentBlock("chapter_list");
623  $tpl->setVariable("TXT_CONTENT_OBJECT", $this->lng->txt("obj_" . ilObject::_lookupType($prtf_id)));
624  $tpl->setVariable("TXT_CONT_TITLE", ilObject::_lookupTitle($prtf_id));
625  $tpl->setVariable("THEAD", $this->lng->txt("pages"));
626 
627  foreach ($ppages as $ppage) {
628  $this->renderLink(
629  $tpl,
630  $ppage["title"],
631  $ppage["id"],
632  "PortfolioPage",
633  "ppage",
634  "ppage",
635  array(),
636  $ppage["title"]
637  );
638  }
639 
640  $tpl->setCurrentBlock("chapter_list");
641  $tpl->parseCurrentBlock();
642  break;
643 
644  // repository item
645  case "RepositoryItem":
646  $tpl->setVariable("LINK_HELP_CONTENT", $this->selectRepositoryItem());
647  break;
648 
649  // file download link
650  case "File":
651  if (!isset($this->uploaded_file)) {
652  $tpl->setVariable("LINK_HELP_CONTENT", $this->getFileLinkHTML());
653  } else {
654  echo $this->getFileLinkHTML();
655  exit;
656  }
657  break;
658 
659  // file download link
660  case "User":
661  $tpl->setVariable("LINK_HELP_CONTENT", $this->addUser());
662  break;
663  }
664 
665  if ($ilCtrl->isAsynch()) {
666  echo $tpl->get();
667  exit;
668  }
669 
670  exit;
671  }
672 
676  public function getFileLinkHTML(): string
677  {
678  $lng = $this->lng;
679  $ilCtrl = $this->ctrl;
680 
681  $tpl = new ilTemplate("tpl.link_file.html", true, true, "components/ILIAS/COPage/IntLink");
682  if (!is_object($this->uploaded_file)) {
683  $tpl->setCurrentBlock("form");
684  $tpl->setVariable(
685  "FORM_ACTION",
686  $ilCtrl->getFormAction($this, "saveFileLink", "", true)
687  );
688  $tpl->setVariable("TXT_SELECT_FILE", $lng->txt("cont_select_file"));
689  $tpl->setVariable("TXT_SAVE_LINK", $lng->txt("cont_create_link"));
690  $tpl->setVariable("CMD_SAVE_LINK", "saveFileLink");
691  $fi = new ilFileInputGUI("", "link_file");
692  $fi->setSize(15);
693  $tpl->setVariable("INPUT", $fi->getToolbarHTML());
694  $tpl->parseCurrentBlock();
695  } else {
696  $tpl->setCurrentBlock("link_js");
697  // $tpl->setVariable("LINK_FILE",
698  // $this->prepareJavascriptOutput("[iln dfile=\"".$this->uploaded_file->getId()."\"] [/iln]")
699  // );
700  $tpl->setVariable(
701  "TAG_B",
702  '[iln dfile=\x22' . $this->uploaded_file->getId() . '\x22]'
703  );
704  $tpl->setVariable(
705  "TAG_E",
706  "[/iln]"
707  );
708  $tpl->setVariable(
709  "TXT_FILE",
710  $this->uploaded_file->getTitle()
711  );
712  // $tpl->parseCurrentBlock();
713  }
714  return $tpl->get();
715  }
716 
720  public function saveFileLink(): void
721  {
722  if ($_FILES["link_file"]["name"] != "") {
723  $fileObj = new ilObjFile();
724  $fileObj->setType("file");
725  $fileObj->setTitle($_FILES["link_file"]["name"]);
726  $fileObj->setDescription("");
727  $fileObj->setFileName($_FILES["link_file"]["name"]);
728  $fileObj->setMode("filelist");
729  $fileObj->create();
730  // upload file to filesystem
731  $fileObj->getUploadFile(
732  $_FILES["link_file"]["tmp_name"],
733  $_FILES["link_file"]["name"]
734  );
735  $this->uploaded_file = $fileObj;
736  }
737  $this->showLinkHelp();
738  }
739 
743  public function outputThumbnail(
744  ilGlobalTemplate $tpl,
745  int $a_id,
746  string $a_mode = ""
747  ): void {
748  // output thumbnail
749  if ($this->getSetLinkTargetScript() !== "") {
750  $tpl->setCurrentBlock("thumbnail_link");
751  $suff = "_link";
752  } else {
753  $tpl->setCurrentBlock("thumbnail_js");
754  $suff = "_js";
755  }
756 
757  $tpl->setCurrentBlock("thumb" . $suff);
758  $tpl->setVariable(
759  "THUMB",
760  $this->thumbs_gui->getThumbHtml($a_id)
761  );
762  $tpl->parseCurrentBlock();
763 
764  if ($this->getSetLinkTargetScript() !== "") {
765  $tpl->setCurrentBlock("thumbnail_link");
766  } else {
767  $tpl->setCurrentBlock("thumbnail_js");
768  }
769  $tpl->parseCurrentBlock();
770  }
771 
772  public function changeLinkType(): void
773  {
774  $ctrl = $this->ctrl;
775 
776  $ctrl->setParameter($this, "link_type", $this->request->getLinkType());
777  $base_type = explode("_", $this->request->getLinkType())[0];
778  if ($this->parent_type[$base_type] !== ilObject::_lookupType($this->parent_ref_id, true)) {
779  $ctrl->setParameter($this, "link_par_ref_id", 0);
780  $ctrl->setParameter($this, "link_par_obj_id", 0);
781  }
782 
783  $ctrl->redirect($this, "showLinkHelp", "", true);
784  }
785 
789  public function setMedPoolFolder(): void
790  {
791  $ctrl = $this->ctrl;
792  $ctrl->setParameter($this, "link_par_fold_id", $this->request->getMediaPoolFolder());
793  $ctrl->redirect($this, "showLinkHelp", "", true);
794  }
795 
799  public function getTargetExplorer(): string
800  {
801  //$ilCtrl->setParameter($this, "target_type", $a_type);
802  $exp = new ilLinkTargetObjectExplorerGUI($this, "getTargetExplorer", $this->link_type);
803 
804  $a_type = $this->parent_type[$this->base_link_type] ?? "";
805 
806  $white = array("root", "cat", "crs", "fold", "grp");
807 
808  $white[] = $a_type;
809  $exp->setClickableType($a_type);
810  if ($a_type === "prtf") {
811  $white[] = "prtt";
812  $exp->setClickableType("prtt");
813  }
814 
815  $exp->setTypeWhiteList($white);
816 
817 
818  if (!$exp->handleCommand()) {
819  return $exp->getHTML();
820  }
821  return "";
822  }
823 
827  public function changeTargetObject(
828  string $a_type = ""
829  ): void {
830  $ilCtrl = $this->ctrl;
831 
832  $ilCtrl->setParameter($this, "link_par_fold_id", "");
833  if ($this->request->getDo() === "set") {
834  $ilCtrl->setParameter($this, "link_par_ref_id", $this->request->getSelectedId());
835  $ilCtrl->redirect($this, "showLinkHelp", "", true);
836  return;
837  }
838 
839  $ilCtrl->setParameter($this, "link_type", $this->link_type);
840 
841  $tpl = new ilTemplate("tpl.link_help_explorer.html", true, true, "components/ILIAS/COPage/IntLink");
842 
843  $output = $this->getTargetExplorer();
844 
845  $tpl->setVariable("TXT_EXPLORER_HEADER", $this->lng->txt("cont_choose_" . ($this->parent_type[$this->base_link_type] ?? "")));
846 
847  $tpl->setVariable("EXPLORER", $output);
848  $tpl->setVariable("ACTION", $this->ctrl->getFormAction($this, "resetLinkList", "", true));
849  $tpl->setVariable("BTN_RESET", "resetLinkList");
850  $tpl->setVariable("TXT_RESET", $this->lng->txt("back"));
851 
852  if (($this->parent_type[$this->base_link_type] ?? "") === "mep") {
853  $tpl->setCurrentBlock("sel_clipboard");
854  $this->ctrl->setParameter($this, "do", "set");
855  if ($ilCtrl->isAsynch()) {
856  $tpl->setVariable("LINK_CLIPBOARD", "#");
857  $tpl->setVariable(
858  "CLIPBOARD_ONCLICK",
859  " onclick=\"return il.IntLink.selectLinkTargetObject('mep', 0, '" . $this->link_type . "');\" "
860  );
861  } else {
862  $tpl->setVariable("LINK_CLIPBOARD", $this->ctrl->getLinkTarget($this, "changeTargetObject"));
863  }
864  $tpl->setVariable("TXT_PERS_CLIPBOARD", $this->lng->txt("clipboard"));
865  $tpl->parseCurrentBlock();
866  }
867 
868  $tpl->parseCurrentBlock();
869 
870  echo $tpl->get();
871  exit;
872  }
873 
874 
878  public function selectRepositoryItem(): string
879  {
880  $ilCtrl = $this->ctrl;
881 
882  $ilCtrl->setParameter($this, "link_par_fold_id", "");
883 
884  $exp = new ilIntLinkRepItemExplorerGUI($this, "selectRepositoryItem");
885  $exp->setSetLinkTargetScript($this->getSetLinkTargetScript());
886 
887  if (!$exp->handleCommand()) {
888  return $exp->getHTML();
889  }
890  return "";
891  }
892 
896  public function refreshRepositorySelector(): void
897  {
898  $output = $this->selectRepositoryItem();
899  echo $output;
900  exit;
901  }
902 
903  public static function getOnloadCode(string $a_url): string
904  {
905  return "il.Util.addOnLoad(function() {il.IntLink.init({url: '$a_url'});});";
906  }
907 
911  public static function getInitHTML(string $a_url): string
912  {
913  global $DIC;
914 
915  $lng = $DIC->language();
916  $tpl = $DIC["tpl"];
917 
918  $tpl->addOnLoadCode(
919  self::getOnloadCode($a_url)
920  );
921 
922  $lng->loadLanguageModule("link");
923 
924  $debug = false;
925 
926  $tpl->addJavaScript("assets/js/ilExplorer.js");
928 
929  if ($debug) {
930  $tpl->addJavascript("../components/ILIAS/COPage/IntLink/resources/ilIntLink.js");
931  } else {
932  $tpl->addJavascript("assets/js/ilIntLink.js");
933  }
934 
935  // #18721
936  $tpl->addJavaScript("assets/js/Form.js");
937 
938  $mt = self::getModalTemplate();
939  $tpl->addOnLoadCode('il.IntLink.setModalTemplate("' . addslashes(json_encode($mt["template"])) . '");');
940 
941  $html = "<div id='ilIntLinkModal' data-show-signal='" . $mt["show"] . "' data-close-signal='" . $mt["close"] . "'></div>";
942 
943  return $html;
944  }
945 
946  public static function getModalTemplate(): array
947  {
948  global $DIC;
949 
950  $lng = $DIC->language();
951 
952  $ui = $DIC->ui();
953  $modal = $ui->factory()->modal()->roundtrip($lng->txt("link_link"), $ui->factory()->legacy()->content("<div id='ilIntLinkModalContent'></div>"));
954  $modalt["show"] = $modal->getShowSignal()->getId();
955  $modalt["close"] = $modal->getCloseSignal()->getId();
956  $modalt["template"] = $ui->renderer()->renderAsync($modal);
957 
958  return $modalt;
959  }
960 
961 
965  public function renderLink(
966  ilGlobalTemplate $tpl,
967  string $a_title,
968  int $a_obj_id,
969  string $a_type,
970  string $a_type_short,
971  string $a_bb_type,
972  array $a_anchors = array(),
973  string $a_link_content = ""
974  ): void {
975  $chapterRowBlock = "chapter_row_js";
976  $anchor_row_block = "anchor_link_js";
977 
978  $target_str = ($this->link_target === "")
979  ? ""
980  : " target=\"" . $this->link_target . "\"";
981 
982  if (count($a_anchors) > 0) {
983  foreach ($a_anchors as $anchor) {
984  if ($this->getSetLinkTargetScript() !== "") {
985  // not implemented yet (anchors that work with map areas)
986 
987  /*$tpl->setCurrentBlock("anchor_link");
988  $tpl->setVariable("ALINK",
989  ilUtil::appendUrlParameterString($this->getSetLinkTargetScript(),
990  "linktype=".$a_type.
991  "&linktarget=il__".$a_type_short."_".$a_obj_id.
992  "&linktargetframe=".$this->link_target).
993  "&linkanchor=".$anchor);
994  $tpl->setVariable("TXT_ALINK", "#" . $anchor);
995  $tpl->parseCurrentBlock();*/
996  } else {
997  $tpl->setCurrentBlock($anchor_row_block);
998  $tpl->setVariable(
999  "ALINK_BEGIN",
1000  $this->prepareJavascriptOutput("[iln " . $a_bb_type . "=\"" . $a_obj_id . "\"" . $target_str . " anchor=\"$anchor\"]")
1001  );
1002  $tpl->setVariable("ALINK_END", "[/iln]");
1003  $tpl->setVariable("TXT_LINK", "#" . $anchor);
1004  $tpl->parseCurrentBlock();
1005  }
1006  }
1007  }
1008 
1009  if ($this->getSetLinkTargetScript() !== "") {
1011  if ($a_type === "MediaObject") {
1012  $this->outputThumbnail($tpl, $a_obj_id);
1013  }
1014  $tpl->setCurrentBlock("link_row");
1015  $tpl->setVariable("TXT_CHAPTER", $a_title);
1016  $tpl->setVariable(
1017  "LINK",
1019  $this->getSetLinkTargetScript(),
1020  "linktype=" . $a_type .
1021  "&linktarget=il__" . $a_type_short . "_" . $a_obj_id .
1022  "&linktargetframe=" . $this->link_target
1023  )
1024  );
1025  } else {
1026  $tpl->setCurrentBlock($chapterRowBlock);
1027  if ($a_type === "MediaObject") {
1028  $this->outputThumbnail($tpl, $a_obj_id);
1029  $tpl->setCurrentBlock($chapterRowBlock);
1030  }
1031  $tpl->setVariable("TXT_CHAPTER", $a_title);
1032  if ($a_type === "MediaObject" && empty($target_str)) {
1033  $tpl->setVariable(
1034  "LINK_BEGIN",
1035  $this->prepareJavascriptOutput("[iln " . $a_bb_type . "=\"" . $a_obj_id . "\"/]")
1036  );
1037  $tpl->setVariable("LINK_END", "");
1038  } else {
1039  $tpl->setVariable(
1040  "LINK_BEGIN",
1041  $this->prepareJavascriptOutput("[iln " . $a_bb_type . "=\"" . $a_obj_id . "\"" . $target_str . "]")
1042  );
1043  $tpl->setVariable("LINK_CONTENT", $a_link_content);
1044  $tpl->setVariable("LINK_END", "[/iln]");
1045  }
1046  }
1047  $tpl->parseCurrentBlock();
1048 
1049  $tpl->setCurrentBlock("row");
1050  $tpl->parseCurrentBlock();
1051  }
1052 
1056  public function addUser(): string
1057  {
1058  $form = $this->initUserSearchForm();
1059  return $form->getHTML() . $this->getUserSearchResult();
1060  }
1061 
1066  {
1067  $form = new ilPropertyFormGUI();
1068  $form->setId("link_user_search_form");
1069 
1070  // user search
1071  $ti = new ilTextInputGUI($this->lng->txt("obj_user"), "usr_search_str");
1072  $ti->setValue($this->request->getUserSearchStr());
1073  $form->addItem($ti);
1074 
1075  $form->addCommandButton("searchUser", $this->lng->txt("search"));
1076 
1077  return $form;
1078  }
1079 
1083  public function getUserSearchResult(): string
1084  {
1085  global $DIC;
1086 
1087  $lng = $DIC->language();
1088 
1089  if (strlen($this->request->getUserSearchStr()) < 3) {
1090  if (strlen($this->request->getUserSearchStr()) > 0) {
1091  $lng->loadLanguageModule("search");
1092  return ilUtil::getSystemMessageHTML($lng->txt("search_minimum_three"), "info");
1093  }
1094 
1095  return "";
1096  }
1097 
1098  $form = $this->initUserSearchForm();
1099  $form->checkInput();
1100 
1101  $users = ilInternalLink::searchUsers($form->getInput("usr_search_str"));
1102  if (count($users) === 0) {
1103  return ilUtil::getSystemMessageHTML($lng->txt("cont_user_search_did_not_match"), "info");
1104  }
1105 
1106  $f = $DIC->ui()->factory();
1107  $r = $DIC->ui()->renderer();
1108  $lng = $DIC->language();
1109  $cards = array();
1110  foreach ($users as $user) {
1111  $b = $f->button()->standard($lng->txt("insert"), "#")
1112  ->withOnLoadCode(function ($id) use ($user) {
1113  return
1114  '$("#' . $id . "\").click(function(ev) { il.IntLink.addInternalLink('[iln user=\"" .
1115  ilObjUser::_lookupLogin($user) . "\"/]', '', ev); return false;});";
1116  });
1117  $name = ilUserUtil::getNamePresentation($user);
1118  $cards[] = $f->card()->standard($name, $f->image()->responsive(ilObjUser::_getPersonalPicturePath($user, "small"), $name))
1119  ->withSections(array($b));
1120  }
1121  $deck = $f->deck($cards)->withLargeCardsSize();
1122 
1123  return $r->renderAsync($deck);
1124  }
1125 }
static getAllPortfolioPages(int $a_portfolio_id)
Get pages of portfolio.
static getStyleSheetLocation(string $mode="output", string $a_css_name="")
get full style sheet file name (path inclusive) of current user
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static appendUrlParameterString(string $a_url, string $a_par, bool $xml_style=false)
static getInitHTML(string $a_url)
Get initialisation HTML to use internal link editing.
static getSystemMessageHTML(string $a_txt, string $a_type="info")
Get HTML for a system message.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setVariable(string $variable, $value='')
Sets the given variable to the given value.
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...
special template class to simplify handling of ITX/PEAR
static _readAnchors(string $a_parent_type, int $a_page_id, string $a_page_lang="-")
Read anchors of a page.
getUserSearchResult()
Search user.
setReturn(string $a_return)
This class represents a file property in a property form.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static lookupForeignId(int $a_id)
changeTargetObject(string $a_type="")
Cange target object.
isInTree(?int $a_node_id)
get all information of a node.
parseCurrentBlock(string $part=self::DEFAULT_BLOCK)
outputThumbnail(ilGlobalTemplate $tpl, int $a_id, string $a_mode="")
output thumbnail
static formSelect( $selected, string $varname, array $options, bool $multiple=false, bool $direct_text=false, int $size=0, string $style_class="", array $attribs=[], bool $disabled=false)
Builds a select form field with options and shows the selected option first.
static getOnloadCode(string $a_url)
getFileLinkHTML()
Get HTML for file link.
loadLanguageModule(string $a_module)
Load language module.
Internal link selector.
showLinkHelp()
Show link help list.
filterLinkType(string $a_link_type)
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(string $a_default_link_type, int $a_default_parent_id, bool $a_is_ref=true)
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link='', bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path='ilpublicuserprofilegui')
Default behaviour is:
static _lookupTitle(int $obj_id)
getTargetExplorer()
Cange target object.
redirect(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
renderLink(ilGlobalTemplate $tpl, string $a_title, int $a_obj_id, string $a_type, string $a_type_short, string $a_bb_type, array $a_anchors=array(), string $a_link_content="")
Render internal link item.
Class ilObjFile.
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)
ILIAS MediaObjects Thumbs ThumbsGUI $thumbs_gui
static redirect(string $a_script)
static _getPersonalPicturePath(int $a_usr_id, string $a_size='small', bool $a_force_pic=false, bool $a_prevent_no_photo_image=false, bool $html_export=false)
setMedPoolFolder()
select media pool folder
static _recoverParameters()
Recover parameters from session variables (static)
setFilterWhiteList(bool $a_white_list)
Set filter list as white list (per detault it is a black list)
prepareJavascriptOutput(string $str)
Prepare output for JS enabled editing.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getPageList(int $lm_id)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
initUserSearchForm()
Init user search form.
saveFileLink()
Save file link.
setCurrentBlock(string $part=self::DEFAULT_BLOCK)
setParameter(object $a_gui_obj, string $a_parameter, $a_value)
selectRepositoryItem()
select repository item explorer
StandardGUIRequest $request
static getAllWikiPages(int $a_wiki_id, string $lang="-")
static _lookupType(int $id, bool $reference=false)
setSetLinkTargetScript(string $a_script)
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static init(?ilGlobalTemplateInterface $a_main_tpl=null)
$r
refreshRepositorySelector()
Refresh Repository Selector.
static _lookupLogin(int $a_user_id)