Automattic\WooCommerce\Internal\Admin\Logging\FileV2

FileListTable::get_bulk_actions()protectedWC 1.0

Retrieves the list of bulk actions available for this table.

Метод класса: FileListTable{}

Хуков нет.

Возвращает

Массив.

Использование

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->get_bulk_actions(): array;

Код FileListTable::get_bulk_actions() WC 9.7.1

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