You are here

function search_api_grouping_search_api_processor_info in Search API Grouping 7

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

Implements hook_search_api_processor_info().

File

./search_api_grouping.module, line 11
Register the processors delivered by this module.

Code

function search_api_grouping_search_api_processor_info() {
  $processors['search_api_grouping_multivalue_field'] = array(
    'name' => t('Split items on behalf of a multivalue field'),
    'description' => t('This processor will split up the items to index on behalf of a multivalue field.'),
    'class' => 'SearchApiGroupingMultivalueField',
  );
  $processors['search_api_grouping_grouping'] = array(
    'name' => t('Group search results based on defined fields'),
    'description' => t('This processor will group the result items.'),
    'class' => 'SearchApiGroupingGrouping',
  );
  return $processors;
}