function EntityTestUpdateStorage::saveToDedicatedTables

Same name and namespace in other branches
  1. 8.9.x core/modules/system/tests/modules/entity_test_update/src/EntityTestUpdateStorage.php \Drupal\entity_test_update\EntityTestUpdateStorage::saveToDedicatedTables()
  2. 10 core/modules/system/tests/modules/entity_test_update/src/EntityTestUpdateStorage.php \Drupal\entity_test_update\EntityTestUpdateStorage::saveToDedicatedTables()
  3. 11.x core/modules/system/tests/modules/entity_test_update/src/EntityTestUpdateStorage.php \Drupal\entity_test_update\EntityTestUpdateStorage::saveToDedicatedTables()

Overrides SqlContentEntityStorage::saveToDedicatedTables

File

core/modules/system/tests/modules/entity_test_update/src/EntityTestUpdateStorage.php, line 18

Class

EntityTestUpdateStorage
Helper class for entity update testing.

Namespace

Drupal\entity_test_update

Code

protected function saveToDedicatedTables(ContentEntityInterface $entity, $update = TRUE, $names = []) {
    // Simulate an error during the 'restore' process of a test entity.
    if (\Drupal::state()->get('entity_test_update.throw_exception', FALSE)) {
        throw new \Exception('Peekaboo!');
    }
    parent::saveToDedicatedTables($entity, $update, $names);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.