LLMS_Abstract_Privacy::add_hooks()

Add filters for the registered exporters & erasers.


Return Return

(void)


Top ↑

Source Source

File: includes/abstracts/llms.abstract.privacy.php

	protected function add_hooks() {

		add_action( 'admin_init', array( $this, 'add_privacy_message' ) );

		add_filter( 'wp_privacy_personal_data_erasers', array( $this, 'register_erasers' ) );
		add_filter( 'wp_privacy_personal_data_exporters', array( $this, 'register_exporters' ), 5 );
	}


Top ↑

Changelog Changelog

Changelog
Version Description
3.18.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.