You are here

public function PrepareIndexMappingEvent::__construct in Elasticsearch Connector 8.6

Same name and namespace in other branches
  1. 8.7 src/Event/PrepareIndexMappingEvent.php \Drupal\elasticsearch_connector\Event\PrepareIndexMappingEvent::__construct()
  2. 8.5 src/Event/PrepareIndexMappingEvent.php \Drupal\elasticsearch_connector\Event\PrepareIndexMappingEvent::__construct()

PrepareIndexMappingEvent constructor.

Parameters

$indexMappingParams:

$indexName:

File

src/Event/PrepareIndexMappingEvent.php, line 25

Class

PrepareIndexMappingEvent
Class PrepareIndexMappingEvent

Namespace

Drupal\elasticsearch_connector\Event

Code

public function __construct($indexMappingParams, $indexName) {
  $this->indexMappingParams = $indexMappingParams;
  $this->indexName = $indexName;
}