You are here

FrxTitle.inc in Forena Reports 7.3

Same filename and directory in other branches
  1. 7.4 renderers/FrxTitle.inc

Implements a title renderer @author metzlerd

File

renderers/FrxTitle.inc
View source
<?php

/**
 * @file
 * Implements a title renderer
 * @author metzlerd
 *
 */
class FrxTitle extends FrxRenderer {
  public function render() {
    $html = $this
      ->innerXML();
    $html = $this->teng
      ->replace($html);
    $this->frxReport->title = $html;
    return '';
  }

}

Classes

Namesort descending Description
FrxTitle @file Implements a title renderer @author metzlerd