public function CacheflushApi::coreBinMapping in CacheFlush 8
List of the core cache bin.
1 call to CacheflushApi::coreBinMapping()
- CacheflushApi::createTabOptions in src/
Controller/ CacheflushApi.php - Create option array for preset.
File
- src/
Controller/ CacheflushApi.php, line 229
Class
- CacheflushApi
- Returns responses for Cacheflush routes.
Namespace
Drupal\cacheflush\ControllerCode
public function coreBinMapping() {
$core_bins = [
'bootstrap',
'config',
'data',
'default',
'discovery',
'dynamic_page_cache',
'entity',
'menu',
'render',
'migrate',
'rest',
'toolbar',
];
return $core_bins;
}