public function SearchApiQuery::getOriginalKeys in Search API 7
Retrieves the unparsed search keys for this query as originally entered.
Return value
array|string|null The unprocessed search keys, exactly as passed to this object. Has the same format as the return value of getKeys().
Overrides SearchApiQueryInterface::getOriginalKeys
See also
keys()
File
- includes/
query.inc, line 763 - Contains SearchApiQueryInterface and SearchApiQuery.
Class
- SearchApiQuery
- Provides a standard implementation of the SearchApiQueryInterface.
Code
public function getOriginalKeys() {
return $this->orig_keys;
}