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
@@ -96,6 +99,7 @@ function bitpaycheckout_config()
96
99
'Type' => 'text',
97
100
'Size' => '25',
98
101
'Default' => '',
102
+
// @phpcs:ignore Generic.Files.LineLength.TooLong
99
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`.',
100
104
),
101
105
// a text field type allows for single line text input
@@ -104,19 +108,22 @@ function bitpaycheckout_config()
104
108
'Type' => 'text',
105
109
'Size' => '25',
106
110
'Default' => '',
111
+
// @phpcs:ignore Generic.Files.LineLength.TooLong
107
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`.',
108
113
),
109
114
110
115
'bitpay_checkout_endpoint' => array(
111
116
'FriendlyName' => 'Endpoint',
112
117
'Type' => 'dropdown',
113
118
'Options' => 'Test,Production',
119
+
// @phpcs:ignore Generic.Files.LineLength.TooLong
114
120
'Description' => 'Select <b>Test</b> for testing the plugin, <b>Production</b> when you are ready to go live.<br>',
115
121
),
116
122
'bitpay_checkout_mode' => array(
117
123
'FriendlyName' => 'Payment UX',
118
124
'Type' => 'dropdown',
119
125
'Options' => 'Modal,Redirect',
126
+
// @phpcs:ignore Generic.Files.LineLength.TooLong
120
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>',
121
128
),
122
129
);
@@ -147,7 +154,7 @@ function bitpaycheckout_link($config_params)
0 commit comments