class ListCacheBinsPass in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Cache/ListCacheBinsPass.php \Drupal\Core\Cache\ListCacheBinsPass
Adds cache_bins parameter to the container.
Hierarchy
- class \Drupal\Core\Cache\ListCacheBinsPass implements CompilerPassInterface
Expanded class hierarchy of ListCacheBinsPass
1 file declares its use of ListCacheBinsPass
- CoreServiceProvider.php in core/
lib/ Drupal/ Core/ CoreServiceProvider.php - Contains \Drupal\Core\CoreServiceProvider.
File
- core/
lib/ Drupal/ Core/ Cache/ ListCacheBinsPass.php, line 16 - Contains \Drupal\Core\Cache\ListCacheBinsPass.
Namespace
Drupal\Core\CacheView source
class ListCacheBinsPass implements CompilerPassInterface {
/**
* Implements CompilerPassInterface::process().
*
* Collects the cache bins into the cache_bins parameter.
*/
public function process(ContainerBuilder $container) {
$cache_bins = array();
$cache_default_bin_backends = array();
foreach ($container
->findTaggedServiceIds('cache.bin') as $id => $attributes) {
$bin = substr($id, strpos($id, '.') + 1);
$cache_bins[$id] = $bin;
if (isset($attributes[0]['default_backend'])) {
$cache_default_bin_backends[$bin] = $attributes[0]['default_backend'];
}
}
$container
->setParameter('cache_bins', $cache_bins);
$container
->setParameter('cache_default_bin_backends', $cache_default_bin_backends);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ListCacheBinsPass:: |
public | function |
Implements CompilerPassInterface::process(). Overrides CompilerPassInterface:: |