Automattic\WooCommerce\Blocks\Payments\Integrations
CashOnDelivery::get_payment_method_data
Returns an array of key=>value pairs of data made available to the payment methods script.
Method of the class: CashOnDelivery{}
No Hooks.
Returns
Array.
Usage
$CashOnDelivery = new CashOnDelivery(); $CashOnDelivery->get_payment_method_data();
CashOnDelivery::get_payment_method_data() CashOnDelivery::get payment method data code WC 10.6.2
public function get_payment_method_data() {
return [
'title' => $this->get_setting( 'title' ),
'description' => $this->get_setting( 'description' ),
'enableForVirtual' => $this->get_enable_for_virtual(),
'enableForShippingMethods' => $this->get_enable_for_methods(),
'supports' => $this->get_supported_features(),
];
}