WP_Privacy_Requests_Table::get_bulk_actions()protectedWP 4.9.6

Gets bulk actions.

Method of the class: WP_Privacy_Requests_Table{}

No Hooks.

Return

Array. Array of bulk action labels keyed by their action.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_bulk_actions();

Changelog

Since 4.9.6 Introduced.

WP_Privacy_Requests_Table::get_bulk_actions() code WP 6.5.2

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