You are here

public function Report::asXML in Forena Reports 7.5

Same name and namespace in other branches
  1. 8 src/Report.php \Drupal\forena\Report::asXML()

Return the xml data for the report.

Return value

unknown

File

src/Report.php, line 470
Basic report provider. Controls the rendering of the report.

Class

Report

Namespace

Drupal\forena

Code

public function asXML() {
  $dom = $this->dom;
  $dom->formatOutput = TRUE;
  return $this->doc_prefix . $this->dom
    ->saveXML($this->dom->documentElement);
}