You are here

function hook_facetapi_value_QUERY_TYPE_alter in Facet API 6

Allows modules to parse and extract information from facet values passed through query string. For example, range queries can extract the start and end values from the raw range.

Parameters

&$value: An array containing information about the value extracted from the query string.

$adapter: A FacetapiAdapter object containing the adapter.

2 functions implement hook_facetapi_value_QUERY_TYPE_alter()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

facetapi_facetapi_value_date_alter in ./facetapi.module
Implementation of hook_facetapi_value_QUERY_TYPE_alter().
facetapi_facetapi_value_range_alter in ./facetapi.module
Implementation of hook_facetapi_value_QUERY_TYPE_alter().

File

./facetapi.api.inc, line 212
Defines and gives example implementations of all Facet API hooks.

Code

function hook_facetapi_value_QUERY_TYPE_alter(array &$value, FacetapiAdapter $adapter) {
}