Automattic\WooCommerce\Blocks\Payments\Integrations

PayPal::get_payment_method_data()publicWC 1.0

Returns an array of key=>value pairs of data made available to the payment methods script.

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

Хуков нет.

Возвращает

Массив.

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

$PayPal = new PayPal();
$PayPal->get_payment_method_data();

Код PayPal::get_payment_method_data() WC 8.7.0

public function get_payment_method_data() {
	return [
		'title'       => $this->get_setting( 'title' ),
		'description' => $this->get_setting( 'description' ),
		'supports'    => $this->get_supported_features(),
	];
}