Automattic\WooCommerce\Blocks\Payments\Integrations

CashOnDelivery::get_enable_for_methods()privateWC 1.0

Return enable_for_methods option.

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

Хуков нет.

Возвращает

Массив. Array of shipping methods (string ids) that allow COD. (If empty, all support COD.)

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

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

Код CashOnDelivery::get_enable_for_methods() WC 8.7.0

private function get_enable_for_methods() {
	$enable_for_methods = $this->get_setting( 'enable_for_methods', [] );
	if ( '' === $enable_for_methods ) {
		return [];
	}
	return $enable_for_methods;
}