function TipPluginText::getOutput

Same name and namespace in other branches
  1. 8.9.x core/modules/tour/src/Plugin/tour/tip/TipPluginText.php \Drupal\tour\Plugin\tour\tip\TipPluginText::getOutput()

Overrides TipPluginBase::getOutput

File

core/modules/tour/src/Plugin/tour/tip/TipPluginText.php, line 76

Class

TipPluginText
Displays some text as a tip.

Namespace

Drupal\tour\Plugin\tour\tip

Code

public function getOutput() {
    // Call parent to trigger error when calling this function.
    parent::getOutput();
    $output = '<p class="tour-tip-body">' . $this->token
        ->replace($this->get('body')) . '</p>';
    return [
        '#markup' => $output,
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.