You are here

public function FrxReport::parametersForm in Forena Reports 7.4

Same name and namespace in other branches
  1. 7.3 FrxReport.inc \FrxReport::parametersForm()
1 call to FrxReport::parametersForm()
FrxReport::render in ./FrxReport.inc
Render the report

File

./FrxReport.inc, line 736
Basic report provider. Controls the rendering of the report.

Class

FrxReport

Code

public function parametersForm($variables = array()) {
  $parms = $this
    ->parametersArray();
  $form = drupal_get_form('forena_parameter_form', $parms, $variables);
  $this->parameters_form = $form;
  return $form;
}