You are here

public function SearchQuery::getStatus in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/search/src/SearchQuery.php \Drupal\search\SearchQuery::getStatus()

Returns the query status bitmap.

Return value

int A bitmap indicating query status. Zero indicates there were no problems. A non-zero value is a combination of one or more of the following flags:

File

core/modules/search/src/SearchQuery.php, line 649
Contains \Drupal\search\SearchQuery.

Class

SearchQuery
Performs a query on the full-text search index for a word or words.

Namespace

Drupal\search

Code

public function getStatus() {
  return $this->status;
}