You are here

public function Report::buildParametersForm in Forena Reports 8

File

src/Report.php, line 634
Basic report provider. Controls the rendering of the report.

Class

Report

Namespace

Drupal\forena

Code

public function buildParametersForm() {
  $parms = $this->parameterDefinitions;
  $form = $this
    ->app()
    ->buildParametersForm($parms);
  $this
    ->getDocument()->parameters_form = $form;
}