You are here

function patchinfo_theme in PatchInfo 7

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

Implements hook_theme().

File

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

Code

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