function Contact::preCreate

Same name in other branches
  1. 8.x-1.x content_entity_example/src/Entity/Contact.php \Drupal\content_entity_example\Entity\Contact::preCreate()
  2. 4.0.x modules/content_entity_example/src/Entity/Contact.php \Drupal\content_entity_example\Entity\Contact::preCreate()

When a new entity instance is added, set the user_id entity reference to the current user as the creator of the instance.

Overrides EntityBase::preCreate

File

modules/content_entity_example/src/Entity/Contact.php, line 148

Class

Contact
Defines the ContentEntityExample entity.

Namespace

Drupal\content_entity_example\Entity

Code

public static function preCreate(EntityStorageInterface $storage_controller, array &$values) {
    parent::preCreate($storage_controller, $values);
    $values += [
        'user_id' => \Drupal::currentUser()->id(),
    ];
}