class RightToBeForgottenCompleteEvent in General Data Protection Regulation 8.2
Same name and namespace in other branches
- 8 modules/gdpr_tasks/src/Event/RightToBeForgottenCompleteEvent.php \Drupal\gdpr_tasks\Event\RightToBeForgottenCompleteEvent
 - 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
- class \Drupal\gdpr_tasks\Event\RightToBeForgottenCompleteEvent extends \Symfony\Component\EventDispatcher\Event
 
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\EventView 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
| 
            Name | 
                  Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| 
            RightToBeForgottenCompleteEvent:: | 
                  public | property | The recipient's email address. | |
| 
            RightToBeForgottenCompleteEvent:: | 
                  constant | |||
| 
            RightToBeForgottenCompleteEvent:: | 
                  public | function | Constructs the object. |