FrxParameterForm.inc in Forena Reports 7.3
Same filename and directory in other branches
paramter form Use to customize report parameters form. @author metzlerd
File
renderers/FrxParameterForm.incView source
<?php
/**
* @file
* paramter form
* Use to customize report parameters form.
* @author metzlerd
*
*/
class FrxParameterForm extends FrxRenderer {
public function render() {
$output = '';
if ($this->format == 'web') {
$variables = $this
->replacedAttributes();
$variables['template'] = $this
->innerXML();
$form = $this->frxReport
->parametersForm($variables);
$output = $this
->drupalRender($form);
}
return $output;
}
}
Classes
Name | Description |
---|---|
FrxParameterForm | @file paramter form Use to customize report parameters form. @author metzlerd |