ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilForumNewsRendererGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 {
28  public function getObjectLink(): string
29  {
30  $link_target_suffix = '';
31  $news = $this->getNewsItem();
32 
33  if ($news->getContextSubObjType() === 'pos' && $news->getContextSubObjId() > 0) {
34  $pos = $news->getContextSubObjId();
36  if ($thread > 0) {
37  $link_target_suffix = '_' . $thread . '_' . $pos;
38  }
39  }
40 
41  return ilLink::_getLink($this->getNewsRefId(), '', [], $link_target_suffix);
42  }
43 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getObjectLink()
Get link href for object link.
static _getThreadForPosting(int $a_pos_id)