1 entity.module entity_modules_uninstalled($modules)

Implements hook_modules_uninstalled().

File

core/modules/entity/entity.module, line 24
Entity API for handling entities like nodes or users.

Code

function entity_modules_uninstalled($modules) {
  // It is important that the entity info cache gets flushed last to prevent
  // fatal errors with outdated entity information.
  backdrop_register_shutdown_function('entity_info_cache_clear');
}