You are here

public function PatchInfoSourceInterface::getPatches in PatchInfo 8.2

Gets patch information for a module from a patch source.

$return['ctools'] = [
  0 => [
    'info' => 'https://www.drupal.org/node/1739718 Issue 1739718, Patch #32',
    'source' => 'modules/contrib/ctools/ctools.info.yml',
  ],
];

Parameters

array $info: The parsed .info.yml file contents of the module to get patches for.

\Drupal\Core\Extension\Extension $file: Full information about the module or theme to get patches for.

string $type: Either 'module' or 'theme'.

Return value

array An array of patch information arrays keyed by machine-readable name of target module. The patch information array for each target module is an integer-keyed array of patch information. The patch information is an array with two keys, 'info' and 'source'. The 'info' key contains the patch information, i.e. a string with a URL followed by any patch description. The URL is optional. 'source' is a string, that contains a human-readable source information for the patch information.

1 method overrides PatchInfoSourceInterface::getPatches()
PatchInfoSourceBase::getPatches in src/PatchInfoSourceBase.php
Gets patch information for a module from a patch source.

File

src/PatchInfoSourceInterface.php, line 50

Class

PatchInfoSourceInterface
Provides an interface for PatchInfo Source plugins.

Namespace

Drupal\patchinfo

Code

public function getPatches(array $info, Extension $file, string $type);