RightToBeForgottenCompleteEvent.php in General Data Protection Regulation 8
Same filename and directory in other branches
Namespace
Drupal\gdpr_tasks\EventFile
modules/gdpr_tasks/src/Event/RightToBeForgottenCompleteEvent.phpView source
<?php
namespace Drupal\gdpr_tasks\Event;
use Symfony\Component\EventDispatcher\Event;
/**
* Event fired once a Right to be Forgotten event is complete.
*
* @package Drupal\gdpr_tasks\Event
*/
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;
}
}
Classes
Name | Description |
---|---|
RightToBeForgottenCompleteEvent | Event fired once a Right to be Forgotten event is complete. |