WC_Payment_Gateway_CC::field_name( string $name )

Output field name HTML


Description Description

Gateways which support tokenization do not require names – we don’t want the data to post to the server.


Parameters Parameters

$name

(Required) Field name.


Top ↑

Return Return

(string)


Top ↑

Source Source

File: includes/gateways/class-wc-payment-gateway-cc.php

	public function field_name( $name ) {
		return $this->supports( 'tokenization' ) ? '' : ' name="' . esc_attr( $this->id . '-' . $name ) . '" ';
	}

Top ↑

Changelog Changelog

Changelog
Version Description
2.6.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.