function update_fetch_data
Attempts to fetch update data after loading the necessary include file.
See also
2 calls to update_fetch_data()
- update_cron in drupal-7.x/
modules/ update/ update.module - Implements hook_cron().
- update_get_available in drupal-7.x/
modules/ update/ update.module - Tries to get update information from cache and refreshes it when necessary.
Archivo
- drupal-7.x/
modules/ update/ update.module, line 474 - Handles updates of Drupal core and contributed projects.
Código
function update_fetch_data() {
module_load_include('inc', 'update', 'update.fetch');
return _update_fetch_data();
}