WP_Privacy_Data_Export_Requests_Table{}└─ WP_Privacy_Data_Export_Requests_List_Table
Deprecated since 5.3.0. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.
Previous class for list table for privacy data export requests.
No Hooks.
Usage
$WP_Privacy_Data_Export_Requests_Table = new WP_Privacy_Data_Export_Requests_Table(); // use class methods
Methods
- public __construct( $args )
Changelog
| Since 4.9.6 | Introduced. |
| Deprecated since | 5.3.0 |
WP_Privacy_Data_Export_Requests_Table{} WP Privacy Data Export Requests Table{} code WP 7.0
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 );
}
}