You are here

function commerce_log_test_entity_test_insert in Commerce Core 8.2

Implements hook_ENTITY_TYPE_insert().

File

modules/log/tests/module/commerce_log_test.module, line 13
Test module for Log.

Code

function commerce_log_test_entity_test_insert(EntityInterface $entity) {

  /** @var \Drupal\commerce_log\LogStorageInterface $log_storage */
  $log_storage = \Drupal::entityTypeManager()
    ->getStorage('commerce_log');
  $params = [
    'entity_label' => $entity
      ->label(),
  ];
  $log = $log_storage
    ->generate($entity, 'entity_test_created', $params);
  $log
    ->save();
}