19 declare(strict_types=1);
31 if (!array_key_exists($result_set[
'item_id'], $valid_threads)) {
37 $row[
'title'] = $valid_threads[$result_set[
'item_id']];
39 $DIC->ctrl()->setParameterByClass(ilObjForumGUI::class,
'thr_pk', $result_set[
'item_id']);
40 $row[
'link'] = $DIC->ctrl()->getLinkTargetByClass(ilObjForumGUI::class,
'viewThread');
42 $row[
'content'] = (string) ($result_set[
'content'] ??
'');
50 protected function fillRow(array $a_set): void
52 $this->tpl->setVariable(
'HREF_ITEM', $a_set[
'link']);
53 $this->tpl->setVariable(
'TXT_ITEM_TITLE', $a_set[
'title']);
55 if ($a_set[
'content'] !==
'') {
56 $this->tpl->setVariable(
'HIGHLIGHT_CONTENT', $a_set[
'content']);
static getSortedThreadSubjects(int $a_obj_id, int $a_sort_mode=self::SORT_DATE)