19 declare(strict_types=1);
54 $this->root_node = $root;
56 $this->
ctrl->setParameter($this->parent_obj,
'thr_pk', $this->thread->getId());
59 $this->max_entries = $frm->getPageHits();
66 return $this->root_node->getId();
71 return $this->authorInformation[(
int) $node[
'pos_pk']] ?? ($this->authorInformation[(
int) $node[
'pos_pk']] =
new ilForumAuthorInformation(
72 (
int) ($node[
'pos_author_id'] ?? 0),
73 (
int) $node[
'pos_display_user_id'],
74 (
string) $node[
'pos_usr_alias'],
75 (
string) $node[
'import_name']
81 if ($this->preloaded) {
82 return $this->preloaded_children[$a_parent_node_id] ?? [];
85 return $this->thread->getNestedSetPostChildren($a_parent_node_id, 1);
90 $this->preloaded_children = [];
92 $children = $this->thread->getNestedSetPostChildren($this->root_node->getId());
94 array_walk($children,
function ($node,
$key):
void {
95 if (!array_key_exists((
int) $node[
'pos_pk'], $this->preloaded_children)) {
96 $this->preloaded_children[(
int) $node[
'pos_pk']] = [];
99 $this->preloaded_children[(
int) $node[
'parent_pos']][$node[
'pos_pk']] = $node;
102 $this->preloaded =
true;
112 return $this->
lng->txt(
"frm_posts");
119 'pos_pk' => $this->root_node->getId(),
120 'pos_subject' => $this->root_node->getSubject(),
121 'pos_author_id' => $this->root_node->getPosAuthorId(),
122 'pos_display_user_id' => $this->root_node->getDisplayUserId(),
123 'pos_usr_alias' => $this->root_node->getUserAlias(),
124 'pos_date' => $this->root_node->getCreateDate(),
125 'import_name' => $this->root_node->getImportName(),
126 'post_read' => $this->root_node->isPostRead()
130 return $this->
ui->factory()->tree()
132 ->withData($rootNode)
133 ->withHighlightOnNodeClick(
false);
143 if ($nodeIconPath !==
'') {
151 if ((
int) $record[
'pos_pk'] === $this->root_node->getId()) {
156 $bylineString = $authorInfo->getAuthorShortName() .
', ' . $creationDate;
158 $node = $factory->bylined($this->
getNodeContent($record), $bylineString, $icon);
167 ilRepositoryGUI::class,
168 ilObjForumGUI::class,
174 return (isset($a_node[
'pos_pk']) ? (
int) $a_node[
'pos_pk'] : 0);
192 $this->
ctrl->setParameter($this->parent_obj,
'backurl', null);
194 if (isset($a_node[
'counter']) && $a_node[
'counter'] > 0) {
196 $this->
ctrl->setParameter($this->parent_obj,
'page', $page);
199 if (isset($a_node[
'post_read']) && $a_node[
'post_read']) {
200 $this->
ctrl->setParameter($this->parent_obj,
'pos_pk', null);
201 $url = $this->
ctrl->getLinkTarget($this->parent_obj, $this->parent_cmd, (
string) $a_node[
'pos_pk']);
203 $this->
ctrl->setParameter($this->parent_obj,
'pos_pk', $a_node[
'pos_pk']);
204 $url = $this->
ctrl->getLinkTarget($this->parent_obj,
'markPostRead', (
string) $a_node[
'pos_pk']);
205 $this->
ctrl->setParameter($this->parent_obj,
'pos_pk', null);
208 $this->
ctrl->setParameter($this->parent_obj,
'page', null);
215 return $a_node[
'pos_subject'];
getNodeStateToggleCmdClasses($record)
setSkipRootNode(bool $a_val)
Class Forum core functions for forum.
static _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
createNode(\ILIAS\UI\Component\Tree\Node\Factory $factory, $record)
Class ilForumExplorerGUI.
Class ChatMainBarProvider .
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
setNodeOpen($a_id)
Set node to be opened (additional custom opened node, not standard expand behaviour) ...
__construct(string $a_expl_id, object $a_parent_obj, string $a_parent_cmd, ilForumTopic $thread, ilForumPost $root)
getChildsOfNode($a_parent_node_id)
getNodeIconAlt($a_node)
Get node icon alt attribute.
setPreloadChilds(bool $a_val)
getChildren($record, $environment=null)
Get a list of records (that list can also be empty).
getAuthorInformationByNode(array $node)
This describes a Tree Control.
Explorer class that works on tree objects (Services/Tree)
__construct(Container $dic, ilPlugin $plugin)
array $preloaded_children