function FrxReportGenerator::alter_parameters in Forena Reports 7.4
Same name and namespace in other branches
- 6.2 FrxReportGenerator.inc \FrxReportGenerator::alter_parameters()
 - 7.2 FrxReportGenerator.inc \FrxReportGenerator::alter_parameters()
 - 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
Code
function alter_parameters($report_name, &$data) {
  if (method_exists($this->app, 'alter_parameters')) {
    $this->app
      ->alter_parameters($report_name, $data);
  }
}