public function Query::getOriginalKeys in Search API 8
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 QueryInterface::getKeys().
Overrides QueryInterface::getOriginalKeys
See also
keys()
File
- src/
Query/ Query.php, line 664
Class
- Query
- Provides a standard implementation for a Search API query.
Namespace
Drupal\search_api\QueryCode
public function getOriginalKeys() {
return $this->origKeys;
}