public function Query::hasExecuted in Search API 8
Determines whether this query has been executed already.
Return value
bool TRUE if this query has been executed already, FALSE otherwise.
Overrides QueryInterface::hasExecuted
1 call to Query::hasExecuted()
- Query::execute in src/
Query/ Query.php - Executes this search query.
File
- src/
Query/ Query.php, line 636
Class
- Query
- Provides a standard implementation for a Search API query.
Namespace
Drupal\search_api\QueryCode
public function hasExecuted() {
return $this->executed;
}