You are here

class FrxTitle in Forena Reports 7.3

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

@file Implements a title renderer @author metzlerd

Hierarchy

Expanded class hierarchy of FrxTitle

1 string reference to 'FrxTitle'
forena_forena_controls in ./forena.module
Self register controls with forena.

File

renderers/FrxTitle.inc, line 8
Implements a title renderer @author metzlerd

View source
class FrxTitle extends FrxRenderer {
  public function render() {
    $html = $this
      ->innerXML();
    $html = $this->teng
      ->replace($html);
    $this->frxReport->title = $html;
    return '';
  }

}

Members

Namesort descending Modifiers Type Description Overrides
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
FrxTitle::render public function Overrides FrxRenderer::render