WP_Privacy_Requests_Table::get_bulk_actions(): array

Gets bulk actions.


Return

array Array of bulk action labels keyed by their action.


Top ↑

Source

File: wp-admin/includes/class-wp-privacy-requests-table.php. View all references

protected function get_bulk_actions() {
	return array(
		'resend'   => __( 'Resend confirmation requests' ),
		'complete' => __( 'Mark requests as completed' ),
		'delete'   => __( 'Delete requests' ),
	);
}


Top ↑

Changelog

Changelog
Version Description
4.9.6 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.