Automattic\WooCommerce\Internal\Admin\Logging\FileV2

FileListTable::get_bulk_actionsprotectedWC 1.0

Retrieves the list of bulk actions available for this table.

Method of the class: FileListTable{}

No Hooks.

Returns

Array.

Usage

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

FileListTable::get_bulk_actions() code WC 10.7.0

protected function get_bulk_actions(): array {
	return array(
		'export' => esc_html__( 'Download', 'woocommerce' ),
		'delete' => esc_html__( 'Delete permanently', 'woocommerce' ),
	);
}