function ReportEditor::alterParameters in Forena Reports 7.5
Same name and namespace in other branches
- 8 src/Editor/ReportEditor.php \Drupal\forena\Editor\ReportEditor::alterParameters()
Allow modules to alter the parameters of a report.
Parameters
unknown_type $report_name:
unknown_type $parms:
1 call to ReportEditor::alterParameters()
- ReportEditor::report in src/
Editor/ ReportEditor.php - Load and render a report based on a drupal path. In this function the arglist is used to get the full path to the report. Pass parameters or NULL to use get /post parameters.
File
- src/
Editor/ ReportEditor.php, line 1281 - ReportEditor.inc Wrapper XML class for working with DOM object. It provides helper Enter description here ... @author metzlerd
Class
Namespace
Drupal\forena\EditorCode
function alterParameters(&$parms) {
drupal_alter('forena_parameters', $this->report_name, $parms);
}