W3cubDocs

/Drupal 8

protected function ConfigEntityStorage::doCreate

protected ConfigEntityStorage::doCreate(array $values)

Performs storage-specific creation of entities.

Parameters

array $values: An array of values to set, keyed by property name.

Return value

\Drupal\Core\Entity\EntityInterface

Overrides EntityStorageBase::doCreate

File

core/lib/Drupal/Core/Config/Entity/ConfigEntityStorage.php, line 221

Class

ConfigEntityStorage
Defines the storage class for configuration entities.

Namespace

Drupal\Core\Config\Entity

Code

protected function doCreate(array $values) {
  // Set default language to current language if not provided.
  $values += array($this->langcodeKey => $this->languageManager->getCurrentLanguage()->getId());
  $entity = new $this->entityClass($values, $this->entityTypeId);

  return $entity;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Config!Entity!ConfigEntityStorage.php/function/ConfigEntityStorage::doCreate/8.1.x