class WP_Privacy_Data_Export_Requests_Table {}

In this article

This class has been deprecated.

Previous class for list table for privacy data export requests.

Methods

NameDescription
WP_Privacy_Data_Export_Requests_Table::__construct
WP_Privacy_Data_Export_Requests_Table::column_emailActions column.
WP_Privacy_Data_Export_Requests_Table::column_next_stepsDisplays the next steps column.

Source

class WP_Privacy_Data_Export_Requests_Table extends WP_Privacy_Data_Export_Requests_List_Table {
	function __construct( $args ) {
		_deprecated_function( __CLASS__, '5.3.0', 'WP_Privacy_Data_Export_Requests_List_Table' );

		if ( ! isset( $args['screen'] ) || $args['screen'] === 'export_personal_data' ) {
			$args['screen'] = 'export-personal-data';
		}

		parent::__construct( $args );
	}
}

Changelog

VersionDescription
5.3.0This class has been deprecated.
4.9.6Introduced.

User Contributed Notes

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