public function ForumManagerInterface::unreadTopics in Drupal 10
Same name and namespace in other branches
- 8 core/modules/forum/src/ForumManagerInterface.php \Drupal\forum\ForumManagerInterface::unreadTopics()
- 9 core/modules/forum/src/ForumManagerInterface.php \Drupal\forum\ForumManagerInterface::unreadTopics()
Calculates the number of new posts in a forum that the user has not yet read.
Nodes are new if they are newer than HISTORY_READ_LIMIT.
Parameters
int $term: The term ID of the forum.
int $uid: The user ID.
Return value
The number of new posts in the forum that have not been read by the user.
File
- core/
modules/ forum/ src/ ForumManagerInterface.php, line 78
Class
- ForumManagerInterface
- Provides forum manager interface.
Namespace
Drupal\forumCode
public function unreadTopics($term, $uid);