You are here

function search_api_grouping_search_api_processor_info in Search API Grouping 7.2

Same name and namespace in other branches
  1. 7 search_api_grouping.module \search_api_grouping_search_api_processor_info()

Implements hook_search_api_processor_info().

File

./search_api_grouping.module, line 67
Module search_api_grouping.

Code

function search_api_grouping_search_api_processor_info() {
  $processors['search_api_denormalized_entity_field'] = array(
    'name' => t('Denormalization'),
    'description' => t('This processor allows you to configure which multivalue fields are used for denormalization.'),
    'class' => 'SearchApiDenormalizedEntityField',
  );
  $processors['search_api_denormalized_entity_grouping'] = array(
    'name' => t('Grouping'),
    'description' => t('This processor will group the result items based on the configured fields.'),
    'class' => 'SearchApiDenormalizedEntityGrouping',
  );
  return $processors;
}