entity_info_cache_clear

7 common.inc entity_info_cache_clear()
8 entity.module entity_info_cache_clear()

Resets the cached information about entity types.

7 calls to entity_info_cache_clear()

File

includes/common.inc, line 7510
Common functions that many Drupal modules will need to reference.

Code

function entity_info_cache_clear() {
  drupal_static_reset('entity_get_info');
  // Clear all languages.
  cache_clear_all('entity_info:', 'cache', TRUE);
}
Login or register to post comments