You are here

public function PreparedTagElement::__construct in Extensible BBCode 8.3

Same name and namespace in other branches
  1. 4.0.x src/PreparedTagElement.php \Drupal\xbbcode\PreparedTagElement::__construct()

PreparedTagElement constructor.

Parameters

\Drupal\xbbcode\Parser\Tree\TagElementInterface $tag: The tag to be wrapped.

File

src/PreparedTagElement.php, line 45

Class

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

Namespace

Drupal\xbbcode

Code

public function __construct(TagElementInterface $tag) {
  $this->tag = $tag;
}