You are here

protected function TableSummarized::getHandlers in Views Summarize 1.1.x

Lists all of the handlers.

Return value

array A list of the provided summary handlers.

1 call to TableSummarized::getHandlers()
TableSummarized::buildOptionsForm in src/Plugin/views/style/TableSummarized.php
Render the given style.

File

src/Plugin/views/style/TableSummarized.php, line 62

Class

TableSummarized
Style plugin to render summarized data as a row in a table.

Namespace

Drupal\views_summarize\Plugin\views\style

Code

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