function tour_test_tour_presave

Implements hook_ENTITY_TYPE_presave() for tour.

File

drupal/core/modules/tour/tests/tour_test/tour_test.module, line 37
Provides tests for tour module

Code

function tour_test_tour_presave($entity) {
  if ($entity
    ->id() == 'tour-entity-create-test-en') {
    $entity
      ->set('label', $entity
      ->label() . ' alter');
  }
}