You are here

function views_summarize_get_handlers in Views Summarize 7.2

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

Returns a list of the available handlers.

Return value

array The handlers.

1 call to views_summarize_get_handlers()
views_summarize_plugin_style_tablesummarized::options_form in ./views_summarize_plugin_style_tablesummarized.inc
Modify the options form to add options for this module.

File

./views_summarize.module, line 55
Provides a views display that outputs summaries of the values in a table.

Code

function views_summarize_get_handlers() {
  static $handlers = NULL;
  if (!isset($handlers)) {
    $handlers = module_invoke_all('views_summarize_handlers');
  }
  return $handlers;
}