You are here

public function ForumManagerInterface::unreadTopics in Drupal 9

Same name and namespace in other branches
  1. 8 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.

1 method overrides ForumManagerInterface::unreadTopics()
ForumManager::unreadTopics in core/modules/forum/src/ForumManager.php
Calculates the number of new posts in a forum that the user has not yet read.

File

core/modules/forum/src/ForumManagerInterface.php, line 78

Class

ForumManagerInterface
Provides forum manager interface.

Namespace

Drupal\forum

Code

public function unreadTopics($term, $uid);