19 declare(strict_types=1);
37 private readonly \ILIAS\DI\RBACServices
$rbac;
41 public function __construct(
int $a_id = 0,
bool $a_call_by_reference =
true)
48 $this->
rbac = $DIC->rbac();
49 $this->
logger = $DIC->logger()->root();
57 $id = parent::create();
60 $properties->setDefaultView(
63 $properties->setAnonymisation(
false);
64 $properties->setStatisticsStatus(
false);
65 $properties->setPostActivation(
false);
66 $properties->insert();
79 parent::setPermissions($parent_ref_id);
81 $roles = [self::_lookupModeratorRole($this->
getRefId())];
82 $this->
rbac->admin()->assignUser($roles[0], $this->
getOwner());
88 $this->db->manipulate(
89 'UPDATE frm_data SET top_mods = ' . $this->db->quote(
92 ) .
' WHERE top_frm_fk = ' . $this->db->quote($this->
getId(),
'integer')
100 $ilDB = $DIC->database();
102 $res =
$ilDB->queryF(
'SELECT thr_subject FROM frm_threads WHERE thr_pk = %s', [
'integer'], [$a_thread_id]);
103 while ($row =
$ilDB->fetchObject(
$res)) {
104 return $row->thr_subject ??
'';
110 public function getCountUnread(
int $a_usr_id,
int $a_thread_id = 0,
bool $ignoreRoot =
false):
int 112 $a_frm_id = $this->
getId();
117 if ($a_thread_id === 0) {
118 $res = $this->db->queryF(
'SELECT top_pk FROM frm_data WHERE top_frm_fk = %s', [
'integer'], [$a_frm_id]);
119 while ($row = $this->db->fetchObject(
$res)) {
120 $topic_id = (
int) $row->top_pk;
123 $res = $this->db->queryF(
125 SELECT COUNT(pos_pk) num_posts 127 LEFT JOIN frm_posts_tree ON frm_posts_tree.pos_fk = pos_pk 128 WHERE pos_top_fk = %s' . ($ignoreRoot ?
' AND parent_pos != 0 ' :
''),
133 while ($row = $this->db->fetchObject(
$res)) {
134 $num_posts = (
int) $row->num_posts;
137 $res = $this->db->queryF(
138 'SELECT COUNT(post_id) count_read FROM frm_user_read WHERE obj_id = %s AND usr_id = %s',
139 [
'integer',
'integer'],
140 [$a_frm_id, $a_usr_id]
143 while ($row = $this->db->fetchObject(
$res)) {
144 $count_read = (
int) $row->count_read;
147 $res = $this->db->queryF(
149 SELECT COUNT(pos_pk) num_posts FROM frm_posts 150 LEFT JOIN frm_posts_tree ON frm_posts_tree.pos_fk = pos_pk 151 WHERE pos_thr_fk = %s' . ($ignoreRoot ?
' AND parent_pos != 0 ' :
''),
156 $row = $this->db->fetchObject(
$res);
157 $num_posts = (
int) $row->num_posts;
159 $res = $this->db->queryF(
161 SELECT COUNT(post_id) count_read FROM frm_user_read 165 [
'integer',
'integer',
'integer'],
166 [$a_frm_id, $a_frm_id, $a_thread_id]
169 $row = $this->db->fetchObject(
$res);
170 $count_read = (
int) $row->count_read;
172 $unread = $num_posts - $count_read;
174 return max($unread, 0);
179 $res = $this->db->queryF(
'SELECT pos_pk FROM frm_posts WHERE pos_thr_fk = %s', [
'integer'], [$a_thread_id]);
180 while ($row = $this->db->fetchObject(
$res)) {
181 $this->
markPostRead($a_usr_id, $a_thread_id, (
int) $row->pos_pk);
189 $res = $this->db->queryF(
190 'SELECT thr_pk FROM frm_data, frm_threads WHERE top_frm_fk = %s AND top_pk = thr_top_fk',
195 while ($row = $this->db->fetchObject(
$res)) {
200 public function markPostRead(
int $a_usr_id,
int $a_thread_id,
int $a_post_id): void
202 $res = $this->db->queryF(
204 SELECT thread_id FROM frm_user_read 209 [
'integer',
'integer',
'integer',
'integer'],
210 [$a_usr_id, $this->
getId(), $a_thread_id, $a_post_id]
213 if ($this->db->numRows(
$res) === 0) {
214 $this->db->manipulateF(
216 INSERT INTO frm_user_read 222 VALUES (%s,%s,%s,%s)',
223 [
'integer',
'integer',
'integer',
'integer'],
224 [$a_usr_id, $this->
getId(), $a_thread_id, $a_post_id]
231 $this->db->manipulateF(
232 'DELETE FROM frm_user_read WHERE usr_id = %s AND post_id = %s',
233 [
'integer',
'integer'],
234 [$a_user_id, $a_post_id]
238 public function isRead($a_usr_id, $a_post_id): bool
240 $res = $this->db->queryF(
241 'SELECT * FROM frm_user_read WHERE usr_id = %s AND post_id = %s',
242 [
'integer',
'integer'],
243 [$a_usr_id, $a_post_id]
246 return (
bool) $this->db->numRows(
$res);
255 $DIC->database()->manipulateF(
'DELETE FROM frm_user_read WHERE usr_id = %s', [
'integer'],
$data);
256 $DIC->database()->manipulateF(
'DELETE FROM frm_notification WHERE user_id = %s', [
'integer'],
$data);
263 $DIC->database()->manipulateF(
'DELETE FROM frm_user_read WHERE post_id = %s', [
'integer'], [$a_post_id]);
268 $this->db->manipulateF(
269 'UPDATE frm_data SET update_user = %s WHERE top_frm_fk = %s',
270 [
'integer',
'integer'],
271 [$usr_id, $this->
getId()],
277 if (parent::update()) {
278 $this->db->manipulateF(
279 'UPDATE frm_data SET top_name = %s, top_description = %s, top_update = %s, update_user = %s WHERE top_frm_fk = %s',
280 [
'text',
'text',
'timestamp',
'integer',
'integer'],
285 $this->
user->getId(),
296 public function cloneObject(
int $target_id,
int $copy_id = 0,
bool $omit_tree =
false): ?
ilObject 299 $new_obj = parent::cloneObject($target_id, $copy_id, $omit_tree);
303 $this->Forum->setMDB2WhereCondition(
'top_frm_fk = %s ', [
'integer'], [$this->
getId()]);
304 $topData = $this->Forum->getOneTopic();
306 $this->db->update(
'frm_data', [
307 'top_name' => [
'text', $topData->getTopName()],
308 'top_description' => [
'text', $topData->getTopDescription()],
309 'top_num_posts' => [
'integer', $topData->getTopNumPosts()],
310 'top_num_threads' => [
'integer', $topData->getTopNumThreads()],
311 'top_last_post' => [
'text', $topData->getTopLastPost()],
312 'top_date' => [
'timestamp', $topData->getTopDate()],
313 'visits' => [
'integer', $topData->getVisits()],
314 'top_update' => [
'timestamp', $topData->getTopUpdate()],
315 'update_user' => [
'integer', $topData->getUpdateUser()],
316 'top_usr_id' => [
'integer', $topData->getTopUsrId()]
318 'top_frm_fk' => [
'integer', $new_obj->getId()]
322 $options = $cwo->getOptions($this->
getRefId());
324 $options[
'threads'] = $this->Forum::getSortedThreadSubjects($this->
getId());
326 $new_frm = $new_obj->Forum;
327 $new_frm->setMDB2WhereCondition(
'top_frm_fk = %s ', [
'integer'], [$new_obj->getId()]);
329 $new_frm->setForumId($new_obj->getId());
330 $new_frm->setForumRefId($new_obj->getRefId());
332 $new_topic = $new_frm->getOneTopic();
333 foreach (array_keys($options[
'threads']) as $thread_id) {
334 $this->Forum->setMDB2WhereCondition(
'thr_pk = %s ', [
'integer'], [$thread_id]);
336 $old_thread = $this->Forum->getOneThread();
338 $old_post_id = $this->Forum->getRootPostIdByThread($old_thread->getId());
341 $newThread->setSticky($old_thread->isSticky());
342 $newThread->setForumId($new_topic->getTopPk());
343 $newThread->setThrAuthorId($old_thread->getThrAuthorId());
344 $newThread->setDisplayUserId($old_thread->getDisplayUserId());
345 $newThread->setSubject($old_thread->getSubject());
346 $newThread->setUserAlias($old_thread->getUserAlias());
347 $newThread->setCreateDate($old_thread->getCreateDate());
350 $top_pos = $old_thread->getFirstVisiblePostNode();
355 $newPostId = $new_frm->generateThread(
357 $top_pos->getMessage(),
358 $top_pos->isNotificationEnabled(),
361 (bool) ($old_thread->getNumPosts() - 1)
365 $old_forum_files->
ilClone($new_obj->getId(), $newPostId);
369 $targetRefId = $new_obj->getRefId();
372 $sourceRefId > 0 && $targetRefId > 0 &&
373 $this->tree->getParentId($sourceRefId) === $this->tree->getParentId($targetRefId)
375 $grpRefId = $this->tree->checkForParentType($targetRefId,
'grp');
376 $crsRefId = $this->tree->checkForParentType($targetRefId,
'crs');
378 if ($grpRefId > 0 || $crsRefId > 0) {
380 $notifications->cloneFromSource($sourceRefId);
386 foreach ($translations as $language) {
388 $copiedXML = $originalPageObject->copyXmlContent();
391 $duplicatePageObject->setId($new_obj->getId());
392 $duplicatePageObject->setParentId($new_obj->getId());
393 $duplicatePageObject->setLanguage($language);
394 $duplicatePageObject->setXMLContent($copiedXML);
395 $duplicatePageObject->createFromXML();
401 if (!$cwo->isRootNode($this->getRefId())) {
404 $new_obj->setOfflineStatus(
true);
413 $src_moderator_role_id = self::_lookupModeratorRole($this->
getRefId());
414 $new_moderator_role_id = self::_lookupModeratorRole($new_obj->getRefId());
417 0 === $src_moderator_role_id ||
418 0 === $new_moderator_role_id ||
420 0 === $new_obj->getRefId()
422 $this->
logger->write(__METHOD__ .
' : Error cloning auto generated role: il_frm_moderator');
425 $this->
rbac->admin()->copyRolePermissions(
426 $src_moderator_role_id,
428 $new_obj->getRefId(),
429 $new_moderator_role_id,
433 $this->
logger->write(__METHOD__ .
' : Finished copying of role il_frm_moderator.');
436 $src_moderator_usr_ids = $moderators->getCurrentModerators();
437 foreach ($src_moderator_usr_ids as $usr_id) {
440 if ($this->
getOwner() !== $usr_id) {
441 $this->
rbac->admin()->assignUser($new_moderator_role_id, $usr_id);
446 public function delete():
bool 448 $this->Forum->setForumId($this->
getId());
450 if (!parent::delete()) {
456 $originalPageObject->delete();
461 $topData = $this->Forum->getOneTopic();
463 $threads = $this->Forum->getAllThreads($topData->getTopPk(), [
464 'is_moderator' =>
true,
466 $thread_ids_to_delete = [];
467 foreach ($threads[
'items'] as $thread) {
468 $thread_ids_to_delete[$thread->getId()] = $thread->getId();
473 $res = $this->db->query(
474 'SELECT pos_pk FROM frm_posts WHERE ' 478 while ($row =
$res->fetchObject()) {
479 $posting_ids[] = (
int) $row->pos_pk;
483 $tmp_file_obj->delete($posting_ids);
487 $res = $this->db->query(
488 'SELECT draft_id FROM frm_posts_drafts WHERE ' 492 while ($row =
$res->fetchObject()) {
493 $draft_ids[] = (
int) $row->draft_id;
497 $tmp_file_obj->delete($draft_ids);
499 $this->db->manipulate(
500 'DELETE FROM frm_posts_tree WHERE ' . $this->db->in(
502 $thread_ids_to_delete,
507 $this->db->manipulate(
508 'DELETE FROM frm_posts WHERE ' . $this->db->in(
510 $thread_ids_to_delete,
515 $this->db->manipulate(
516 'DELETE FROM frm_threads WHERE ' . $this->db->in(
518 $thread_ids_to_delete,
524 $obj_id = [$this->
getId()];
529 $this->db->manipulate(
530 'DELETE FROM frm_notification WHERE ' . $this->db->in(
532 $thread_ids_to_delete,
546 $res = $this->db->queryF(
547 'SELECT draft_id FROM frm_posts_drafts WHERE forum_id = %s',
553 while ($row = $this->db->fetchAssoc(
$res)) {
554 $draft_ids[] = (
int) $row[
'draft_id'];
557 if ($draft_ids !== []) {
559 $historyObj->deleteHistoryByDraftIds($draft_ids);
562 $draftObj->deleteDraftsByDraftIds($draft_ids);
569 'il_frm_moderator_' . $this->
getRefId(),
570 "Moderator of forum obj_no." . $this->
getId(),
580 $ilDB = $DIC->database();
582 $mod_title =
'il_frm_moderator_' . $a_ref_id;
584 $res =
$ilDB->queryF(
'SELECT obj_id FROM object_data WHERE title = %s', [
'text'], [$mod_title]);
585 while ($row =
$ilDB->fetchObject(
$res)) {
586 return (
int) $row->obj_id;
597 if ($DIC->http()->wrapper()->query()->has(
'ref_id')) {
598 $ref_id = $DIC->http()->wrapper()->query()->retrieve(
600 $DIC->refinery()->kindlyTo()->int()
606 if ($default_visibility ===
'public') {
613 $nextId = $this->db->nextId(
'frm_data');
616 'top_frm_fk' => $this->
getId(),
619 'top_num_posts' => 0,
620 'top_num_threads' => 0,
621 'top_last_post' =>
null,
623 'top_usr_id' => $this->
user->getId(),
627 $this->db->manipulateF(
642 VALUES(%s, %s, %s, %s, %s, %s, %s, %s, %s, %s)',
657 $top_data[
'top_frm_fk'],
658 $top_data[
'top_name'],
659 $top_data[
'top_description'],
660 $top_data[
'top_num_posts'],
661 $top_data[
'top_num_threads'],
662 $top_data[
'top_last_post'],
663 $top_data[
'top_mods'],
664 $top_data[
'top_date'],
665 $top_data[
'top_usr_id']
672 if (array_key_exists($obj_id, self::$obj_id_to_forum_id_cache)) {
673 return self::$obj_id_to_forum_id_cache[$obj_id];
676 self::preloadForumIdsByObjIds([$obj_id]);
678 return self::$obj_id_to_forum_id_cache[$obj_id];
683 if (array_key_exists($ref_id, self::$ref_id_to_forum_id_cache)) {
684 return self::$ref_id_to_forum_id_cache[
$ref_id];
687 self::preloadForumIdsByRefIds([$ref_id]);
689 return self::$ref_id_to_forum_id_cache[
$ref_id];
699 $ilDB = $DIC->database();
701 if (count($obj_ids) === 1) {
702 $in =
' objr.obj_id = ' .
$ilDB->quote(current($obj_ids),
'integer') .
' ';
704 $in =
$ilDB->in(
'objr.obj_id', $obj_ids,
false,
'integer');
707 SELECT frmd.top_pk, objr.ref_id, objr.obj_id 708 FROM object_reference objr 709 INNER JOIN frm_data frmd ON frmd.top_frm_fk = objr.obj_id 715 foreach ($obj_ids as $obj_id) {
716 self::$obj_id_to_forum_id_cache[$obj_id] = 0;
720 self::$obj_id_to_forum_id_cache[(
int) $row[
'obj_id']] = (
int) $row[
'top_pk'];
721 self::$ref_id_to_forum_id_cache[(
int) $row[
'ref_id']] = (
int) $row[
'top_pk'];
732 $ilDB = $DIC->database();
734 if (count($ref_ids) === 1) {
735 $in =
" objr.ref_id = " .
$ilDB->quote(current($ref_ids),
'integer') .
" ";
737 $in =
$ilDB->in(
'objr.ref_id', $ref_ids,
false,
'integer');
740 SELECT frmd.top_pk, objr.ref_id, objr.obj_id 741 FROM object_reference objr 742 INNER JOIN frm_data frmd ON frmd.top_frm_fk = objr.obj_id 748 foreach ($ref_ids as
$ref_id) {
749 if (!array_key_exists($ref_id, self::$ref_id_to_forum_id_cache)) {
750 self::$ref_id_to_forum_id_cache[
$ref_id] = 0;
755 self::$obj_id_to_forum_id_cache[(
int) $row[
'obj_id']] = (
int) $row[
'top_pk'];
756 self::$ref_id_to_forum_id_cache[(
int) $row[
'ref_id']] = (
int) $row[
'top_pk'];
767 $ilAccess = $DIC->access();
768 $ilUser = $DIC->user();
769 $ilDB = $DIC->database();
772 if (isset(self::$forum_statistics_cache[$ref_id])) {
773 return self::$forum_statistics_cache[
$ref_id];
778 'num_unread_posts' => 0,
781 $forumId = self::lookupForumIdByRefId($ref_id);
782 if ($forumId === 0) {
783 self::$forum_statistics_cache[
$ref_id] = $statistics;
784 return self::$forum_statistics_cache[
$ref_id];
788 $is_post_activation_enabled = $objProperties->isPostActivationEnabled();
792 if ($is_post_activation_enabled && !$ilAccess->checkAccess(
'moderate_frm',
'', $ref_id)) {
793 $act_clause .=
' AND (frm_posts.pos_status = ' .
$ilDB->quote(
796 ) .
' OR frm_posts.pos_author_id = ' .
$ilDB->quote($ilUser->getId(),
'integer') .
') ';
799 if (!$ilUser->isAnonymous()) {
801 (SELECT COUNT(frm_posts.pos_pk) cnt 803 INNER JOIN frm_posts_tree tree1 804 ON tree1.pos_fk = frm_posts.pos_pk 805 AND tree1.parent_pos != 0 806 INNER JOIN frm_threads ON frm_posts.pos_thr_fk = frm_threads.thr_pk 807 WHERE frm_threads.thr_top_fk = %s $act_clause) 811 (SELECT COUNT(DISTINCT(frm_user_read.post_id)) cnt 813 INNER JOIN frm_posts ON frm_user_read.post_id = frm_posts.pos_pk 814 INNER JOIN frm_posts_tree tree1 815 ON tree1.pos_fk = frm_posts.pos_pk 816 AND tree1.parent_pos != 0 817 INNER JOIN frm_threads ON frm_threads.thr_pk = frm_posts.pos_thr_fk 818 WHERE frm_user_read.usr_id = %s AND frm_posts.pos_top_fk = %s $act_clause) 821 $types = [
'integer',
'integer',
'integer'];
822 $values = [$forumId, $ilUser->getId(), $forumId];
824 $mapping = array_keys($statistics);
830 for ($i = 0; $i < 2; $i++) {
833 $statistics[$mapping[$i]] = (
int) ((is_array($row) ? $row[
'cnt'] : 0));
837 $statistics[$mapping[$i]] = $statistics[$mapping[$i - 1]] - $statistics[$mapping[$i]];
842 SELECT COUNT(frm_posts.pos_pk) cnt 844 INNER JOIN frm_posts_tree tree1 845 ON tree1.pos_fk = frm_posts.pos_pk 846 AND tree1.parent_pos != 0 847 INNER JOIN frm_threads ON frm_posts.pos_thr_fk = frm_threads.thr_pk 848 WHERE frm_threads.thr_top_fk = %s $act_clause 850 $types = [
'integer'];
851 $values = [$forumId];
860 'num_posts' => (
int) $row[
'cnt'],
861 'num_unread_posts' => (
int) $row[
'cnt'],
865 self::$forum_statistics_cache[
$ref_id] = $statistics;
867 return self::$forum_statistics_cache[
$ref_id];
874 $ilAccess = $DIC->access();
875 $ilUser = $DIC->user();
876 $ilDB = $DIC->database();
878 if (array_key_exists($ref_id, self::$forum_last_post_cache)) {
879 return self::$forum_last_post_cache[
$ref_id];
882 $forumId = self::lookupForumIdByRefId($ref_id);
883 if ($forumId === 0) {
885 return self::$forum_last_post_cache[
$ref_id];
889 if (!$ilAccess->checkAccess(
'moderate_frm',
'', $ref_id)) {
890 $act_clause .=
' AND (frm_posts.pos_status = ' .
$ilDB->quote(
893 ) .
' OR frm_posts.pos_author_id = ' .
$ilDB->quote($ilUser->getId(),
'integer') .
') ';
896 $ilDB->setLimit(1, 0);
900 INNER JOIN frm_posts_tree tree1 901 ON tree1.pos_fk = frm_posts.pos_pk 902 AND tree1.parent_pos != 0 903 WHERE pos_top_fk = %s $act_clause 904 ORDER BY pos_date DESC 915 return self::$forum_last_post_cache[
$ref_id];
919 $casted_data[
'pos_pk'] = (
int)
$data[
'pos_pk'];
920 $casted_data[
'pos_top_fk'] = (
int)
$data[
'pos_top_fk'];
921 $casted_data[
'pos_thr_fk'] = (
int)
$data[
'pos_thr_fk'];
922 $casted_data[
'pos_usr_alias'] = (string)
$data[
'pos_usr_alias'];
923 $casted_data[
'pos_subject'] = (string)
$data[
'pos_subject'];
924 $casted_data[
'pos_date'] = (string)
$data[
'pos_date'];
925 $casted_data[
'pos_update'] = (string)
$data[
'pos_update'];
926 $casted_data[
'update_user'] = (
int)
$data[
'update_user'];
927 $casted_data[
'pos_cens'] = (
int)
$data[
'pos_cens'];
928 $casted_data[
'pos_cens_com'] = (string)
$data[
'pos_cens_com'];
929 $casted_data[
'notify'] = (
int)
$data[
'notify'];
930 $casted_data[
'import_name'] = (string)
$data[
'import_name'];
931 $casted_data[
'pos_status'] = (
int)
$data[
'pos_status'];
932 $casted_data[
'pos_message'] = (string)
$data[
'pos_message'];
933 $casted_data[
'pos_author_id'] = (
int)
$data[
'pos_author_id'];
934 $casted_data[
'pos_display_user_id'] = (
int)
$data[
'pos_display_user_id'];
935 $casted_data[
'is_author_moderator'] = (
int)
$data[
'is_author_moderator'];
936 $casted_data[
'pos_cens_date'] = (string)
$data[
'pos_cens_date'];
937 $casted_data[
'pos_activation_date'] = (string)
$data[
'pos_activation_date'];
939 self::$forum_last_post_cache[
$ref_id] = $casted_data;
941 return self::$forum_last_post_cache[
$ref_id];
952 $ilAccess = $DIC->access();
953 $ilUser = $DIC->user();
954 $ilDB = $DIC->database();
957 $act_inner_clause =
'';
958 if (!$ilAccess->checkAccess(
'moderate_frm',
'', $ref_id)) {
959 $act_clause .=
" AND (t1.pos_status = " .
$ilDB->quote(
962 ) .
" OR t1.pos_author_id = " .
$ilDB->quote($ilUser->getId(),
"integer") .
") ";
963 $act_inner_clause .=
" AND (t3.pos_status = " .
$ilDB->quote(
966 ) .
" OR t3.pos_author_id = " .
$ilDB->quote($ilUser->getId(),
"integer") .
") ";
969 $in =
$ilDB->in(
"t1.pos_thr_fk", $thread_ids,
false,
'integer');
970 $inner_in =
$ilDB->in(
"t3.pos_thr_fk", $thread_ids,
false,
'integer');
973 SELECT t1.pos_display_user_id, t1.update_user 975 INNER JOIN frm_posts_tree tree1 ON tree1.pos_fk = t1.pos_pk AND tree1.parent_pos != 0 977 SELECT t3.pos_thr_fk, MAX(t3.pos_date) pos_date 979 INNER JOIN frm_posts_tree tree2 ON tree2.pos_fk = t3.pos_pk AND tree2.parent_pos != 0 980 WHERE $inner_in $act_inner_clause 981 GROUP BY t3.pos_thr_fk 982 ) t2 ON t2.pos_thr_fk = t1.pos_thr_fk AND t2.pos_date = t1.pos_date 983 WHERE $in $act_clause 984 GROUP BY t1.pos_thr_fk, t1.pos_display_user_id, t1.update_user 991 if ((
int) $row[
'pos_display_user_id'] !== 0) {
992 $usr_ids[] = (
int) $row[
'pos_display_user_id'];
994 if ((
int) $row[
'update_user'] !== 0) {
995 $usr_ids[] = (
int) $row[
'update_user'];
999 return array_unique($usr_ids);
1002 public static function mergeForumUserRead(
int $merge_source_thread_id,
int $merge_target_thread_id): void
1006 $DIC->database()->update(
1008 [
'thread_id' => [
'integer', $merge_target_thread_id]],
1009 [
'thread_id' => [
'integer', $merge_source_thread_id]]
1015 $res = $this->db->query(
1016 'SELECT COUNT(is_sticky) num_sticky FROM frm_threads 1017 INNER JOIN frm_data ON top_pk = thr_top_fk 1018 WHERE frm_data.top_frm_fk = ' . $this->db->quote($this->getId(),
'integer') .
' 1019 AND is_sticky = ' . $this->db->quote(1,
'integer')
1021 if ($row = $this->db->fetchAssoc(
$res)) {
1022 return (
int) $row[
'num_sticky'];
1035 $sql =
'SELECT DISTINCT page_id FROM page_object WHERE parent_id = %s AND parent_type = %s';
1036 $res = $this->db->queryF(
1038 [
'integer',
'text'],
1042 while ($row = $this->db->fetchAssoc(
$res)) {
1043 $pageObjIds[] = (
int) $row[
'page_id'];
ilClone(int $new_obj_id, int $new_posting_id)
__construct(int $a_id=0, bool $a_call_by_reference=true)
static mergeForumUserRead(int $merge_source_thread_id, int $merge_target_thread_id)
static _lookupThreadSubject(int $a_thread_id)
static array $forum_statistics_cache
updateModificationUserId(int $usr_id)
static _getDefaultVisibilityForRefId(int $a_ref_id)
Get default visibility for reference id.
static lookupForumIdByObjId(int $obj_id)
static _lookupModeratorRole(int $a_ref_id)
updateModeratorRole(int $role_id)
static getUserIdsOfLastPostsByRefIdAndThreadIds(int $ref_id, array $thread_ids)
deleteDraftsByForumId(int $forum_id)
readonly ilLogger $logger
static createDefaultRole(string $a_title, string $a_description, string $a_tpl_name, int $a_ref_id)
static preloadForumIdsByObjIds(array $obj_ids)
Class ilForumNotification.
static lookupTranslations(string $a_parent_type, int $a_id)
Lookup translations.
static lookupForumIdByRefId(int $ref_id)
static now()
Return current timestamp in Y-m-d H:i:s format.
markAllThreadsRead(int $a_usr_id)
static _deleteReadEntries(int $a_post_id)
Class ilForumDraftHistory.
static getInstance(int $a_obj_id=0)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _deleteUser(int $a_usr_id)
static lookupStatisticsByRefId(int $ref_id)
static _exists(string $a_parent_type, int $a_id, string $a_lang="", bool $a_no_cache=false)
Checks whether page exists.
static _write(string $a_type, string $a_setting, string $a_value, int $a_user=0, int $a_block_id=0)
Write setting to database.
static _lookupObjectId(int $ref_id)
readonly ilSetting $settings
static array $obj_id_to_forum_id_cache
setOfflineStatus(bool $status)
static array $forum_last_post_cache
getCountUnread(int $a_usr_id, int $a_thread_id=0, bool $ignoreRoot=false)
static array $ref_id_to_forum_id_cache
static lookupLastPostByRefId(int $ref_id)
isRead($a_usr_id, $a_post_id)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
readonly ILIAS DI RBACServices $rbac
static _getInstance(int $a_copy_id)
markPostUnread(int $a_user_id, int $a_post_id)
setPermissions(int $parent_ref_id)
markThreadRead(int $a_usr_id, int $a_thread_id)
static preloadForumIdsByRefIds(array $ref_ids)
markPostRead(int $a_usr_id, int $a_thread_id, int $a_post_id)
cloneAutoGeneratedRoles(self $new_obj)