You are here

function simplenews_user_delete in Simplenews 8.2

Same name and namespace in other branches
  1. 8 simplenews.module \simplenews_user_delete()
  2. 7.2 simplenews.module \simplenews_user_delete()
  3. 7 simplenews.module \simplenews_user_delete()
  4. 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();
  }
}