You are here

function FrxReportGenerator::alter_parameters in Forena Reports 7.3

Same name and namespace in other branches
  1. 6.2 FrxReportGenerator.inc \FrxReportGenerator::alter_parameters()
  2. 7.2 FrxReportGenerator.inc \FrxReportGenerator::alter_parameters()
  3. 7.4 FrxReportGenerator.inc \FrxReportGenerator::alter_parameters()
1 call to FrxReportGenerator::alter_parameters()
FrxReportGenerator::get_report in ./FrxReportGenerator.inc
Accepts the name of a file

File

./FrxReportGenerator.inc, line 108
Common functions used throughout the project but loaded in this file to keep the module file lean.

Class

FrxReportGenerator

Code

function alter_parameters($report_name, &$data) {
  if (method_exists($this->app, 'alter_parameters')) {
    $this->app
      ->alter_parameters($report_name, $data);
  }
}