public static function Workflow::preCreate in Forms Steps 8
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
- src/
Entity/ Workflow.php, line 45
Class
- Workflow
- Defines the Workflow entity.
Namespace
Drupal\forms_steps\EntityCode
public static function preCreate(EntityStorageInterface $storage_controller, array &$values) {
parent::preCreate($storage_controller, $values);
$values += [
'user_id' => \Drupal::currentUser()
->id(),
];
}