class FacetapiQueryTypeRange in Facet API 7.2
Same name and namespace in other branches
- 6.3 plugins/facetapi/query_type.inc \FacetapiQueryTypeRange
- 7 plugins/facetapi/query_type.inc \FacetapiQueryTypeRange
Base class for range query type plugins.
Hierarchy
- class \FacetapiQueryType
- class \FacetapiQueryTypeRange
Expanded class hierarchy of FacetapiQueryTypeRange
File
- plugins/
facetapi/ query_type.inc, line 209 - Interfaces and base classes for query type plugins.
View source
class FacetapiQueryTypeRange extends FacetapiQueryType {
/**
* Overrides FacetapiQueryType::extract().
*
* Adds the "start" and "end" values for the range.
*/
public function extract(array $item) {
$return = array();
if (preg_match(FACETAPI_REGEX_RANGE, $item['value'], $matches)) {
$return['start'] = $matches[1];
$return['end'] = $matches[2];
}
return $return;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FacetapiQueryType:: |
protected | property | The adapter associated with facet being queried. | |
FacetapiQueryType:: |
protected | property | The facet definition as returned by facetapi_facet_load(). | |
FacetapiQueryType:: |
public | function | Returns the facet's active items. | |
FacetapiQueryType:: |
public | function | Convenience method to get the facet's global and per realm settings. | |
FacetapiQueryType:: |
public | function | Constructs a FacetapiQueryType object. | 1 |
FacetapiQueryTypeRange:: |
public | function |
Overrides FacetapiQueryType::extract(). Overrides FacetapiQueryType:: |