You are here

function cacheflush_get_core_tabels in CacheFlush 7.3

List of the core cache tabels.

2 calls to cacheflush_get_core_tabels()
cacheflush_get_all_tabels in ./cacheflush.module
List of the all cache tabels.
_cacheflush_get_option_list in ./cacheflush.module
Return a list of cache options to be cleared.

File

./cacheflush.module, line 229
Cacheflush module.

Code

function cacheflush_get_core_tabels() {
  $core = array(
    'cache',
    'cache_path',
    'cache_filter',
    'cache_bootstrap',
    'cache_form',
    'cache_menu',
    'cache_update',
    'cache_page',
  );
  return $core;
}