function EntityBase::create

Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Entity/EntityBase.php \Drupal\Core\Entity\EntityBase::create()
  2. 10 core/lib/Drupal/Core/Entity/EntityBase.php \Drupal\Core\Entity\EntityBase::create()
  3. 11.x core/lib/Drupal/Core/Entity/EntityBase.php \Drupal\Core\Entity\EntityBase::create()

Overrides EntityInterface::create

1 call to EntityBase::create()
ConfigurableLanguage::createFromLangcode in core/modules/language/src/Entity/ConfigurableLanguage.php
Creates a configurable language object from a langcode.
1 method overrides EntityBase::create()
ContentEntityBase::create in core/lib/Drupal/Core/Entity/ContentEntityBase.php
Constructs a new entity object, without permanently saving it.

File

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

Class

EntityBase
Defines a base entity class.

Namespace

Drupal\Core\Entity

Code

public static function create(array $values = []) {
    $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->create($values);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.