You are here

public function RightToBeForgottenCompleteEvent::__construct 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::__construct()
  2. 3.0.x modules/gdpr_tasks/src/Event/RightToBeForgottenCompleteEvent.php \Drupal\gdpr_tasks\Event\RightToBeForgottenCompleteEvent::__construct()

Constructs the object.

Parameters

string $email: The user for whom the request was made.

File

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

Class

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

Namespace

Drupal\gdpr_tasks\Event

Code

public function __construct($email) {
  $this->email = $email;
}