function simplenews_user_delete in Simplenews 8
Same name and namespace in other branches
- 8.2 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 520 - Simplenews node handling, sent email, newsletter block and general hooks
Code
function simplenews_user_delete(UserInterface $account) {
// Delete subscription when account is removed.
$subscriber = simplenews_subscriber_load_by_uid($account
->id());
if ($subscriber) {
$subscriber
->delete();
}
}