You are here

function dynamic_background_inherit_flush_caches in Dynamic Background 7.2

Implements hook_flush_caches().

Clear the custom cache any time any other cache is cleared. Being lazy here, rather than spending additional time to decide when the best time would be to clear the caches correctly.

File

modules/dynamic_background_inherit/dynamic_background_inherit.module, line 138
Primary hook implementations for Dynamic Background Inherit.

Code

function dynamic_background_inherit_flush_caches() {
  return array(
    'cache_dynamic_background_inherit',
  );
}