public function TagElement::getOption in Extensible BBCode 4.0.x
Same name and namespace in other branches
- 8.3 src/Parser/Tree/TagElement.php \Drupal\xbbcode\Parser\Tree\TagElement::getOption()
Retrieve the option-type attribute of the element.
[tag=OPTION]...[/tag]
Return value
string The value of the option.
Overrides TagElementInterface::getOption
File
- src/
Parser/ Tree/ TagElement.php, line 170
Class
- TagElement
- A BBCode tag element.
Namespace
Drupal\xbbcode\Parser\TreeCode
public function getOption() : string {
return $this->option ?? '';
}