function entity_info_cache_clear

Resets the cached information about entity types.

7 calls to entity_info_cache_clear()

File

drupal/includes/common.inc, line 7904
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);
}