You are here

public function TestingAppService::getRendererPlugins in Forena Reports 8

Returns the list of Renderer plugins

Return value

array

Overrides AppService::getRendererPlugins

File

tests/src/Unit/Mock/TestingAppService.php, line 71

Class

TestingAppService

Namespace

Drupal\Tests\forena\Unit\Mock

Code

public function getRendererPlugins() {
  return [
    'FrxAjax' => '\\Drupalforena\\FrxPlugin\\Renderer\\FrxAjax',
    'FrxCrosstab' => '\\Drupal\\forena\\FrxPlugin\\Renderer\\FrxCrosstab',
    'FrxInclude' => '\\Drupal\\forena\\FrxPlugin\\Renderer\\FrxInclude',
    'FrxMyReports' => '\\Drupal\\forena\\FrxPlugin\\Renderer\\FrxMyReports',
    'FrxMenu' => FrxMenu::class,
    'FrxParameterForm' => '\\Drupal\\forena\\FrxPlugin\\Renderer\\FrxParameterForm',
    'FrxSource' => '\\Drupal\\forena\\FrxPlugin\\Renderer\\FrxSource',
    'FrxSVGGraph' => '\\Drupal\\forena\\FrxPlugin\\Renderer\\FrxSVGGraph',
    'FrxTemplate' => '\\Drupal\\forena\\FrxPlugin\\Renderer\\FrxTemplate',
    'FrxTitle' => '\\Drupal\\forena\\FrxPlugin\\Renderer\\FrxTitle',
    'FrxXML' => '\\Drupal\\forena\\FrxPlugin\\Renderer\\FrxXML',
    'RendererBase' => '\\Drupal\\forena\\FrxPlugin\\Renderer\\RendererBase',
  ];
}