You are here

function patch_manager_list_patches in Patch manager 6

Same name and namespace in other branches
  1. 7 patch_manager.module \patch_manager_list_patches()

Get the list of patches.

This function invokes hook_patch().

1 call to patch_manager_list_patches()
patch_manager_page_scan in ./patch_manager.module
Discover patches.

File

./patch_manager.module, line 280
patch_manager.module Patch manager provides developers with tools for managing patches.

Code

function patch_manager_list_patches() {
  $list = module_invoke_all('patch');
  drupal_alter('patch', $list);
  return $list;
}