23 lines
590 B
PHP
23 lines
590 B
PHP
<?php
|
|
|
|
namespace MailPoet\Config;
|
|
|
|
use MailPoet\Subscribers\SubscriberPersonalDataEraser;
|
|
use MailPoet\WP\Functions as WPFunctions;
|
|
|
|
class PersonalDataErasers {
|
|
|
|
public function init() {
|
|
WPFunctions::get()->addFilter('wp_privacy_personal_data_erasers', [$this, 'registerSubscriberEraser']);
|
|
}
|
|
|
|
public function registerSubscriberEraser($erasers) {
|
|
$erasers['mailpet-subscriber'] = [
|
|
'eraser_friendly_name' => WPFunctions::get()->__('MailPoet Subscribers', 'mailpoet'),
|
|
'callback' => [new SubscriberPersonalDataEraser(), 'erase'],
|
|
];
|
|
|
|
return $erasers;
|
|
}
|
|
|
|
} |