function drupal_load_updates
Same name in other branches
- 9 core/includes/install.inc \drupal_load_updates()
- 8.9.x core/includes/install.inc \drupal_load_updates()
- 10 core/includes/install.inc \drupal_load_updates()
- 11.x core/includes/install.inc \drupal_load_updates()
Loads .install files for installed modules to initialize the update system.
3 calls to drupal_load_updates()
- system_status in modules/
system/ system.admin.inc - Menu callback: displays the site status report. Can also be used as a pure check.
- update.php in ./
update.php - Administrative page for handling updates from one Drupal version to another.
- update_fix_d7_install_profile in includes/
update.inc - Register the currently installed profile in the system table.
File
-
includes/
install.inc, line 81
Code
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);
}
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.