public ForumManager::resetCache()
Resets the ForumManager index and history.
Overrides ForumManagerInterface::resetCache
File
- core/modules/forum/src/ForumManager.php, line 450
Class
- ForumManager
- Provides forum manager service.
Namespace
Drupal\forum
Code
public function resetCache() { // Reset the index. $this->index = NULL; // Reset history. $this->history = array(); }
Please login to continue.