class FrxParameterForm in Forena Reports 7.3
Same name and namespace in other branches
- 7.4 renderers/FrxParameterForm.inc \FrxParameterForm
@file paramter form Use to customize report parameters form. @author metzlerd
Hierarchy
- class \FrxRenderer
- class \FrxParameterForm
Expanded class hierarchy of FrxParameterForm
1 string reference to 'FrxParameterForm'
- forena_forena_controls in ./
forena.module - Self register controls with forena.
File
- renderers/
FrxParameterForm.inc, line 9 - paramter form Use to customize report parameters form. @author metzlerd
View source
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;
}
}