Entity Definition Update Manager Class
Last updated
Last updated
Provides developers with a class to perform automatic entity updates.
Use only in the development environment. Not to use on production websites.
https://www.drupal.org/node/3034742
User deprecated function: EntityDefinitionUpdateManagerInterface::applyUpdates()
was deprecated in Drupal 8.7.0 and was removed before Drupal 9.0.0.
Customized class for the entity definition update manager.
Or add the package to your composer.json
file
Add the following namespace in custom modules or custom installation profiles.
Import or update configs in hook install or hook update, or any post install or post update.
Varbase Core is important number of managed configurations on install. It needed to update entity definitions after that.
Varbase API in some point needed to update configurations in a hook update. It needed to update entity definitions after that. Which did not work without entity definition update.
Having custom and managed config templates. Which on import to the active config for selected entity types or fields.
Entity definitions need to be auto updated
Field definitions need to be auto updated.
Do not use when the import/update of configs works in the normal way.
If all configs are in the config/install
and no issues on install.
Use when custom managed configs just have been imported or updated in a custom order, And custom actions or changes in between imports are being involved.
If the module or profile has number of optional or managed configs. Which located in config/optional
or config/managed
or any other custom physical locations.
When importing or updating with custom Drupal Config Factory or Drupal Install Factory.