public function TagPluginManager::clearCachedDefinitions in Extensible BBCode 8.3
Same name and namespace in other branches
- 4.0.x src/TagPluginManager.php \Drupal\xbbcode\TagPluginManager::clearCachedDefinitions()
Clears static and persistent plugin definition caches.
Don't resort to calling \Drupal::cache()->delete() and friends to make Drupal detect new or updated plugin definitions. Always use this method on the appropriate plugin type's plugin manager!
Overrides DefaultPluginManager::clearCachedDefinitions
File
- src/
TagPluginManager.php, line 94
Class
- TagPluginManager
- Manages BBCode tags.
Namespace
Drupal\xbbcodeCode
public function clearCachedDefinitions() : void {
parent::clearCachedDefinitions();
$this->ids = NULL;
$this->defaultConfiguration = NULL;
$this->defaultNameCollisions = NULL;
// Refresh the default plugin collection, if it is active.
if ($this->defaultCollection) {
$this->defaultCollection
->setConfiguration($this
->getDefaultConfiguration());
}
}