class-wc-stripe-sepa-payment-token.php
2.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
// phpcs:disable WordPress.Files.FileName
/**
* WooCommerce Stripe SEPA Direct Debit Payment Token.
*
* Representation of a payment token for SEPA.
*
* @class WC_Payment_Token_SEPA
* @version 4.0.0
* @since 4.0.0
*/
class WC_Payment_Token_SEPA extends WC_Payment_Token {
/**
* Stores payment type.
*
* @var string
*/
protected $type = 'sepa';
/**
* Stores SEPA payment token data.
*
* @var array
*/
protected $extra_data = [
'last4' => '',
'payment_method_type' => 'sepa_debit',
];
/**
* Get type to display to user.
*
* @since 4.0.0
* @version 4.0.0
* @param string $deprecated Deprecated since WooCommerce 3.0
* @return string
*/
public function get_display_name( $deprecated = '' ) {
$display = sprintf(
/* translators: last 4 digits of IBAN account */
__( 'SEPA IBAN ending in %s', 'woocommerce-gateway-stripe' ),
$this->get_last4()
);
return $display;
}
/**
* Hook prefix
*
* @since 4.0.0
* @version 4.0.0
*/
protected function get_hook_prefix() {
return 'woocommerce_payment_token_sepa_get_';
}
/**
* Validate SEPA payment tokens.
*
* These fields are required by all SEPA payment tokens:
* last4 - string Last 4 digits of the iBAN
*
* @since 4.0.0
* @version 4.0.0
* @return boolean True if the passed data is valid
*/
public function validate() {
if ( false === parent::validate() ) {
return false;
}
if ( ! $this->get_last4( 'edit' ) ) {
return false;
}
return true;
}
/**
* Returns the last four digits.
*
* @since 4.0.0
* @version 4.0.0
* @param string $context What the value is for. Valid values are view and edit.
* @return string Last 4 digits
*/
public function get_last4( $context = 'view' ) {
return $this->get_prop( 'last4', $context );
}
/**
* Set the last four digits.
*
* @since 4.0.0
* @version 4.0.0
* @param string $last4
*/
public function set_last4( $last4 ) {
$this->set_prop( 'last4', $last4 );
}
/**
* Set Stripe payment method type.
*
* @param string $type Payment method type.
*/
public function set_payment_method_type( $type ) {
$this->set_prop( 'payment_method_type', $type );
}
/**
* Returns Stripe payment method type.
*
* @param string $context What the value is for. Valid values are view and edit.
* @return string $payment_method_type
*/
public function get_payment_method_type( $context = 'view' ) {
return $this->get_prop( 'payment_method_type', $context );
}
}