public EntityTypeManager::getStorage($entity_type)
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 168
Class
- EntityTypeManager
- Manages entity type plugin definitions.
Namespace
Drupal\Core\Entity
Code
public function getStorage($entity_type) { return $this->getHandler($entity_type, 'storage'); }
Please login to continue.