public function TipPluginText::getBody

Returns body of the text tip.

Return value

string The tip body.

1 call to TipPluginText::getBody()
TipPluginText::getOutput in drupal/core/modules/tour/lib/Drupal/tour/Plugin/tour/tip/TipPluginText.php
Implements \Drupal\tour\TipPluginInterface::getOutput().

File

drupal/core/modules/tour/lib/Drupal/tour/Plugin/tour/tip/TipPluginText.php, line 54
Contains \Drupal\tour\Plugin\tour\tip\TipPluginText.

Class

TipPluginText
Displays some text as a tip.

Namespace

Drupal\tour\Plugin\tour\tip

Code

public function getBody() {
  return $this
    ->get('body');
}