registry_rebuild

Definition

registry_rebuild()
drupal/includes/bootstrap.inc, line 1552

Description

Rescan all enabled modules and rebuild the registry.

Rescans all code in modules or includes directory, storing a mapping of each function, file, and hook implementation in the database.

Related topics

Namesort iconDescription
Code registryThe code registry engine.

Code

function registry_rebuild() {
  require_once DRUPAL_ROOT . '/includes/registry.inc';
  _registry_rebuild();
}