You are here

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\Document

Code

public function footer() {
  if ($this->root_tag) {
    $ending_tag = $this->root_tag;
    $ending_tag = "</{$ending_tag}>";
    $this
      ->write($ending_tag);
  }
}