You are here

public function UpdateProcessorInterface::processFetchTask in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/update/src/UpdateProcessorInterface.php \Drupal\update\UpdateProcessorInterface::processFetchTask()

Processes a task to fetch available update data for a single project.

Once the release history XML data is downloaded, it is parsed and saved in an entry just for that project.

Parameters

array $project: Associative array of information about the project to fetch data for.

Return value

bool TRUE if we fetched parsable XML, otherwise FALSE.

1 method overrides UpdateProcessorInterface::processFetchTask()
UpdateProcessor::processFetchTask in core/modules/update/src/UpdateProcessor.php
Processes a task to fetch available update data for a single project.

File

core/modules/update/src/UpdateProcessorInterface.php, line 59

Class

UpdateProcessorInterface
Processor of project update information.

Namespace

Drupal\update

Code

public function processFetchTask($project);