function upgrade_status_create_fetch_task in Upgrade Status 7
Creates a new fetch task after loading the necessary include file.
Parameters
$project: Associative array of information about a project. See update_get_projects() for the keys used.
See also
_upgrade_status_create_fetch_task()
2 calls to upgrade_status_create_fetch_task()
- upgrade_status_get_available in ./
upgrade_status.module - Tries to get update information from cache and refreshes it when necessary.
- _upgrade_status_refresh in ./
upgrade_status.fetch.inc - Clears out all the cached available update data and initiates re-fetching.
File
- ./
upgrade_status.module, line 168 - Checks to see if your installed modules are available for the next major release of Drupal.
Code
function upgrade_status_create_fetch_task($project) {
module_load_include('inc', 'upgrade_status', 'upgrade_status.fetch');
return _upgrade_status_create_fetch_task($project);
}