Same name and namespace in other branches
  1. 8.9.x core/modules/help/help.module \help_theme()
  2. 9 core/modules/help/help.module \help_theme()

Implements hook_theme().

File

core/modules/help/help.module, line 68
Manages displaying online help.

Code

function help_theme($existing, $type, $theme, $path) {
  return [
    'help_section' => [
      'variables' => [
        'title' => NULL,
        'description' => NULL,
        'links' => NULL,
        'empty' => NULL,
      ],
    ],
    'help_topic' => [
      'variables' => [
        'body' => [],
        'related' => [],
      ],
    ],
  ];
}