You are here

public function UnsavedIndexConfiguration::getFulltextFields in Search API 8

Retrieves all of this index's fulltext fields.

Return value

string[] An array containing the field identifiers of all indexed fulltext fields available for this index.

Overrides IndexInterface::getFulltextFields

File

src/UnsavedIndexConfiguration.php, line 498

Class

UnsavedIndexConfiguration
Represents a configuration of an index that was not yet permanently saved.

Namespace

Drupal\search_api

Code

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