You are here

public function FacetapiAdapter::getSearchKeys in Facet API 7.2

Same name and namespace in other branches
  1. 6.3 plugins/facetapi/adapter.inc \FacetapiAdapter::getSearchKeys()
  2. 6 facetapi.adapter.inc \FacetapiAdapter::getSearchKeys()
  3. 7 plugins/facetapi/adapter.inc \FacetapiAdapter::getSearchKeys()

Gets the search keys, or query text, submitted by the user.

Return value

string The search keys, or query text, submitted by the user.

1 call to FacetapiAdapter::getSearchKeys()
FacetapiAdapter::getSearchPath in plugins/facetapi/adapter.inc
Returns the search path associated with this searcher.

File

plugins/facetapi/adapter.inc, line 551
Adapter plugin and adapter related classes.

Class

FacetapiAdapter
Abstract class extended by Facet API adapters.

Code

public function getSearchKeys() {
  return $this->keys;
}