public function Query::getProcessingLevel in Search API 8
Retrieves the processing level for this query.
Return value
int The processing level of this query, as one of the \Drupal\search_api\Query\QueryInterface::PROCESSING_* constants.
Overrides QueryInterface::getProcessingLevel
See also
\Drupal\search_api\Query\QueryInterface::PROCESSING_NONE
\Drupal\search_api\Query\QueryInterface::PROCESSING_BASIC
\Drupal\search_api\Query\QueryInterface::PROCESSING_FULL
File
- src/
Query/ Query.php, line 483
Class
- Query
- Provides a standard implementation for a Search API query.
Namespace
Drupal\search_api\QueryCode
public function getProcessingLevel() {
return $this->processingLevel;
}