public function ForumManager::resetCache in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/forum/src/ForumManager.php \Drupal\forum\ForumManager::resetCache()
Resets the ForumManager index and history.
Overrides ForumManagerInterface::resetCache
File
- core/
modules/ forum/ src/ ForumManager.php, line 455 - Contains \Drupal\forum\ForumManager.
Class
- ForumManager
- Provides forum manager service.
Namespace
Drupal\forumCode
public function resetCache() {
// Reset the index.
$this->index = NULL;
// Reset history.
$this->history = array();
}