function patch_manager_list_patches in Patch manager 7
Same name and namespace in other branches
- 6 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 319 - 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;
}