You are here

class FrxParameterForm in Forena Reports 7.3

Same name and namespace in other branches
  1. 7.4 renderers/FrxParameterForm.inc \FrxParameterForm

@file paramter form Use to customize report parameters form. @author metzlerd

Hierarchy

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;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
FrxParameterForm::render public function Overrides FrxRenderer::render
FrxRenderer::$dataProvider public property
FrxRenderer::$format public property
FrxRenderer::$frxAttributes public property
FrxRenderer::$frxReport public property
FrxRenderer::$htmlAttributes public property
FrxRenderer::$id public property
FrxRenderer::$name public property
FrxRenderer::$reportDocDomNode public property
FrxRenderer::$reportDocNode public property
FrxRenderer::$teng public property
FrxRenderer::addAttributes public static function
FrxRenderer::drupalRender public function Render a drupal form in a forena template
FrxRenderer::initReportNode public function
FrxRenderer::innerXML public function Return the inside xml of the current node
FrxRenderer::mergedAttributes public function Standard php array containing merged attributes Enter description here ...
FrxRenderer::replacedAttributes public function
FrxRenderer::replaceTokens public function
FrxRenderer::__construct public function 1