Tribe__Tickets_Plus__Privacy::hook()
Class initialization
Source
File: src/Tribe/Privacy.php
public function hook() {
// register exporter
add_filter( 'wp_privacy_personal_data_exporters', array( $this, 'register_exporters' ), 10 );
// register erasers
add_filter( 'wp_privacy_personal_data_erasers', array( $this, 'register_erasers' ), 10 );
// Add filters to add meta fields into RSVPs and TPP orders
add_filter( 'tribe_tickets_personal_data_export_rsvp', array( $this, 'add_meta_fields_rsvp' ), 10, 2 );
add_filter( 'tribe_tickets_personal_data_export_tpp', array( $this, 'add_meta_fields_tpp' ), 10, 2 );
}
Changelog
| Version | Description |
|---|---|
| 4.7.6 | Introduced. |