public function Report::parametersForm in Forena Reports 7.5
1 call to Report::parametersForm()
- Report::render in src/
Report.php - Render the report
File
- src/
Report.php, line 677 - Basic report provider. Controls the rendering of the report.
Class
Namespace
Drupal\forenaCode
public function parametersForm($variables = array()) {
$parms = $this
->parametersArray();
$form = drupal_get_form('forena_parameter_form', $parms, $variables);
$this->parameters_form = $form;
return $form;
}