You are here

function patchinfo_theme in PatchInfo 8.2

Same name and namespace in other branches
  1. 8 patchinfo.module \patchinfo_theme()
  2. 7 patchinfo.module \patchinfo_theme()

Implements hook_theme().

File

./patchinfo.module, line 308
Patch Info primary module file.

Code

function patchinfo_theme($existing, $type, $theme, $path) {
  return [
    'patchinfo_excluded_modules' => [
      'variables' => [
        'excluded_modules' => [],
      ],
    ],
    'patchinfo_patches' => [
      'variables' => [
        'patches' => [],
      ],
    ],
  ];
}