You are here

forena.views.inc in Forena Reports 7.3

Same filename and directory in other branches
  1. 8 forena.views.inc
  2. 7.5 forena.views.inc
  3. 7.4 forena.views.inc

forena.views.inc Views registration

File

forena.views.inc
View source
<?php

/**
 * @file forena.views.inc
 * Views registration
 */
function forena_views_plugins() {
  $plugins = array();
  $plugins['style'] = array(
    'forena_style' => array(
      'title' => t('Forena Report'),
      'help' => t('Use a forena report to format view results'),
      'handler' => 'ForenaViewsPlugin',
      'theme' => 'forena_view_report',
      'uses options' => TRUE,
      'uses row plugin' => FALSE,
      'uses row class' => FALSE,
      'uses grouping' => FALSE,
      'uses fields' => TRUE,
      'admin' => t('Forena Report'),
      'type' => 'normal',
    ),
  );
  return $plugins;
}

Functions

Namesort descending Description
forena_views_plugins @file forena.views.inc Views registration