function upgrade_status_refresh in Upgrade Status 6
Same name and namespace in other branches
- 5 upgrade_status.admin.inc \upgrade_status_refresh()
- 7 upgrade_status.module \upgrade_status_refresh()
Wrapper to load the include file and then refresh the release data.
2 calls to upgrade_status_refresh()
- upgrade_status_core_version_form_submit in ./
upgrade_status.module - Set the new Drupal core version in a variable; refresh project data.
- upgrade_status_get_available in ./
upgrade_status.module - Internal helper to try to get the update information from the cache if possible, and to refresh the cache when necessary.
File
- ./
upgrade_status.module, line 111 - Checks to see if your installed modules are available for the next major release of Drupal.
Code
function upgrade_status_refresh() {
module_load_include('inc', 'upgrade_status', 'upgrade_status.fetch');
return _upgrade_status_refresh();
}