WC_Abstract_Privacy::init()protectedWC 1.0

Hook in events.

Method of the class: WC_Abstract_Privacy{}

No Hooks.

Return

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->init();

WC_Abstract_Privacy::init() code WC 8.7.0

protected function init() {
	add_action( 'admin_init', array( $this, 'add_privacy_message' ) );
	// We set priority to 5 to help WooCommerce's findings appear before those from extensions in exported items.
	add_filter( 'wp_privacy_personal_data_exporters', array( $this, 'register_exporters' ), $this->export_priority );
	add_filter( 'wp_privacy_personal_data_erasers', array( $this, 'register_erasers' ), $this->erase_priority );
}