You are here

public static function Comment::preCreate in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/comment/src/Entity/Comment.php \Drupal\comment\Entity\Comment::preCreate()

Changes the values of an entity before it is created.

Load defaults for example.

Parameters

\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage object.

mixed[] $values: An array of values to set, keyed by property name. If the entity type has bundles the bundle key has to be specified.

Overrides EntityBase::preCreate

File

core/modules/comment/src/Entity/Comment.php, line 504

Class

Comment
Defines the comment entity class.

Namespace

Drupal\comment\Entity

Code

public static function preCreate(EntityStorageInterface $storage, array &$values) {
  if (empty($values['comment_type']) && !empty($values['field_name']) && !empty($values['entity_type'])) {
    $fields = \Drupal::service('entity_field.manager')
      ->getFieldStorageDefinitions($values['entity_type']);
    $values['comment_type'] = $fields[$values['field_name']]
      ->getSetting('comment_type');
  }
}