history_user_delete($account)
Implements hook_ENTITY_TYPE_delete() for user entities.
File
- core/modules/history/history.module, line 175
- Records which users have read which content.
Code
function history_user_delete($account) { db_delete('history') ->condition('uid', $account->id()) ->execute(); }
Please login to continue.