public function RightToBeForgottenCompleteEvent::__construct in General Data Protection Regulation 3.0.x
Same name and namespace in other branches
- 8.2 modules/gdpr_tasks/src/Event/RightToBeForgottenCompleteEvent.php \Drupal\gdpr_tasks\Event\RightToBeForgottenCompleteEvent::__construct()
- 8 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\EventCode
public function __construct($email) {
$this->email = $email;
}