1 update.module update_create_fetch_task($project)

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

_update_create_fetch_task()

File

core/modules/update/update.module, line 378
Handles update checking for Backdrop core and contributed projects.

Code

function update_create_fetch_task($project) {
  module_load_include('inc', 'update', 'update.fetch');
  return _update_create_fetch_task($project);
}