WC_Payment_Token_CC::get_expiry_year()publicWC 2.6.0

Returns the card expiration year (YYYY).

Method of the class: WC_Payment_Token_CC{}

No Hooks.

Return

String. Expiration year

Usage

$WC_Payment_Token_CC = new WC_Payment_Token_CC();
$WC_Payment_Token_CC->get_expiry_year( $context );
$context(string)
What the value is for. Valid values are view and edit.
Default: 'view'

Changelog

Since 2.6.0 Introduced.

WC_Payment_Token_CC::get_expiry_year() code WC 8.7.0

public function get_expiry_year( $context = 'view' ) {
	return $this->get_prop( 'expiry_year', $context );
}