WP_Privacy_Data_Export_Requests_Table::__construct() WordPress Method
The WP_Privacy_Data_Export_Requests_Table::__construct() method is used to construct the privacy data export requests table. It takes two arguments: the name of the database table and the name of the primary key column.
WP_Privacy_Data_Export_Requests_Table::__construct( $args ) #
Source
File: wp-admin/includes/deprecated.php
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 ); }
Expand full source codeCollapse full source codeView on TracView on GitHub