You are here

class RightToBeForgottenCompleteEvent in General Data Protection Regulation 8

Same name and namespace in other branches
  1. 8.2 modules/gdpr_tasks/src/Event/RightToBeForgottenCompleteEvent.php \Drupal\gdpr_tasks\Event\RightToBeForgottenCompleteEvent
  2. 3.0.x modules/gdpr_tasks/src/Event/RightToBeForgottenCompleteEvent.php \Drupal\gdpr_tasks\Event\RightToBeForgottenCompleteEvent

Event fired once a Right to be Forgotten event is complete.

@package Drupal\gdpr_tasks\Event

Hierarchy

Expanded class hierarchy of RightToBeForgottenCompleteEvent

1 file declares its use of RightToBeForgottenCompleteEvent
TaskActionsForm.php in modules/gdpr_tasks/src/Form/TaskActionsForm.php

File

modules/gdpr_tasks/src/Event/RightToBeForgottenCompleteEvent.php, line 12

Namespace

Drupal\gdpr_tasks\Event
View source
class RightToBeForgottenCompleteEvent extends Event {
  const EVENT_NAME = 'gdpr_tasks.rules_rtf_complete';

  /**
   * The recipient's email address.
   *
   * This is not a full reference to the user as all data has been anonymized.
   *
   * @var string
   */
  public $email;

  /**
   * Constructs the object.
   *
   * @param string $email
   *   The user for whom the request was made.
   */
  public function __construct($email) {
    $this->email = $email;
  }

}

Members