You are here

public function HelpTopicTwig::getBody in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/help_topics/src/HelpTopicTwig.php \Drupal\help_topics\HelpTopicTwig::getBody()
  2. 10 core/modules/help_topics/src/HelpTopicTwig.php \Drupal\help_topics\HelpTopicTwig::getBody()

Returns the body of the topic.

Return value

array A render array representing the body.

Overrides HelpTopicPluginInterface::getBody

File

core/modules/help_topics/src/HelpTopicTwig.php, line 63

Class

HelpTopicTwig
Represents a help topic plugin whose definition comes from a Twig file.

Namespace

Drupal\help_topics

Code

public function getBody() {
  return [
    '#markup' => $this->twig
      ->load('@help_topics/' . $this
      ->getPluginId() . '.html.twig')
      ->render(),
  ];
}