You are here

function context_invalidate_cache in Context 6.2

Same name and namespace in other branches
  1. 6.3 context.module \context_invalidate_cache()
  2. 6 context.module \context_invalidate_cache()
  3. 7.3 context.module \context_invalidate_cache()

Invalidates all context caches().

4 calls to context_invalidate_cache()
context_flush_caches in ./context.module
Implementation of hook_flush_caches().
context_form_alter in ./context.core.inc
Implementation of hook_form_alter().
context_ui_confirm_submit in context_ui/context_ui.admin.inc
Submit handler for the context_ui_confirm form.
context_ui_list_contexts in context_ui/context_ui.admin.inc
Page callback for context_ui admin landing page.

File

./context.module, line 555

Code

function context_invalidate_cache() {
  cache_clear_all('context', 'cache');
}