function FrxReportGenerator::alter_parameters in Forena Reports 7.2
Same name and namespace in other branches
- 6.2 FrxReportGenerator.inc \FrxReportGenerator::alter_parameters()
- 7.3 FrxReportGenerator.inc \FrxReportGenerator::alter_parameters()
- 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 376 - 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);
}
}