public function FacetapiAdapter::getType in Facet API 6
Returns the type of content indexed by $this->_searcher.
Return value
A string containing the type of content indexed by $this->_searcher.
1 call to FacetapiAdapter::getType()
- FacetapiLuceneapiAdapter::getFacetData in contrib/
facetapi_luceneapi/ facetapi_luceneapi.adapter.inc - Returns a normalized array with facet counts included.
File
- ./
facetapi.adapter.inc, line 150 - Defines classes used by the FacetAPI module.
Class
- FacetapiAdapter
- Abstract class extended by search backends that retrieves facet information from the database.
Code
public function getType() {
return $this->_type;
}