You are here

public function EntityTypeManager::getStorage in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Entity/EntityTypeManager.php \Drupal\Core\Entity\EntityTypeManager::getStorage()

Creates a new storage instance.

Parameters

string $entity_type: The entity type for this storage.

Return value

\Drupal\Core\Entity\EntityStorageInterface A storage instance.

Throws

\Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException

Overrides EntityTypeManagerInterface::getStorage

File

core/lib/Drupal/Core/Entity/EntityTypeManager.php, line 165
Contains \Drupal\Core\Entity\EntityTypeManager.

Class

EntityTypeManager
Manages entity type plugin definitions.

Namespace

Drupal\Core\Entity

Code

public function getStorage($entity_type) {
  return $this
    ->getHandler($entity_type, 'storage');
}