You are here

public function TipPluginTextLegacy::getBody in Drupal 9

Returns body of the text tip.

Return value

string The tip body.

1 call to TipPluginTextLegacy::getBody()
TipPluginTextLegacy::getOutput in core/modules/tour/tests/tour_test/src/Plugin/tour/tip/TipPluginTextLegacy.php
This method should not be used. It is deprecated from TipPluginInterface.

File

core/modules/tour/tests/tour_test/src/Plugin/tour/tip/TipPluginTextLegacy.php, line 92

Class

TipPluginTextLegacy
Displays some text as a tip.

Namespace

Drupal\tour_test\Plugin\tour\tip

Code

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