You are here

public function FrxTitle::render in Forena Reports 7.5

Default Render action, which simply does normal forena rendering. You can use renderDomNode at any time to generate the default forena rendering methods.

Return value

Ambigous <string, unknown, unknown_type, text, mixed>

Overrides RendererBase::render

File

src/Renderer/FrxTitle.php, line 10
Implements a title renderer @author metzlerd

Class

FrxTitle

Namespace

Drupal\forena\Renderer

Code

public function render() {
  $html = $this
    ->innerXML();
  $html = $this->frxReport
    ->replace($html);
  $this->frxReport->title = $html;
  return '';
}