You are here

function FrxReportGenerator::alter_parameters in Forena Reports 7.4

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.3 FrxReportGenerator.inc \FrxReportGenerator::alter_parameters()

File

./FrxReportGenerator.inc, line 107
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);
  }
}