You are here

function help_topics_theme in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/help_topics/help_topics.module \help_topics_theme()
  2. 9 core/modules/help_topics/help_topics.module \help_topics_theme()

Implements hook_theme().

File

core/modules/help_topics/help_topics.module, line 48
Displays help topics provided by modules and themes.

Code

function help_topics_theme() {
  return [
    'help_topic' => [
      'variables' => [
        'body' => [],
        'related' => [],
      ],
    ],
  ];
}