Implements \Drupal\tour\TipPluginInterface::getOutput().
Overrides TipPluginInterface::getOutput
public function getOutput() {
$output = '<h2 class="tour-tip-label" id="tour-tip-' . $this
->getAriaId() . '-label">' . check_plain($this
->getLabel()) . '</h2>';
$output .= '<p class="tour-tip-body" id="tour-tip-' . $this
->getAriaId() . '-contents">' . filter_xss_admin($this
->getBody()) . '</p>';
return array(
'#markup' => $output,
);
}