You are here

public static function AjaxCommandBase::replacer in Forena Reports 8

Report Replacer.

Return value

ReportReplacer

File

src/FrxPlugin/AjaxCommand/AjaxCommandBase.php, line 64

Class

AjaxCommandBase

Namespace

Drupal\forena\FrxPlugin\AjaxCommand

Code

public static function replacer() {
  if (static::$replacer === NULL) {
    static::$replacer = new ReportReplacer();
  }
  return static::$replacer;
}