You are here

public function ReverseEntityReferences::setEntityFieldManager in Search API 8

Sets the entity field manager.

Parameters

\Drupal\Core\Entity\EntityFieldManager $entity_field_manager: The new entity field manager.

Return value

$this

File

src/Plugin/search_api/processor/ReverseEntityReferences.php, line 139

Class

ReverseEntityReferences
Allows indexing of reverse entity references.

Namespace

Drupal\search_api\Plugin\search_api\processor

Code

public function setEntityFieldManager(EntityFieldManager $entity_field_manager) {
  $this->entityFieldManager = $entity_field_manager;
  return $this;
}