help_theme($existing, $type, $theme, $path)
Implements hook_theme().
File
- core/modules/help/help.module, line 49
- Manages displaying online help.
Code
function help_theme($existing, $type, $theme, $path) {
return [
'help_section' => [
'variables' => [
'title' => NULL,
'description' => NULL,
'links' => NULL,
'empty' => NULL,
],
],
];
}
Please login to continue.