19 declare(strict_types=1);
36 public function init(): void
38 $this->static_link_enabled =
true;
39 $this->delete_enabled =
true;
40 $this->cut_enabled =
true;
41 $this->copy_enabled =
true;
42 $this->subscribe_enabled =
true;
43 $this->link_enabled =
true;
44 $this->info_screen_enabled =
true;
46 $this->gui_class_name = ilObjForumGUI::class;
53 $this->child_id = $a_child_id;
65 $maySee = $this->rbacsystem->checkAccess(
'visible', $this->ref_id);
66 $mayRead = $this->rbacsystem->checkAccess(
'read', $this->ref_id);
68 if (!$maySee && !$mayRead) {
72 $props = parent::getProperties();
78 $this->
lng->loadLanguageModule(
'forum');
81 $num_posts_total = $properties[
'num_posts'];
82 $num_unread_total = $properties[
'num_unread_posts'];
84 $num_drafts_total = 0;
87 $num_drafts_total = $drafts_statistics[
'total'];
90 $frm_overview_setting = (
int) (
new ilSetting(
'frma'))->
get(
96 $num_new_total = $properties[
'num_new_posts'];
99 if (!$this->
user->isAnonymous()) {
103 'property' => $this->
lng->txt(
'forums_articles') .
' (' . $this->
lng->txt(
'unread') .
')',
104 'value' => $num_posts_total .
' (' . $num_unread_total .
')' 109 'property' => $this->
lng->txt(
'forums_new_articles'),
110 'value' => $num_new_total
118 'property' => $this->
lng->txt(
'drafts'),
119 'value' => $num_drafts_total
125 'property' => $this->
lng->txt(
'forums_articles'),
126 'value' => $num_posts_total
137 'property' => $this->
lng->txt(
'forums_anonymized'),
138 'value' => $this->
lng->txt(
'yes')
143 if (is_array($last_post) && $last_post[
'pos_pk'] > 0) {
145 "\" href=\"ilias.php?baseClass=" . ilRepositoryGUI::class .
"&cmd=viewThread&cmdClass=" .
146 ilObjForumGUI::class .
"&target=true&pos_pk=" .
147 $last_post[
'pos_pk'] .
"&thr_pk=" . $last_post[
'pos_thr_fk'] .
"&ref_id=" .
148 $this->ref_id .
"#" . $last_post[
"pos_pk"] .
"\">" .
150 strtolower($this->
lng->txt(
'from')) .
" ";
153 (
int) $last_post[
'pos_author_id'],
154 (
int) $last_post[
'pos_display_user_id'],
155 (
string) $last_post[
'pos_usr_alias'],
156 (
string) $last_post[
'import_name'],
158 'class' =>
'il_ItemProperty',
159 'href' =>
'ilias.php?baseClass=' . ilRepositoryGUI::class .
'&cmd=showUser&' .
160 'cmdClass=' . ilObjForumGUI::class .
'&ref_id=' . $this->ref_id .
'&' .
161 'user=' . $last_post[
'pos_display_user_id'] .
'&offset=0&backurl=' .
162 urlencode(
'ilias.php?baseClass=' . ilRepositoryGUI::class .
'&ref_id=' . $this->ref_id)
166 $lpCont .= $authorinfo->getLinkedAuthorName();
172 'property' => $this->
lng->txt(
'forums_last_post'),
190 'ilias.php?baseClass=' . ilRepositoryGUI::class .
'&cmd=viewThread&cmdClass=' .
191 ilObjForumGUI::class .
'&ref_id=' . $this->ref_id .
'&thr_pk=' . $this->
getChildId()
198 'ilias.php?baseClass=' . ilRepositoryGUI::class .
'&cmd=viewThread&cmdClass=' .
199 ilObjForumGUI::class .
'&target=1&ref_id=' . $this->ref_id .
'&thr_pk=' .
200 $thread_post[0] .
'&pos_pk=' . $thread_post[1] .
'#' . $thread_post[1]
204 return parent::getCommandLink($cmd);
static getLastPostByRefId(int $ref_id)
static getStatisticsByRefId(int $ref_id)
static prepareMessageForLists(string $text)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
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()
const FORUM_OVERVIEW_WITH_NEW_POSTS
__construct(Container $dic, ilPlugin $plugin)
getCommandFrame(string $cmd)