public static function UnsavedIndexConfiguration::loadMultiple in Search API 8
Loads one or more entities.
Parameters
array $ids: An array of entity IDs, or NULL to load all entities.
Return value
static[] An array of entity objects indexed by their IDs.
Overrides EntityInterface::loadMultiple
File
- src/
UnsavedIndexConfiguration.php, line 859
Class
- UnsavedIndexConfiguration
- Represents a configuration of an index that was not yet permanently saved.
Namespace
Drupal\search_apiCode
public static function loadMultiple(array $ids = NULL) {
return Index::loadMultiple($ids);
}