You are here

FrxTitle.php in Forena Reports 7.5

Implements a title renderer @author metzlerd

File

src/Renderer/FrxTitle.php
View source
<?php

/**
 * @file
 * Implements a title renderer
 * @author metzlerd
 *
 */
namespace Drupal\forena\Renderer;

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

}

Classes

Namesort descending Description
FrxTitle