You are here

public function TestHelpTopicPlugin::getBody in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/help_topics/tests/modules/help_topics_test/src/Plugin/HelpTopic/TestHelpTopicPlugin.php \Drupal\help_topics_test\Plugin\HelpTopic\TestHelpTopicPlugin::getBody()

Returns the body of the topic.

Return value

array A render array representing the body.

Overrides HelpTopicPluginInterface::getBody

File

core/modules/help_topics/tests/modules/help_topics_test/src/Plugin/HelpTopic/TestHelpTopicPlugin.php, line 16

Class

TestHelpTopicPlugin
A fake help topic plugin for testing.

Namespace

Drupal\help_topics_test\Plugin\HelpTopic

Code

public function getBody() {
  return [
    '#type' => 'markup',
    '#markup' => $this->pluginDefinition['body'],
  ];
}