You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -97,6 +99,7 @@ function bitpaycheckout_config()
97
99
'Type' => 'text',
98
100
'Size' => '25',
99
101
'Default' => '',
102
+
// @phpcs:ignore Generic.Files.LineLength.TooLong
100
103
'Description' => 'Your <b>development</b> merchant token. <a href = "https://test.bitpay.com/dashboard/merchant/api-tokens" target = "_blank">Create one here</a> and <b>uncheck</b> `Require Authentication`.',
101
104
),
102
105
// a text field type allows for single line text input
@@ -105,21 +108,24 @@ function bitpaycheckout_config()
105
108
'Type' => 'text',
106
109
'Size' => '25',
107
110
'Default' => '',
111
+
// @phpcs:ignore Generic.Files.LineLength.TooLong
108
112
'Description' => 'Your <b>production</b> merchant token. <a href = "https://bitpay.com/dashboard/merchant/api-tokens" target = "_blank">Create one here</a> and <b>uncheck</b> `Require Authentication`.',
109
113
),
110
114
111
115
'bitpay_checkout_endpoint' => array(
112
116
'FriendlyName' => 'Endpoint',
113
117
'Type' => 'dropdown',
114
118
'Options' => 'Test,Production',
119
+
// @phpcs:ignore Generic.Files.LineLength.TooLong
115
120
'Description' => 'Select <b>Test</b> for testing the plugin, <b>Production</b> when you are ready to go live.<br>',
116
121
),
117
122
'bitpay_checkout_mode' => array(
118
123
'FriendlyName' => 'Payment UX',
119
124
'Type' => 'dropdown',
120
125
'Options' => 'Modal,Redirect',
126
+
// @phpcs:ignore Generic.Files.LineLength.TooLong
121
127
'Description' => 'Select <b>Modal</b> to keep the user on the invoice page, or <b>Redirect</b> to have them view the invoice at BitPay.com, and be redirected after payment.<br>',
122
-
),
128
+
),
123
129
);
124
130
}
125
131
}
@@ -137,7 +143,9 @@ function bitpaycheckout_link($config_params)
0 commit comments