19 declare(strict_types=1);
31 public function init(): void
33 $this->static_link_enabled =
true;
34 $this->delete_enabled =
true;
35 $this->cut_enabled =
true;
36 $this->copy_enabled =
true;
37 $this->subscribe_enabled =
true;
38 $this->link_enabled =
true;
39 $this->info_screen_enabled =
true;
41 $this->gui_class_name = ilObjForumGUI::class;
48 $this->child_id = $a_child_id;
60 $maySee = $this->rbacsystem->checkAccess(
'visible', $this->ref_id);
61 $mayRead = $this->rbacsystem->checkAccess(
'read', $this->ref_id);
63 if (!$maySee && !$mayRead) {
67 $props = parent::getProperties();
73 $this->
lng->loadLanguageModule(
'forum');
76 $num_posts_total = $properties[
'num_posts'];
77 $num_unread_total = $properties[
'num_unread_posts'];
79 $num_drafts_total = 0;
82 $num_drafts_total = $drafts_statistics[
'total'];
86 if (!$this->
user->isAnonymous()) {
90 'property' => $this->
lng->txt(
'forums_articles') .
' (' . $this->
lng->txt(
'unread') .
')',
91 'value' => $num_posts_total .
' (' . $num_unread_total .
')' 98 'property' => $this->
lng->txt(
'drafts'),
99 'value' => $num_drafts_total
105 'property' => $this->
lng->txt(
'forums_articles'),
106 'value' => $num_posts_total
117 'property' => $this->
lng->txt(
'forums_anonymized'),
118 'value' => $this->
lng->txt(
'yes')
123 if (is_array($last_post) && $last_post[
'pos_pk'] > 0) {
125 "\" href=\"ilias.php?baseClass=" . ilRepositoryGUI::class .
"&cmd=viewThread&cmdClass=" .
126 ilObjForumGUI::class .
"&target=true&pos_pk=" .
127 $last_post[
'pos_pk'] .
"&thr_pk=" . $last_post[
'pos_thr_fk'] .
"&ref_id=" .
128 $this->ref_id .
"#" . $last_post[
"pos_pk"] .
"\">" .
130 strtolower($this->
lng->txt(
'from')) .
" ";
133 (
int) $last_post[
'pos_author_id'],
134 (
int) $last_post[
'pos_display_user_id'],
135 (
string) $last_post[
'pos_usr_alias'],
136 (
string) $last_post[
'import_name'],
138 'class' =>
'il_ItemProperty',
139 'href' =>
'ilias.php?baseClass=' . ilRepositoryGUI::class .
'&cmd=showUser&' .
140 'cmdClass=' . ilObjForumGUI::class .
'&ref_id=' . $this->ref_id .
'&' .
141 'user=' . $last_post[
'pos_display_user_id'] .
'&offset=0&backurl=' .
142 urlencode(
'ilias.php?baseClass=' . ilRepositoryGUI::class .
'&ref_id=' . $this->ref_id)
146 $lpCont .= $authorinfo->getLinkedAuthorName();
152 'property' => $this->
lng->txt(
'forums_last_post'),
165 'ilias.php?baseClass=' . ilRepositoryGUI::class .
'&cmd=viewThread&cmdClass=' .
166 ilObjForumGUI::class .
'&ref_id=' . $this->ref_id .
'&thr_pk=' . $this->
getChildId()
173 'ilias.php?baseClass=' . ilRepositoryGUI::class .
'&cmd=viewThread&cmdClass=' .
174 ilObjForumGUI::class .
'&target=1&ref_id=' . $this->ref_id .
'&thr_pk=' .
175 $thread_post[0] .
'&pos_pk=' . $thread_post[1] .
'#' . $thread_post[1]
179 return parent::getCommandLink($cmd);
static getLastPostByRefId(int $ref_id)
static getStatisticsByRefId(int $ref_id)
static prepareMessageForLists(string $text)
getCommandLink(string $cmd)
static getInstance(int $a_obj_id=0)
static lookupOfflineStatus(int $obj_id)
Lookup offline status using objectDataCache.
static getDraftsStatisticsByRefId(int $ref_id)
setChildId(int $a_child_id)
static isSavePostDraftAllowed()
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)