You are here

function views_summarize_get_handlers in Views Summarize 7

Same name and namespace in other branches
  1. 6 views_summarize.module \views_summarize_get_handlers()
  2. 7.2 views_summarize.module \views_summarize_get_handlers()

List all of the handlers

1 call to views_summarize_get_handlers()
views_summarize_plugin_style_tablesummarized::options_form in ./views_summarize_plugin_style_tablesummarized.inc
Render the given style.

File

./views_summarize.module, line 52

Code

function views_summarize_get_handlers() {
  return array(
    'none' => t('None'),
    'count' => t('Count'),
    'range' => t('Range'),
    'total' => t('Total'),
    'currency' => t('Total (Currency)'),
    'average' => t('Average (include empty values)'),
    'average_no_empties' => t('Average (exclude empty values)'),
    'spread' => t('Spread'),
  );
}