You are here

public function FrxParameterForm::render in Forena Reports 7.5

Default Render action, which simply does normal forena rendering. You can use renderDomNode at any time to generate the default forena rendering methods.

Return value

Ambigous <string, unknown, unknown_type, text, mixed>

Overrides RendererBase::render

File

src/Renderer/FrxParameterForm.php, line 11
paramter form Use to customize report parameters form. @author metzlerd

Class

FrxParameterForm

Namespace

Drupal\forena\Renderer

Code

public function render() {
  $output = '';
  $variables = $this
    ->replacedAttributes();
  $variables['template'] = $this
    ->innerXML();
  $form = $this->frxReport
    ->parametersForm($variables);
  $this->frxReport->parameters_form = array(
    '#markup' => drupal_render($form),
  );
  return $output;
}