CachedDiscoveryClearer.php
Same filename in this branch
Same filename in other branches
- 9 core/lib/Drupal/Core/ProxyClass/Plugin/CachedDiscoveryClearer.php
- 9 core/lib/Drupal/Core/Plugin/CachedDiscoveryClearer.php
- 10 core/lib/Drupal/Core/ProxyClass/Plugin/CachedDiscoveryClearer.php
- 10 core/lib/Drupal/Core/Plugin/CachedDiscoveryClearer.php
- 11.x core/lib/Drupal/Core/ProxyClass/Plugin/CachedDiscoveryClearer.php
- 11.x core/lib/Drupal/Core/Plugin/CachedDiscoveryClearer.php
Namespace
Drupal\Core\PluginFile
-
core/
lib/ Drupal/ Core/ Plugin/ CachedDiscoveryClearer.php
View source
<?php
namespace Drupal\Core\Plugin;
use Drupal\Component\Plugin\Discovery\CachedDiscoveryInterface;
/**
* Defines a class which is capable of clearing the cache on plugin managers.
*/
class CachedDiscoveryClearer implements CachedDiscoveryClearerInterface {
/**
* The stored discoveries.
*
* @var \Drupal\Component\Plugin\Discovery\CachedDiscoveryInterface[]
*/
protected $cachedDiscoveries = [];
/**
* {@inheritdoc}
*/
public function addCachedDiscovery(CachedDiscoveryInterface $cached_discovery) {
$this->cachedDiscoveries[] = $cached_discovery;
}
/**
* {@inheritdoc}
*/
public function clearCachedDefinitions() {
foreach ($this->cachedDiscoveries as $cached_discovery) {
$cached_discovery->clearCachedDefinitions();
}
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
CachedDiscoveryClearer | Defines a class which is capable of clearing the cache on plugin managers. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.