You are here

public function Query::getFulltextFields in Search API 8

Retrieves the fulltext fields that will be searched for the search keys.

Return value

string[]|null An array containing the fields that should be searched for the search keys, or NULL if all indexed fulltext fields should be used.

Overrides QueryInterface::getFulltextFields

See also

setFulltextFields()

File

src/Query/Query.php, line 671

Class

Query
Provides a standard implementation for a Search API query.

Namespace

Drupal\search_api\Query

Code

public function &getFulltextFields() {
  return $this->fields;
}