public function XML::footer in Forena Reports 8
No default footer.
Overrides DocumentBase::footer
File
- src/
FrxPlugin/ Document/ XML.php, line 54 - HTML Straight XML document with no wrapping theme. @author davidmetzler
Class
- XML
- XML Document
Namespace
Drupal\forena\FrxPlugin\DocumentCode
public function footer() {
if ($this->root_tag) {
$ending_tag = $this->root_tag;
$ending_tag = "</{$ending_tag}>";
$this
->write($ending_tag);
}
}