function drupal_load_updates
Same name and namespace in other branches
- 7.x drupal-7.x/includes/install.inc \drupal_load_updates()
Initialize the update system by loading all installed module's .install files.
2 calls to drupal_load_updates()
- system_status in drupal-6.x/
modules/ system/ system.admin.inc - Menu callback: displays the site status report. Can also be used as a pure check.
- update.php in drupal-6.x/
update.php - Administrative page for handling updates from one Drupal version to another.
Archivo
- drupal-6.x/
includes/ install.inc, line 23
Código
function drupal_load_updates() {
foreach (drupal_get_installed_schema_version(NULL, FALSE, TRUE) as $module => $schema_version) {
if ($schema_version > -1) {
module_load_install($module);
}
}
}