| 7 bootstrap.inc | registry_update() |
| 8 bootstrap.inc | registry_update() |
Updates the registry based on the latest files listed in the database.
This function should be used when system_rebuild_module_data() does not need to be called, because it is already known that the list of files in the {system} table matches those in the file system.
See also
Related topics
File
- includes/
bootstrap.inc, line 3074 - Functions that need to be loaded on every Drupal request.
Code
<?php
function registry_update() {
require_once DRUPAL_ROOT . '/includes/registry.inc';
_registry_update();
}
?>Login or register to post comments