function views_summarize_get_handlers in Views Summarize 6
Same name and namespace in other branches
- 7.2 views_summarize.module \views_summarize_get_handlers()
 - 7 views_summarize.module \views_summarize_get_handlers()
 
List all of the handlers
1 call to views_summarize_get_handlers()
File
- ./
views_summarize.module, line 46  
Code
function views_summarize_get_handlers() {
  return array(
    'none' => t('None'),
    'count' => t('Count'),
    'range' => t('Range'),
    'total' => t('Total'),
    'average' => t('Average'),
    'spread' => t('Spread'),
  );
}