You are here

function spaces_flush_caches in Spaces 7.3

Same name and namespace in other branches
  1. 6.3 spaces.module \spaces_flush_caches()
  2. 6.2 spaces.module \spaces_flush_caches()
  3. 7 spaces.module \spaces_flush_caches()

Implements hook_flush_caches().

File

./spaces.module, line 877

Code

function spaces_flush_caches() {
  cache_clear_all('spaces_map', 'cache', TRUE);
  cache_clear_all('spaces_presets', 'cache', TRUE);
  cache_clear_all('spaces_registry', 'cache', TRUE);
}