You are here

function entitycache_user_logout in Entity cache 7

Implements hook_user_logout().

File

./entitycache.module, line 205
Allows for caching of core entities.

Code

function entitycache_user_logout($account) {
  cache_clear_all($account->uid, 'cache_entity_user');
}