public function FrxTitle::render in Forena Reports 8
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
string text from the renderer.
Overrides RendererBase::render
File
- src/
FrxPlugin/ Renderer/ FrxTitle.php, line 15 - Implements a title renderer @author metzlerd
Class
- FrxTitle
- Title Renderer
Namespace
Drupal\forena\FrxPlugin\RendererCode
public function render() {
$html = $this
->innerXML($this->reportNode);
$html = $this->report
->replace($html);
$this->report->title = $html;
return '';
}