You are here

public function ReportFileSystem::createReport in Forena Reports 8

Parameters

$html:

Return value

Report Report object created. Get cache data from the report.

1 call to ReportFileSystem::createReport()
ReportFileSystem::extractMetaData in src/File/ReportFileSystem.php
Should load cache data based on that.

File

src/File/ReportFileSystem.php, line 230

Class

ReportFileSystem

Namespace

Drupal\forena\File

Code

public function createReport(&$html) {

  // Load the report
  $r = @new Report($html);
  return $r;
}