1 <?php declare(strict_types=1);
56 $this->root_node = $root;
58 $this->ctrl->setParameter($this->parent_obj,
'thr_pk', $this->thread->getId());
61 $this->max_entries = (int) $frm->getPageHits();
73 $postingId = (int) ($this->httpRequest->getParsedBody()[
'pos_pk'] ?? 0);
74 if (0 === $postingId) {
75 $postingId = (int) ($this->httpRequest->getQueryParams()[
'pos_pk'] ?? 0);
78 $this->currentPostingId = (int) $postingId;
86 if ($this->preloaded) {
87 if (isset($this->preloaded_children[$parentNodeId])) {
88 return $this->preloaded_children[$parentNodeId];
94 return $this->thread->getNestedSetPostChildren($parentNodeId, 1);
110 $this->preloaded_children = [];
111 $this->node_id_to_parent_node_id_map = [];
113 $children = $this->thread->getNestedSetPostChildren($this->root_node->getId());
115 array_walk($children,
function (&$node, $key) {
116 $this->node_id_to_parent_node_id_map[(int) $node[
'pos_pk']] = (
int) $node[
'parent_pos'];
118 if (!array_key_exists((
int) $node[
'pos_pk'], $this->preloaded_children)) {
119 $this->preloaded_children[(int) $node[
'pos_pk']] = [];
122 $this->preloaded_children[(int) $node[
'parent_pos']][$node[
'pos_pk']] = $node;
125 $this->preloaded =
true;
141 return $this->lng->txt(
"frm_posts");
151 'pos_pk' => $this->root_node->getId(),
152 'pos_subject' => $this->root_node->getSubject(),
153 'pos_author_id' => $this->root_node->getPosAuthorId(),
154 'pos_display_user_id' => $this->root_node->getDisplayUserId(),
155 'pos_usr_alias' => $this->root_node->getUserAlias(),
156 'pos_date' => $this->root_node->getCreateDate(),
157 'import_name' => $this->root_node->getImportName(),
158 'post_read' => $this->root_node->isPostRead()
162 $tree = $this->
ui->factory()->tree()
164 ->withData($rootNode)
165 ->withHighlightOnNodeClick(
false);
180 if (is_string($nodeIconPath) && strlen($nodeIconPath) > 0) {
188 if ((
int) $record[
'pos_pk'] === (
int) $this->root_node->getId()) {
193 $bylineString = $authorInfo->getAuthorShortName() .
', ' . $creationDate;
195 $node = $factory->bylined($this->
getNodeContent($record), $bylineString, $icon);
218 if (isset($this->authorInformation[(
int) $node[
'pos_pk']])) {
219 return $this->authorInformation[(int) $node[
'pos_pk']];
223 $node[
'pos_author_id'],
224 $node[
'pos_display_user_id'],
225 $node[
'pos_usr_alias'],
235 return $a_node[
'pos_pk'];
243 if ((
int) $this->root_node->getId() === (int) $node[
'pos_pk']) {
244 return ilObject::_getIcon(0,
'tiny',
'frm');
255 if ((
int) $this->root_node->getId() === (int) $node[
'pos_pk']) {
259 $this->ctrl->setParameter($this->parent_obj,
'backurl', null);
261 if (isset($node[
'counter']) && $node[
'counter'] > 0) {
263 $this->ctrl->setParameter($this->parent_obj,
'page', $page);
266 if (isset($node[
'post_read']) && $node[
'post_read']) {
267 $this->ctrl->setParameter($this->parent_obj,
'pos_pk', null);
268 $url = $this->ctrl->getLinkTarget($this->parent_obj, $this->parent_cmd, $node[
'pos_pk'],
false,
false);
270 $this->ctrl->setParameter($this->parent_obj,
'pos_pk', $node[
'pos_pk']);
271 $url = $this->ctrl->getLinkTarget($this->parent_obj,
'markPostRead', $node[
'pos_pk'],
false,
false);
272 $this->ctrl->setParameter($this->parent_obj,
'pos_pk', null);
275 $this->ctrl->setParameter($this->parent_obj,
'page', null);
285 return $a_node[
'pos_subject'];
getNodeStateToggleCmdClasses($record)
setCurrentPage(int $currentPage)
Class Forum core functions for forum.
createNode(\ILIAS\UI\Component\Tree\Node\Factory $factory, $record)
Class ilForumExplorerGUI.
Class ChatMainBarProvider .
setSkipRootNode($a_val)
Set skip root node.
This describes a Tree Node.
getChildsOfNode($parentNodeId)
setNodeOpen($a_id)
Set node to be opened (additional custom opened node, not standard expand behaviour) ...
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
setPreloadChilds($a_val)
Set preload childs.
__construct(string $a_expl_id, object $a_parent_obj, string $a_parent_cmd, ilForumTopic $thread, ilForumPost $root)
ilForumExplorerGUI constructor.
getNodeIconAlt($a_node)
Get node icon alt attribute.
getChildren($record, $environment=null)
getAuthorInformationByNode(array $node)
This describes a Tree Control.
Explorer class that works on tree objects (Services/Tree)
__construct(Container $dic, ilPlugin $plugin)
$node_id_to_parent_node_id_map