drupal_load_updates

drupal_load_updates()

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

File

core/includes/install.inc, line 79
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);
    }
  }
}
doc_Drupal
2016-10-29 09:03:16
Comments
Leave a Comment

Please login to continue.