Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rvdsteege/95f4f8cd902eeac9ecc3384620db1715 to your computer and use it in GitHub Desktop.
Save rvdsteege/95f4f8cd902eeac9ecc3384620db1715 to your computer and use it in GitHub Desktop.
Pronamic Pay privacy erasure by email address.
<?php
/**
* Pronamic Pay privacy erasure by email address.
*/
$emails = array();
$privacy_erasers = pronamic_pay_plugin()->privacy_manager->register_erasers( array() );
foreach ( $emails as $email ) {
foreach ( $privacy_erasers as $eraser ) {
call_user_func( $eraser['callback'], $email );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment