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

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