function hook_facetapi_searcher_info_alter in Facet API 7
Same name and namespace in other branches
- 6.3 facetapi.api.php \hook_facetapi_searcher_info_alter()
- 7.2 facetapi.api.php \hook_facetapi_searcher_info_alter()
Allows for alterations to the searcher definitions.
Parameters
array &$searcher_info: The return values of hook_facetapi_searcher_info() implementations.
See also
1 invocation of hook_facetapi_searcher_info_alter()
- facetapi_get_searcher_info in ./
facetapi.module - Returns all defined searcher definitions.
File
- ./
facetapi.api.php, line 69 - Hooks provided by the Facet API module.
Code
function hook_facetapi_searcher_info_alter(array &$searcher_info) {
$searcher_info['search']['label'] = t('Core search module');
}