Automattic\WooCommerce\Internal\ProductDownloads\ApprovedDirectories\Admin

Table::get_bulk_actions()protectedWC 1.0

Get bulk actions.

Method of the class: Table{}

No Hooks.

Returns

Array.

Usage

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

Table::get_bulk_actions() code WC 9.8.5

protected function get_bulk_actions() {
	return array(
		'enable'  => __( 'Enable rule', 'woocommerce' ),
		'disable' => __( 'Disable rule', 'woocommerce' ),
		'delete'  => __( 'Delete permanently', 'woocommerce' ),
	);
}