You are here

public function TagElement::getArgument in Extensible BBCode 4.0.x

Same name and namespace in other branches
  1. 8.3 src/Parser/Tree/TagElement.php \Drupal\xbbcode\Parser\Tree\TagElement::getArgument()

Retrieve the unparsed argument string.

Return value

string All characters between the tag name and the right square bracket.

Overrides TagElementInterface::getArgument

File

src/Parser/Tree/TagElement.php, line 132

Class

TagElement
A BBCode tag element.

Namespace

Drupal\xbbcode\Parser\Tree

Code

public function getArgument() : string {
  return $this->argument;
}