protected function OutputRules::closeTag in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/masterminds/html5/src/HTML5/Serializer/OutputRules.php \Masterminds\HTML5\Serializer\OutputRules::closeTag()
Write the closing tag.
Tags for HTML, MathML, and SVG are in the local name. Otherwise, use the qualified name (8.3).
Parameters
\DOMNode $ele: The element being written.
1 call to OutputRules::closeTag()
- OutputRules::element in vendor/
masterminds/ html5/ src/ HTML5/ Serializer/ OutputRules.php - Write an element.
File
- vendor/
masterminds/ html5/ src/ HTML5/ Serializer/ OutputRules.php, line 427 - The rules for generating output in the serializer.
Class
- OutputRules
- Generate the output html5 based on element rules.
Namespace
Masterminds\HTML5\SerializerCode
protected function closeTag($ele) {
if ($this->outputMode == static::IM_IN_HTML || $ele
->hasChildNodes()) {
$this
->wr('</')
->wr($this->traverser
->isLocalElement($ele) ? $ele->localName : $ele->tagName)
->wr('>');
}
}