Automattic\WooCommerce\Internal\ProductDownloads\ApprovedDirectories\Admin

Table::get_bulk_actions()protectedWC 1.0

Get bulk actions.

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

Хуков нет.

Возвращает

Массив.

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

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

Код Table::get_bulk_actions() WC 8.7.0

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