ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
RepositoryLinkItemRenderer.php
Go to the documentation of this file.
1 <?php
2 
4 
9 
14 {
16 
20  public function getComponentWithContent(isItem $item) : Component
21  {
22  if ($item instanceof isInterchangeableItem && !$item->getParent()) {
23  return $this->ui_factory->link()->bulky($this->getStandardSymbol($item), $item->getTitle(), $this->getURI($item->getAction()));
24  } else {
25  return $this->ui_factory->link()->bulky($this->getStandardSymbol($item), $item->getTitle(), $this->getURI($item->getAction()));
26  }
27  }
28 }