You are here

function strongarm_flush_caches in Strongarm 6.2

Same name and namespace in other branches
  1. 6 strongarm.module \strongarm_flush_caches()
  2. 7.2 strongarm.module \strongarm_flush_caches()

Implementation of hook_flush_caches().

2 calls to strongarm_flush_caches()
strongarm_admin_revert_submit in ./strongarm.admin.inc
Revert form submit handler.
strongarm_form_system_module_alter in ./strongarm.module
Implementation of hook_form_alter() for system_module form. Clear strongarm & variable caches on modules page.

File

./strongarm.module, line 45

Code

function strongarm_flush_caches() {
  cache_clear_all('variables', 'cache');
  cache_clear_all('strongarm', 'cache');
}