public function SearchApiQueryInterface::postExecute in Search API 7
Postprocesses the search results before they are returned.
This method should always be called by execute() and contain all necessary operations after the results are returned from the server.
Parameters
array $results: The results returned by the server, which may be altered. The data structure is the same as returned by execute().
1 method overrides SearchApiQueryInterface::postExecute()
- SearchApiQuery::postExecute in includes/
query.inc - Postprocesses the search results before they are returned.
File
- includes/
query.inc, line 259 - Contains SearchApiQueryInterface and SearchApiQuery.
Class
- SearchApiQueryInterface
- Interface representing a search query on an Search API index.
Code
public function postExecute(array &$results);