You are here

public function FrxAPI::report in Forena Reports 8

Run a report with a particular format.

@parms array $parms Parameter values to pass to report

Parameters

$machine_name: Name of report.

Return value

array|string

5 calls to FrxAPI::report()
FrxReport::getValue in src/FrxPlugin/Context/FrxReport.php
ReportEditor::preview in src/Editor/ReportEditor.php
ReportTest::testIncludedReport in tests/src/Unit/ReportTest.php
ReportTest::testParameterTypes in tests/src/Unit/ReportTest.php
ReportTest::testSimpleReport in tests/src/Unit/ReportTest.php
Test a simple report.
1 method overrides FrxAPI::report()
Forena::report in src/Forena.php
Run a report with a particular format.

File

src/FrxAPI.php, line 172
FrxAPI.incL General Forena Reporting Class

Class

FrxAPI
Implements FrxAPI Trait

Namespace

Drupal\forena

Code

public function report($machine_name, $parms = []) {
  return ReportManager::instance()
    ->report($machine_name, $parms);
}