function help_theme in Drupal 9
Same name and namespace in other branches
- 8 core/modules/help/help.module \help_theme()
Implements hook_theme().
File
- core/
modules/ help/ help.module, line 50 - Manages displaying online help.
Code
function help_theme($existing, $type, $theme, $path) {
return [
'help_section' => [
'variables' => [
'title' => NULL,
'description' => NULL,
'links' => NULL,
'empty' => NULL,
],
],
];
}