function simplenews_user_delete in Simplenews 8.2
Same name and namespace in other branches
- 8 simplenews.module \simplenews_user_delete()
- 7.2 simplenews.module \simplenews_user_delete()
- 7 simplenews.module \simplenews_user_delete()
- 3.x simplenews.module \simplenews_user_delete()
Implements hook_user_delete().
File
- ./
simplenews.module, line 488 - Simplenews node handling, sent email, newsletter block and general hooks.
Code
function simplenews_user_delete(UserInterface $account) {
// Delete subscription when account is removed.
if ($subscriber = Subscriber::loadByUid($account
->id())) {
$subscriber
->delete();
}
}