drupal_load_updates
- Versions
- 5 – 7
drupal_load_updates()
Initialize the update system by loading all installed module's .install files.
Code
includes/install.inc, line 23
<?php
function drupal_load_updates() {
foreach (module_list() as $module) {
module_load_install($module);
}
}
?>Login or register to post comments 