function context_invalidate_cache in Context 6
Same name and namespace in other branches
- 6.3 context.module \context_invalidate_cache()
- 6.2 context.module \context_invalidate_cache()
- 7.3 context.module \context_invalidate_cache()
Invalidates all context caches().
5 calls to context_invalidate_cache()
- context_export_ui::list_form in context_ui/
export_ui/ context_export_ui.class.php - Create the filter/sort form at the top of a list of exports.
- 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_admin in context_ui/
context_ui.admin.inc - Page callback for context_ui admin landing page.
- context_ui_confirm_submit in context_ui/
context_ui.admin.inc - Submit handler for the context_ui_confirm form.
File
- ./
context.module, line 552
Code
function context_invalidate_cache() {
cache_clear_all('context', 'cache');
}