You are here

function _d8cache_cache_tags_cache_bins in Drupal 8 Cache Backport 7

1 call to _d8cache_cache_tags_cache_bins()
d8cache_flush_caches in ./d8cache.module
Implements hook_flush_caches().

File

./d8cache.module, line 348
Main module file for the D8 caching system backport.

Code

function _d8cache_cache_tags_cache_bins() {
  if (!variable_get('d8cache_use_cache_tags_cache', FALSE)) {
    return array();
  }
  return [
    'cache_d8cache_cache_tags',
  ];
}