WP_Privacy_Data_Removal_Requests_Table::__construct() WordPress Method

The WP_Privacy_Data_Removal_Requests_Table::__construct() method is used to create a new privacy data removal requests table.

WP_Privacy_Data_Removal_Requests_Table::__construct( $args ) #


Source

File: wp-admin/includes/deprecated.php

	function __construct( $args ) {
		_deprecated_function( __CLASS__, '5.3.0', 'WP_Privacy_Data_Removal_Requests_List_Table' );

		if ( ! isset( $args['screen'] ) || $args['screen'] === 'remove_personal_data' ) {
			$args['screen'] = 'erase-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