public function SubEntityDefinitionUpdateManager::publicGetChangeList in Entity Update 8
Gets a list of changes to entity type and field storage definitions.
Return value
array An associative array keyed by entity type id of change descriptors. Every entry is an associative array with the following optional keys:
- entity_type: a scalar having only the DEFINITION_UPDATED value.
- field_storage_definitions: an associative array keyed by field name of
scalars having one value among:
- DEFINITION_CREATED
- DEFINITION_UPDATED
- DEFINITION_DELETED
File
- src/
SubEntityDefinitionUpdateManager.php, line 32
Class
- SubEntityDefinitionUpdateManager
- This is an extention of EntityDefinitionUpdateManager.
Namespace
Drupal\entity_updateCode
public function publicGetChangeList() {
return parent::getChangeList();
}