public function TestHelpTopicPlugin::getBody in Drupal 9
Same name and namespace in other branches
- 8 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\HelpTopicCode
public function getBody() {
return [
'#type' => 'markup',
'#markup' => $this->pluginDefinition['body'],
];
}