You are here

function FrxDrupalApplication::alter_parameters in Forena Reports 7.4

Same name and namespace in other branches
  1. 6.2 FrxDrupalApplication.inc \FrxDrupalApplication::alter_parameters()
  2. 7.2 FrxDrupalApplication.inc \FrxDrupalApplication::alter_parameters()
  3. 7.3 FrxDrupalApplication.inc \FrxDrupalApplication::alter_parameters()

Allow modules to alter the parameters of a report.

Parameters

unknown_type $report_name:

unknown_type $parms:

File

./FrxDrupalApplication.inc, line 216
HostApp.inc Defines all the interface points between the host application and Forena. Each of these methods must be specified in order for Forena to function properly. The base class here is drupal, so those

Class

FrxDrupalApplication

Code

function alter_parameters($report_name, &$parms) {
  drupal_alter('forena_parameters', $report_name, $parms);
}