function module_implements_write_cache

7.x module.inc module_implements_write_cache()

Writes the hook implementation cache.

See also

module_implements()

Related topics

1 call to module_implements_write_cache()
drupal_page_footer in drupal-7.x/includes/common.inc
Performs end-of-request tasks.

File

drupal-7.x/includes/module.inc, line 835
API for loading and interacting with Drupal modules.

Code

function module_implements_write_cache() {
  $implementations = &drupal_static('module_implements');
  if (isset($implementations['#write_cache'])) {
    unset($implementations['#write_cache']);
    cache_set('module_implements', $implementations, 'cache_bootstrap');
  }
}