help_theme

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,
      ],
    ],
  ];
}
doc_Drupal
2016-10-29 09:17:38
Comments
Leave a Comment

Please login to continue.