You are here

public function UnsavedIndexConfiguration::loadItemsMultiple in Search API 8

Loads multiple search objects for this index.

Parameters

array $item_ids: The internal item IDs of the objects, with datasource prefix.

Return value

\Drupal\Core\TypedData\ComplexDataInterface[] The loaded items, keyed by their internal item IDs.

Overrides IndexInterface::loadItemsMultiple

File

src/UnsavedIndexConfiguration.php, line 534

Class

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

Namespace

Drupal\search_api

Code

public function loadItemsMultiple(array $item_ids) {
  return $this->entity
    ->loadItemsMultiple($item_ids);
}