Automattic\WooCommerce\Blocks\Payments\Integrations
BankTransfer::get_payment_method_data() public WC 1.0
Returns an array of key=>value pairs of data made available to the payment methods script.
{} Это метод класса: BankTransfer{}
Хуков нет.
Возвращает
Массив
. Ничего.
Использование
$BankTransfer = new BankTransfer(); $BankTransfer->get_payment_method_data();
Код BankTransfer::get_payment_method_data() BankTransfer::get payment method data WC 5.2.2
public function get_payment_method_data() {
return [
'title' => $this->get_setting( 'title' ),
'description' => $this->get_setting( 'description' ),
'supports' => $this->get_supported_features(),
];
}