public function PreparedTagElement::setSource in Extensible BBCode 8.3
Same name and namespace in other branches
- 4.0.x src/PreparedTagElement.php \Drupal\xbbcode\PreparedTagElement::setSource()
Set the content source of the tag.
Parameters
string $source: The text between [tag] and [/tag].
Overrides TagElementInterface::setSource
File
- src/
PreparedTagElement.php, line 122
Class
- PreparedTagElement
- Adapter for the tag element that marks markup as safe.
Namespace
Drupal\xbbcodeCode
public function setSource(string $source) : void {
$this->tag
->setSource($source);
}