function drupal_load_updates in Drupal 5
Same name and namespace in other branches
- 8 core/includes/install.inc \drupal_load_updates()
- 6 includes/install.inc \drupal_load_updates()
- 7 includes/install.inc \drupal_load_updates()
- 9 core/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 modules/
system/ system.module - 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.
File
- includes/
install.inc, line 23
Code
function drupal_load_updates() {
foreach (module_list() as $module) {
module_load_install($module);
}
}