function EntityTestUpdateStorage::saveToDedicatedTables
Same name in other branches
- 9 core/modules/system/tests/modules/entity_test_update/src/EntityTestUpdateStorage.php \Drupal\entity_test_update\EntityTestUpdateStorage::saveToDedicatedTables()
- 8.9.x core/modules/system/tests/modules/entity_test_update/src/EntityTestUpdateStorage.php \Drupal\entity_test_update\EntityTestUpdateStorage::saveToDedicatedTables()
- 10 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 20
Class
- EntityTestUpdateStorage
- Helper class for entity update testing.
Namespace
Drupal\entity_test_updateCode
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.