4
4
* The admin-specific functionality of the plugin.
5
5
*
6
6
* @link htps://www.justinwhall.com
7
- * @since 1.0.0
7
+ * @since 1.0.1
8
8
*
9
9
* @package Wp_Stripe_Plaid
10
10
* @subpackage Wp_Stripe_Plaid/admin
@@ -145,7 +145,7 @@ public function get_settings_fields() {
145
145
),
146
146
array (
147
147
'name ' => 'stripe_help ' ,
148
- 'desc ' => __ ( 'Stripe keys are located: <a href="https://dashboard.stripe.com/account/apikeys">https://dashboard.stripe.com/account/apikeys</a> ' , $ plugin_name ),
148
+ 'desc ' => __ ( 'Stripe keys are located: <a target="_blank" href="https://dashboard.stripe.com/account/apikeys">https://dashboard.stripe.com/account/apikeys</a> ' , $ plugin_name ),
149
149
'type ' => 'html '
150
150
),
151
151
array (
@@ -158,17 +158,17 @@ public function get_settings_fields() {
158
158
'sanitize_callback ' => 'sanitize_text_field '
159
159
),
160
160
array (
161
- 'name ' => 'plaid_secret ' ,
162
- 'label ' => __ ( 'Plaid Secret ' , $ plugin_name ),
161
+ 'name ' => 'plaid_public_key ' ,
162
+ 'label ' => __ ( 'Plaid Public Key ' , $ plugin_name ),
163
163
'desc ' => __ ( '' , $ plugin_name ),
164
164
'placeholder ' => __ ( '' , $ plugin_name ),
165
165
'type ' => 'text ' ,
166
166
'default ' => '' ,
167
167
'sanitize_callback ' => 'sanitize_text_field '
168
168
),
169
169
array (
170
- 'name ' => 'plaid_public_key ' ,
171
- 'label ' => __ ( 'Plaid Public Key ' , $ plugin_name ),
170
+ 'name ' => 'plaid_secret ' ,
171
+ 'label ' => __ ( 'Plaid Secret ' , $ plugin_name ),
172
172
'desc ' => __ ( '' , $ plugin_name ),
173
173
'placeholder ' => __ ( '' , $ plugin_name ),
174
174
'type ' => 'text ' ,
@@ -177,7 +177,7 @@ public function get_settings_fields() {
177
177
),
178
178
array (
179
179
'name ' => 'plaid_help ' ,
180
- 'desc ' => __ ( 'Plaid keys are located: <a href="https://dashboard.plaid.com/account/keys">https://dashboard.plaid.com/account/keys</a> ' , $ plugin_name ),
180
+ 'desc ' => __ ( 'Plaid keys are located: <a target="_blank" href="https://dashboard.plaid.com/account/keys">https://dashboard.plaid.com/account/keys</a> ' , $ plugin_name ),
181
181
'type ' => 'html '
182
182
),
183
183
array (
0 commit comments