You are here

function forena_forena_controls in Forena Reports 7.5

Same name and namespace in other branches
  1. 8 forena.module \forena_forena_controls()
  2. 6.2 forena.module \forena_forena_controls()
  3. 6 forena.module \forena_forena_controls()
  4. 7 forena.module \forena_forena_controls()
  5. 7.2 forena.module \forena_forena_controls()
  6. 7.3 forena.module \forena_forena_controls()
  7. 7.4 forena.module \forena_forena_controls()

Self register controls with forena.

File

./forena.module, line 1254

Code

function forena_forena_controls() {
  $controls['RendererBase'] = array(
    'class' => '\\Drupal\\forena\\Renderer\\RendererBase',
  );
  $controls['ForenaFormatter'] = array(
    'class' => 'Drupal\\forena\\Format\\ForenaFormatter',
  );
  $controls['FrxSection'] = array(
    'class' => '\\Drupal\\forena\\Renderer\\FrxSection',
  );
  $controls['FrxCrosstab'] = array(
    'class' => '\\Drupal\\forena\\Renderer\\FrxCrosstab',
  );
  $controls['FrxEmailMerge'] = array(
    'class' => '\\Drupal\\forena\\Renderer\\FrxEmailMerge',
  );
  $controls['FrxFieldTable'] = array(
    'class' => '\\Drupal\\forena\\RendererFrxFieldTable',
  );
  $controls['FrxTable'] = array(
    'class' => '\\Drupal\\forena\\Renderer\\FrxTable',
  );
  $controls['FrxMergeDocument'] = array(
    'class' => '\\Drupal\\forena\\Renderer\\FrxMergeDocument',
  );
  $controls['FrxSource'] = array(
    'class' => '\\Drupal\\forena\\Renderer\\FrxSource',
  );
  $controls['FrxXML'] = array(
    'class' => '\\Drupal\\forena\\Renderer\\FrxXML',
  );
  $controls['FrxInclude'] = array(
    'class' => '\\Drupal\\forena\\Renderer\\FrxInclude',
  );
  $controls['FrxMyReports'] = array(
    'class' => '\\Drupal\\forena\\Renderer\\FrxMyReports',
  );
  $controls['FrxParameterForm'] = array(
    'class' => '\\Drupal\\forena\\Renderer\\FrxParameterForm',
  );
  $controls['FrxTitle'] = array(
    'class' => '\\Drupal\\forena\\Renderer\\FrxTitle',
  );
  if (forena_library_file('SVGGraph')) {
    $controls['FrxSVGGraph'] = array(
      'class' => '\\Drupal\\forena\\Renderer\\FrxSVGGraph',
    );
  }
  return $controls;
}