function entity_update_get_entity_changes in Entity Update 8
Same name and namespace in other branches
- 2.0.x entity_update.module \entity_update_get_entity_changes()
Get Entity changes summary.
Return value
array An associative array keyed by entity type id. Each entry is an array of human-readable strings, each describing a change.
1 call to entity_update_get_entity_changes()
- EntityUpdate::getEntityTypesToUpdate in src/
EntityUpdate.php - Get Entity types to update.
File
- ./
entity_update.module, line 102 - Entity update module (entity_update).
Code
function entity_update_get_entity_changes() {
return \Drupal::entityDefinitionUpdateManager()
->getChangeSummary();
}