function autoload_registry_rebuild in Autoload 6.2
Rescan all enabled modules and rebuild the registry.
Rescans all code in modules or includes directories, storing the location of each interface or class in the database.
Related topics
4 calls to autoload_registry_rebuild()
- autoload_adminmenu_flush_cache in ./
autoload.module - Administration menu callback; flush the class registry cache.
- autoload_flush_caches in ./
autoload.module - Implements hook_flush_caches().
- autoload_form_submit_registry_rebuild in ./
autoload.module - Form submit handler; rebuild the autoload registry.
- autoload_get_lookup in ./
autoload.module - Backwards-compatible function to clear the autoload registry.
File
- ./
autoload.module, line 222
Code
function autoload_registry_rebuild() {
module_rebuild_cache();
autoload_registry_update();
}