function d8cache_user_delete in Drupal 8 Cache Backport 7
Implements hook_user_delete().
File
- includes/
user.inc, line 40 - User functions and hooks for the D8 caching system backport.
Code
function d8cache_user_delete($account) {
drupal_invalidate_cache_tags(array(
'search_index:user',
));
}