function upgrade_status_fetch_data in Upgrade Status 7
Attempts to fetch update data after loading the necessary include file.
See also
1 call to upgrade_status_fetch_data()
- upgrade_status_get_available in ./
upgrade_status.module - Tries to get update information from cache and refreshes it when necessary.
File
- ./
upgrade_status.module, line 188 - Checks to see if your installed modules are available for the next major release of Drupal.
Code
function upgrade_status_fetch_data() {
module_load_include('inc', 'upgrade_status', 'upgrade_status.fetch');
return _upgrade_status_fetch_data();
}