function drupal_load_updates

Loads .install files for installed modules to initialize the update system.

3 calls to drupal_load_updates()
system_status in drupal/modules/system/system.admin.inc
Menu callback: displays the site status report. Can also be used as a pure check.
update.php in drupal/update.php
Administrative page for handling updates from one Drupal version to another.
update_fix_d7_install_profile in drupal/includes/update.inc
Register the currently installed profile in the system table.

File

drupal/includes/install.inc, line 81
API functions for installing modules and themes.

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);
    }
  }
}