You are here

public function PreparedTagElement::getSource in Extensible BBCode 4.0.x

Same name and namespace in other branches
  1. 8.3 src/PreparedTagElement.php \Drupal\xbbcode\PreparedTagElement::getSource()

Retrieve the content source of the tag.

[tag]CONTENT[/tag]

This is the content of the tag before rendering.

@todo Use string|Stringable in PHP 8.

Return value

mixed The tag content source. Must be a string or a stringable object.

Overrides TagElementInterface::getSource

File

src/PreparedTagElement.php, line 136

Class

PreparedTagElement
Adapter for the tag element that marks markup as safe.

Namespace

Drupal\xbbcode

Code

public function getSource() {
  return Markup::create($this->tag
    ->getSource());
}