search_api_grouping.module in Search API Grouping 7
Same filename and directory in other branches
Register the processors delivered by this module.
File
search_api_grouping.moduleView source
<?php
/**
* @file
* Register the processors delivered by this module.
*/
/**
* Implements hook_search_api_processor_info().
*/
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;
}
Functions
Name | Description |
---|---|
search_api_grouping_search_api_processor_info | Implements hook_search_api_processor_info(). |