ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilObjWikiSubItemListGUI.php
Go to the documentation of this file.
1 <?php
2 
25 {
26  protected ilObjUser $user;
27 
28  public function __construct(
29  string $a_cmd_class
30  ) {
31  global $DIC;
32 
33  parent::__construct($a_cmd_class);
34  $this->lng = $DIC->language();
35  $this->user = $DIC->user();
36  }
37 
38  public function getHTML(): string
39  {
40  $lng = $this->lng;
41 
42  $lng->loadLanguageModule('content');
43  foreach ($this->getSubItemIds(true) as $sub_item) {
44  if (is_object($this->getHighlighter()) &&
45  $this->getHighlighter()->getContent($this->getObjId(), $sub_item) !== '') {
46  $this->tpl->setCurrentBlock('sea_fragment');
47  $this->tpl->setVariable('TXT_FRAGMENT', $this->getHighlighter()->getContent($this->getObjId(), $sub_item));
48  $this->tpl->parseCurrentBlock();
49  }
50 
51  $this->tpl->setCurrentBlock('subitem');
52 
53  // TODO: subitem type must returned from lucene
54  $title = (string) ilWikiPage::lookupTitle($sub_item);
55  if ($title !== '') {
56  // Page
57  $this->tpl->setVariable('SUBITEM_TYPE', $lng->txt('obj_pg'));
58  $this->tpl->setVariable('SEPERATOR', ':');
59 
60  $link = '&srcstring=1';
61  $link = ilObjWikiGUI::getGotoLink($this->getRefId(), $title) . $link;
62 
63  $this->tpl->setVariable('LINK', $link);
64  $this->tpl->setVariable('TARGET', $this->getItemListGUI()->getCommandFrame(''));
65  $this->tpl->setVariable('TITLE', $title);
66  } else {
67  $this->tpl->setVariable('SUBITEM_TYPE', $lng->txt('obj_file'));
68  $this->tpl->setVariable('SEPERATOR', ':');
69 
70  // File
71  $this->getItemListGUI()->setChildId('il__file_' . $sub_item);
72  $link = $this->getItemListGUI()->getCommandLink('downloadFile');
73  $this->tpl->setVariable('LINK', $link);
74  $this->tpl->setVariable('TITLE', ilObject::_lookupTitle($sub_item));
75  }
76  $this->tpl->parseCurrentBlock();
77 
78  if (count($this->getSubItemIds(true)) > 1) {
79  $this->parseRelevance($sub_item);
80  }
81 
82  $this->tpl->parseCurrentBlock();
83  }
84 
85  $this->showDetailsLink();
86 
87  return $this->tpl->get();
88  }
89 }
getSubItemIds(bool $limited=false)
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...
parseRelevance(int $sub_item)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
loadLanguageModule(string $a_module)
Load language module.
global $DIC
Definition: feed.php:28
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupTitle(int $obj_id)
static getGotoLink(int $a_ref_id, string $a_page="")
static lookupTitle(int $a_page_id)
__construct(Container $dic, ilPlugin $plugin)