Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. EntityBase.php

function EntityBase::loadMultiple

Overrides EntityInterface::loadMultiple

1 call to EntityBase::loadMultiple()
Workflow::loadMultipleByType in core/modules/workflows/src/Entity/Workflow.php
Loads all workflows of the provided type.

File

core/lib/Drupal/Core/Entity/EntityBase.php, line 509

Class

EntityBase
Defines a base entity class.

Namespace

Drupal\Core\Entity

Code

public static function loadMultiple(?array $ids = NULL) {
    $entity_type_repository = \Drupal::service('entity_type.repository');
    $entity_type_manager = \Drupal::entityTypeManager();
    $storage = $entity_type_manager->getStorage($entity_type_repository->getEntityTypeFromClass(static::class));
    return $storage->loadMultiple($ids);
}
RSS feed
Powered by Drupal