You are here

function oa_core_clear_group_cache in Open Atrium Core 7.2

Helper function to clear the various caches by calling a hook for each module.

9 calls to oa_core_clear_group_cache()
oa_core_flag_reset in includes/oa_core.cache.inc
Implements hook_flag_reset().
oa_core_node_insert in includes/oa_core.cache.inc
Implements hook_node_insert().
oa_core_node_update in includes/oa_core.access.inc
Implements hook_node_update().
oa_core_og_membership_delete in includes/oa_core.cache.inc
Implements hook_og_membership_delete().
oa_core_og_membership_insert in includes/oa_core.access.inc
Implements hook_og_membership_insert().

... See full list

File

includes/oa_core.cache.inc, line 84
Code for OpenAtrium caching helpers

Code

function oa_core_clear_group_cache($node = NULL, $uid = NULL, $include_archived = FALSE) {
  module_invoke_all('oa_clear_cache', $node, $uid, $include_archived);
}