function mongodb_cache_module_implements_alter in MongoDB 7
Implements hook_module_implements_alter().
File
- mongodb_cache/mongodb_cache_module.php, line 75 
- The MongoDB cache module.
Code
function mongodb_cache_module_implements_alter(&$implementations, $hook) {
  if ($hook !== 'flush_caches') {
    return;
  }
  $module = 'mongodb_cache';
  unset($implementations[$module]);
  $implementations[$module] = FALSE;
}