Warning: This class has been deprecated.

WP_Privacy_Data_Export_Requests_Table WordPress Class

The WP_Privacy_Data_Export_Requests_Table class is used to generate and manage export requests for a WordPress site. This class is responsible for creating and managing the database table that stores export requests. It also provides an interface for managing export requests via the WordPress admin.

WP_Privacy_Data_Export_Requests_Table #

Previous class for list table for privacy data export requests.


Source

File: wp-admin/includes/deprecated.php

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 );
	}
}


Top ↑

Methods


Top ↑

Changelog

Changelog
VersionDescription
5.3.0This class has been deprecated.
4.9.6Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More