class-settings-addon.php
6 years ago
class-settings-advanced.php
2 years ago
class-settings-display.php
2 years ago
class-settings-email.php
2 years ago
class-settings-gateways.php
2 years ago
class-settings-general.php
3 years ago
class-settings-license.php
4 years ago
class-settings-recurring.php
3 years ago
class-settings-gateways.php
644 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Give Settings Page/Tab |
| 5 | * |
| 6 | * @package Give |
| 7 | * @since 1.8 |
| 8 | * @copyright Copyright (c) 2016, GiveWP |
| 9 | * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 10 | * @subpackage Classes/Give_Settings_Gateways |
| 11 | */ |
| 12 | |
| 13 | use Give\DonationForms\V2\DonationFormsAdminPage; |
| 14 | use Give\PaymentGateways\PayPalCommerce\Repositories\MerchantDetails; |
| 15 | use Give\PaymentGateways\Stripe\Admin\AccountManagerSettingField; |
| 16 | |
| 17 | if (! defined('ABSPATH')) { |
| 18 | exit; // Exit if accessed directly |
| 19 | } |
| 20 | |
| 21 | if (! class_exists('Give_Settings_Gateways')) : |
| 22 | |
| 23 | /** |
| 24 | * Give_Settings_Gateways. |
| 25 | * |
| 26 | * @sine 1.8 |
| 27 | */ |
| 28 | class Give_Settings_Gateways extends Give_Settings_Page |
| 29 | { |
| 30 | /** |
| 31 | * Constructor. |
| 32 | */ |
| 33 | public function __construct() |
| 34 | { |
| 35 | $this->id = 'gateways'; |
| 36 | $this->label = esc_html__('Payment Gateways', 'give'); |
| 37 | |
| 38 | $this->default_tab = 'gateways-settings'; |
| 39 | |
| 40 | parent::__construct(); |
| 41 | |
| 42 | // Do not use main form for this tab. |
| 43 | if (give_get_current_setting_tab() === $this->id) { |
| 44 | add_action('give_admin_field_gateway_notice', [$this, 'render_gateway_notice'], 10, 2); |
| 45 | add_action('give_admin_field_enabled_gateways', [$this, 'render_enabled_gateways'], 10, 2); |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | /** |
| 50 | * Get settings array. |
| 51 | * |
| 52 | * @since 1.8 |
| 53 | * @return array |
| 54 | */ |
| 55 | public function get_settings() |
| 56 | { |
| 57 | $settings = []; |
| 58 | $current_section = give_get_current_setting_section(); |
| 59 | |
| 60 | switch ($current_section) { |
| 61 | case 'offline-donations': |
| 62 | $settings = [ |
| 63 | // Section 3: Offline gateway. |
| 64 | [ |
| 65 | 'type' => 'title', |
| 66 | 'id' => 'give_title_gateway_settings_3', |
| 67 | ], |
| 68 | [ |
| 69 | 'name' => __('Collect Billing Details', 'give'), |
| 70 | 'desc' => __('If enabled, required billing address fields are added to Offline Donation forms. These fields are not required to process the transaction, but you may have a need to collect the data. Billing address details are added to both the donation and donor record in GiveWP. ', 'give'), |
| 71 | 'id' => 'give_offline_donation_enable_billing_fields', |
| 72 | 'type' => 'radio_inline', |
| 73 | 'default' => 'disabled', |
| 74 | 'options' => [ |
| 75 | 'enabled' => __('Enabled', 'give'), |
| 76 | 'disabled' => __('Disabled', 'give'), |
| 77 | ], |
| 78 | ], |
| 79 | [ |
| 80 | 'name' => __('Offline Donation Instructions', 'give'), |
| 81 | 'desc' => __('The Offline Donation Instructions are a chance for you to educate the donor on how to best submit offline donations. These instructions appear directly on the form, and after submission of the form. Note: You may also customize the instructions on individual forms as needed.', 'give'), |
| 82 | 'id' => 'global_offline_donation_content', |
| 83 | 'default' => give_get_default_offline_donation_content(), |
| 84 | 'type' => 'wysiwyg', |
| 85 | 'options' => [ |
| 86 | 'textarea_rows' => 6, |
| 87 | ], |
| 88 | ], |
| 89 | [ |
| 90 | 'name' => esc_html__('Offline Donations Settings Docs Link', 'give'), |
| 91 | 'id' => 'offline_gateway_settings_docs_link', |
| 92 | 'url' => esc_url('http://docs.givewp.com/offlinegateway'), |
| 93 | 'title' => __('Offline Gateway Settings', 'give'), |
| 94 | 'type' => 'give_docs_link', |
| 95 | ], |
| 96 | [ |
| 97 | 'type' => 'sectionend', |
| 98 | 'id' => 'give_title_gateway_settings_3', |
| 99 | ], |
| 100 | ]; |
| 101 | break; |
| 102 | |
| 103 | case 'gateways-settings': |
| 104 | $settings = [ |
| 105 | // Section 1: Gateways. |
| 106 | [ |
| 107 | 'id' => 'give_title_gateway_settings_1', |
| 108 | 'type' => 'title', |
| 109 | ], |
| 110 | [ |
| 111 | 'id' => 'gateway_notice', |
| 112 | 'type' => 'gateway_notice', |
| 113 | ], |
| 114 | [ |
| 115 | 'name' => __('Test Mode', 'give'), |
| 116 | 'desc' => __( |
| 117 | 'If enabled, donations are processed through the sandbox/test accounts configured in each gateway\'s settings. This prevents having to use real money for tests. See the payment gateway documentation for instructions on configuring sandbox accounts.', |
| 118 | 'give' |
| 119 | ), |
| 120 | 'id' => 'test_mode', |
| 121 | 'type' => 'radio_inline', |
| 122 | 'default' => 'disabled', |
| 123 | 'options' => [ |
| 124 | 'enabled' => __('Enabled', 'give'), |
| 125 | 'disabled' => __('Disabled', 'give'), |
| 126 | ], |
| 127 | ], |
| 128 | [ |
| 129 | 'name' => __('Enabled Gateways', 'give') . ' - v2', |
| 130 | 'desc' => __('Enable your payment gateway. Can be ordered by dragging.', 'give'), |
| 131 | 'id' => 'gateways', |
| 132 | 'type' => 'enabled_gateways', |
| 133 | ], |
| 134 | [ |
| 135 | 'name' => __('Enabled Gateways', 'give') . ' - v3', |
| 136 | 'desc' => __('Enable your payment gateway. Can be ordered by dragging.', 'give'), |
| 137 | 'id' => 'gateways_v3', |
| 138 | 'type' => 'enabled_gateways_hidden', |
| 139 | ], |
| 140 | |
| 141 | /** |
| 142 | * "Enabled Gateways" setting field contains gateways label setting but when you save gateway settings then label will not save |
| 143 | * because this is not registered setting API and code will not recognize them. |
| 144 | * |
| 145 | * This setting will not render on admin setting screen but help internal code to recognize "gateways_label" setting and add them to give setting when save. |
| 146 | */ |
| 147 | [ |
| 148 | 'name' => __('Gateways Label', 'give') . ' - v2', |
| 149 | 'desc' => '', |
| 150 | 'id' => 'gateways_label', |
| 151 | 'type' => 'gateways_label_hidden', |
| 152 | ], |
| 153 | [ |
| 154 | 'name' => __('Gateways Label', 'give') . ' - v3', |
| 155 | 'desc' => '', |
| 156 | 'id' => 'gateways_label_v3', |
| 157 | 'type' => 'gateways_label_hidden', |
| 158 | ], |
| 159 | |
| 160 | /** |
| 161 | * "Enabled Gateways" setting field contains default gateway setting but when you save gateway settings then this setting will not save |
| 162 | * because this is not registered setting API and code will not recognize them. |
| 163 | * |
| 164 | * This setting will not render on admin setting screen but help internal code to recognize "default_gateway" setting and add them to give setting when save. |
| 165 | */ |
| 166 | [ |
| 167 | 'name' => __('Default Gateway', 'give') . ' - v2', |
| 168 | 'desc' => __('The gateway that will be selected by default.', 'give'), |
| 169 | 'id' => 'default_gateway', |
| 170 | 'type' => 'default_gateway_hidden', |
| 171 | ], |
| 172 | [ |
| 173 | 'name' => __('Default Gateway', 'give') . ' - v3', |
| 174 | 'desc' => __('The gateway that will be selected by default.', 'give'), |
| 175 | 'id' => 'default_gateway_v3', |
| 176 | 'type' => 'default_gateway_hidden', |
| 177 | ], |
| 178 | |
| 179 | [ |
| 180 | 'name' => __('Gateways Docs Link', 'give'), |
| 181 | 'id' => 'gateway_settings_docs_link', |
| 182 | 'url' => esc_url('http://docs.givewp.com/settings-gateways'), |
| 183 | 'title' => __('Gateway Settings', 'give'), |
| 184 | 'type' => 'give_docs_link', |
| 185 | ], |
| 186 | [ |
| 187 | 'id' => 'give_title_gateway_settings_1', |
| 188 | 'type' => 'sectionend', |
| 189 | ], |
| 190 | ]; |
| 191 | break; |
| 192 | } |
| 193 | |
| 194 | /** |
| 195 | * Filter the payment gateways settings. |
| 196 | * Backward compatibility: Please do not use this filter. This filter is deprecated in 1.8 |
| 197 | */ |
| 198 | $settings = apply_filters('give_settings_gateways', $settings); |
| 199 | |
| 200 | /** |
| 201 | * Filter the settings. |
| 202 | * |
| 203 | * @since 1.8 |
| 204 | * |
| 205 | * @param array $settings |
| 206 | */ |
| 207 | $settings = apply_filters('give_get_settings_' . $this->id, $settings); |
| 208 | |
| 209 | // Output. |
| 210 | return $settings; |
| 211 | } |
| 212 | |
| 213 | /** |
| 214 | * Get sections. |
| 215 | * |
| 216 | * @since 2.9.0 move offline-donations to end of gateway list |
| 217 | * @since 1.8 |
| 218 | * |
| 219 | * @return array |
| 220 | */ |
| 221 | public function get_sections() |
| 222 | { |
| 223 | $sections = apply_filters( |
| 224 | 'give_get_sections_' . $this->id, |
| 225 | [ |
| 226 | 'gateways-settings' => __('Gateways', 'give'), |
| 227 | ] |
| 228 | ); |
| 229 | |
| 230 | $sections['offline-donations'] = __('Offline Donations', 'give'); |
| 231 | |
| 232 | return $sections; |
| 233 | } |
| 234 | |
| 235 | /** |
| 236 | * @since 2.13.0 |
| 237 | * @return bool |
| 238 | */ |
| 239 | private function hasPremiumPaymentGateway() |
| 240 | { |
| 241 | $gateways = give_get_payment_gateways(); |
| 242 | |
| 243 | return (bool)apply_filters('give_gateway_upsell_notice_conditions', count($gateways) > 8); |
| 244 | } |
| 245 | |
| 246 | /** |
| 247 | * @since 2.13.0 |
| 248 | * |
| 249 | * @return bool |
| 250 | */ |
| 251 | private function canAcceptCreditCard() |
| 252 | { |
| 253 | return Give\Helpers\Gateways\Stripe::isAccountConfigured() || |
| 254 | give(MerchantDetails::class)->accountIsConnected(); |
| 255 | } |
| 256 | |
| 257 | |
| 258 | /** |
| 259 | * Render Gateway Notice |
| 260 | * |
| 261 | * @since 2.3.0 |
| 262 | * @access public |
| 263 | * |
| 264 | * @param $field |
| 265 | * @param $settings |
| 266 | */ |
| 267 | public function render_gateway_notice($field, $settings) |
| 268 | { |
| 269 | if (! $this->hasPremiumPaymentGateway() && ! $this->canAcceptCreditCard()) { |
| 270 | ?> |
| 271 | <div class="give-gateways-notice"> |
| 272 | <div class="give-gateways-cc-icon"> |
| 273 | <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="35" |
| 274 | height="29" viewBox="0 0 35 29"> |
| 275 | <defs> |
| 276 | <path id="credit-card-a" |
| 277 | d="M32.0772569,3.88888889 L2.92274306,3.88888889 C1.30642361,3.88888889 0,5.1953125 0,6.80555556 L0,28.1944444 C0,29.8046875 1.30642361,31.1111111 2.92274306,31.1111111 L32.0772569,31.1111111 C33.6935764,31.1111111 35,29.8046875 35,28.1944444 L35,6.80555556 C35,5.1953125 33.6935764,3.88888889 32.0772569,3.88888889 Z M3.28732639,6.80555556 L31.7126736,6.80555556 C31.9131944,6.80555556 32.0772569,6.96961806 32.0772569,7.17013889 L32.0772569,9.72222222 L2.92274306,9.72222222 L2.92274306,7.17013889 C2.92274306,6.96961806 3.08680556,6.80555556 3.28732639,6.80555556 Z M31.7126736,28.1944444 L3.28732639,28.1944444 C3.08680556,28.1944444 2.92274306,28.0303819 2.92274306,27.8298611 L2.92274306,17.5 L32.0772569,17.5 L32.0772569,27.8298611 C32.0772569,28.0303819 31.9131944,28.1944444 31.7126736,28.1944444 Z M11.6666667,22.1180556 L11.6666667,24.5486111 C11.6666667,24.9496528 11.3385417,25.2777778 10.9375,25.2777778 L6.5625,25.2777778 C6.16145833,25.2777778 5.83333333,24.9496528 5.83333333,24.5486111 L5.83333333,22.1180556 C5.83333333,21.7170139 6.16145833,21.3888889 6.5625,21.3888889 L10.9375,21.3888889 C11.3385417,21.3888889 11.6666667,21.7170139 11.6666667,22.1180556 Z M23.3333333,22.1180556 L23.3333333,24.5486111 C23.3333333,24.9496528 23.0052083,25.2777778 22.6041667,25.2777778 L14.3402778,25.2777778 C13.9392361,25.2777778 13.6111111,24.9496528 13.6111111,24.5486111 L13.6111111,22.1180556 C13.6111111,21.7170139 13.9392361,21.3888889 14.3402778,21.3888889 L22.6041667,21.3888889 C23.0052083,21.3888889 23.3333333,21.7170139 23.3333333,22.1180556 Z" /> |
| 278 | </defs> |
| 279 | <g fill="none" fill-rule="evenodd" opacity=".341" transform="translate(0 -3)"> |
| 280 | <mask id="credit-card-b" fill="#fff"> |
| 281 | <use xlink:href="#credit-card-a" /> |
| 282 | </mask> |
| 283 | <g fill="#242A42" mask="url(#credit-card-b)"> |
| 284 | <rect width="35" height="35" /> |
| 285 | </g> |
| 286 | </g> |
| 287 | </svg> |
| 288 | </div> |
| 289 | |
| 290 | <p class="give-gateways-notice-title"> |
| 291 | <strong> |
| 292 | <?php esc_html_e( |
| 293 | 'Want to accept credit card donations directly on your website?', |
| 294 | 'give' |
| 295 | ); ?> |
| 296 | </strong> |
| 297 | </p> |
| 298 | |
| 299 | <p class="give-gateways-notice-message"> |
| 300 | <?php |
| 301 | printf( |
| 302 | __( |
| 303 | 'Activate the free Stripe payment gateway %1$s, <a href="%2$s" target="_blank">PayPal Donations</a>, or a premium gateway like <a href="%3$s" target="_blank">Authorize.net</a>, or <a href="%4$s" target="_blank">Stripe Premium</a> for no added fees and priority support.', |
| 304 | 'give' |
| 305 | ), |
| 306 | Give()->tooltips->render_help( |
| 307 | __( |
| 308 | 'The free version of Stripe includes an additional 2% processing fee in addition to Stripe\'s normal fees for one-time donations. This ensures we can fully support the plugin for the future. Upgrade to the premium Stripe add-on for no added fees.', |
| 309 | 'give' |
| 310 | ) |
| 311 | ), |
| 312 | admin_url('edit.php?post_type=give_forms&page=give-settings&tab=gateways§ion=paypal'), |
| 313 | 'https://givewp.com/addons/authorize-net-gateway/?utm_source=WP%20Admin%20%3E%20Donations%20%3E%20Settings%20%3E%20Gateways&utm_medium=banner', |
| 314 | 'https://givewp.com/addons/stripe-gateway/?utm_source=WP%20Admin%20%3E%20Donations%20%3E%20Settings%20%3E%20Gateways&utm_medium=banner' |
| 315 | ); |
| 316 | ?> |
| 317 | </p> |
| 318 | |
| 319 | <div class="give-gateways-notice-button"> |
| 320 | <?php echo give(AccountManagerSettingField::class)->getStripeConnectButtonMarkup(); ?> |
| 321 | <a href="https://givewp.com/addons/category/payment-gateways/?utm_source=WP%20Admin%20%3E%20Donations%20%3E%20Settings%20%3E%20Gateways&utm_medium=banner" |
| 322 | target="_blank" class="give-view-gateways-btn button"> |
| 323 | <?php esc_html_e('View Premium Gateways', 'give'); ?> |
| 324 | </a> |
| 325 | </div> |
| 326 | </div> |
| 327 | <?php |
| 328 | } |
| 329 | } |
| 330 | |
| 331 | /** |
| 332 | * Render enabled gateways |
| 333 | * |
| 334 | * @since 3.0.0 split gateways into separated tabs for v2 and v3 settings |
| 335 | * @since 2.0.5 |
| 336 | * @access public |
| 337 | * |
| 338 | * @param $field |
| 339 | * @param $settings |
| 340 | */ |
| 341 | public function render_enabled_gateways($field, $settings) |
| 342 | { |
| 343 | $id = $field['id']; |
| 344 | $gateways = give_get_payment_gateways(); |
| 345 | |
| 346 | $current_page = give_get_current_setting_page(); |
| 347 | $current_tab = give_get_current_setting_tab(); |
| 348 | $current_section = give_get_current_setting_section(); |
| 349 | |
| 350 | // Legacy gateways are gateways that are not registered with updated gateway registration API. |
| 351 | // For example: Razorpay, Paytm, Mollie etc. |
| 352 | // These payment gateways support donation processing only with v2 donation forms. |
| 353 | $legacyGateways = array_filter( |
| 354 | $gateways, |
| 355 | static function ($value, $key) { |
| 356 | return ! give()->gateways->hasPaymentGateway($key); |
| 357 | }, |
| 358 | ARRAY_FILTER_USE_BOTH |
| 359 | ); |
| 360 | |
| 361 | // v2 gateways are gateways that are registered with updated gateway registration API. |
| 362 | // These payment gateways support donation processing with v2 donation forms. |
| 363 | // Legacy payment gateways will display with v2 gateways. |
| 364 | $v2Gateways = give_get_ordered_payment_gateways( |
| 365 | array_merge( |
| 366 | $legacyGateways, |
| 367 | array_intersect_key( |
| 368 | $gateways, |
| 369 | give()->gateways->getPaymentGateways(2) |
| 370 | ) |
| 371 | ), |
| 372 | 2 |
| 373 | ); |
| 374 | |
| 375 | // v3 gateways are gateways that are registered with updated gateway registration API. |
| 376 | // These payment gateways support donation processing with v3 donation forms. |
| 377 | $v3Gateways = give_get_ordered_payment_gateways( |
| 378 | array_intersect_key($gateways, give()->gateways->getPaymentGateways(3)), |
| 379 | 3 |
| 380 | ); |
| 381 | |
| 382 | $groups = [ |
| 383 | 'v2' => [ |
| 384 | 'label' => __('Option-Based Form Editor', 'give'), |
| 385 | 'gateways' => $v2Gateways, |
| 386 | 'settings' => $settings, |
| 387 | 'gatewaysLabel' => give_get_option('gateways_label', []), |
| 388 | 'defaultGateway' => give_get_option('default_gateway', current(array_keys($v2Gateways))), |
| 389 | 'helper' => [ |
| 390 | 'text' => __( |
| 391 | 'Uses the traditional settings options for creating and customizing a donation form.', |
| 392 | 'give' |
| 393 | ), |
| 394 | 'image' => GIVE_PLUGIN_URL . 'assets/dist/images/admin/give-settings-gateways-v2.jpg', |
| 395 | ] |
| 396 | ], |
| 397 | 'v3' => [ |
| 398 | 'label' => __('Visual Form Builder', 'give'), |
| 399 | 'gateways' => $v3Gateways, |
| 400 | 'settings' => give_get_option('gateways_v3', []), |
| 401 | 'gatewaysLabel' => give_get_option('gateways_label_v3', []), |
| 402 | 'defaultGateway' => give_get_option('default_gateway_v3', current(array_keys($v3Gateways))), |
| 403 | 'helper' => [ |
| 404 | 'text' => __( |
| 405 | 'Uses the blocks-based visual form builder for creating and customizing a donation form.', |
| 406 | 'give' |
| 407 | ), |
| 408 | 'image' => GIVE_PLUGIN_URL . 'assets/dist/images/admin/give-settings-gateways-v3.jpg', |
| 409 | ] |
| 410 | ], |
| 411 | ]; |
| 412 | $defaultGroup = current(array_keys($groups)); |
| 413 | |
| 414 | ob_start(); |
| 415 | |
| 416 | echo '<h4>' . __('Enabled Gateways', 'give') . '</h4>'; |
| 417 | echo '<div class="give-settings-section-content give-payment-gateways-settings">'; |
| 418 | echo '<div class="give-settings-section-group-menu">'; |
| 419 | echo '<ul>'; |
| 420 | foreach ($groups as $slug => $group) { |
| 421 | $current_group = !empty($_GET['group']) ? give_clean($_GET['group']) : $defaultGroup; |
| 422 | $active_class = ($slug === $current_group) ? 'active' : ''; |
| 423 | |
| 424 | if ($group['helper']) { |
| 425 | $helper = sprintf( |
| 426 | '<div class="give-settings-section-group-helper"> |
| 427 | <img src="%1$s" /> |
| 428 | <div class="give-settings-section-group-helper__popout"> |
| 429 | <img src="%2$s" /> |
| 430 | <h5>%3$s</h5> |
| 431 | <p>%4$s</p> |
| 432 | </div> |
| 433 | </div>', |
| 434 | esc_url(GIVE_PLUGIN_URL . 'assets/dist/images/admin/help-circle.svg'), |
| 435 | esc_url($group['helper']['image']), |
| 436 | esc_html($group['label']), |
| 437 | esc_html($group['helper']['text']) |
| 438 | ); |
| 439 | } |
| 440 | |
| 441 | echo sprintf( |
| 442 | '<li><a class="%1$s" href="%2$s" data-group="%3$s">%4$s %5$s</a></li>', |
| 443 | esc_html($active_class), |
| 444 | esc_url( |
| 445 | admin_url( |
| 446 | "edit.php?post_type=give_forms&page={$current_page}&tab={$current_tab}§ion={$current_section}&group={$slug}" |
| 447 | ) |
| 448 | ), |
| 449 | esc_html($slug), |
| 450 | esc_html($group['label']), |
| 451 | $helper ?? '' |
| 452 | ); |
| 453 | } |
| 454 | echo '</ul>'; |
| 455 | echo '</div>'; |
| 456 | |
| 457 | echo '<div class="give-settings-section-group-content">'; |
| 458 | foreach ($groups as $slug => $group) : |
| 459 | $current_group = !empty($_GET['group']) ? give_clean($_GET['group']) : $defaultGroup; |
| 460 | $hide_class = $slug !== $current_group ? 'give-hidden' : ''; |
| 461 | $suffix = $slug === 'v3' ? '_v3' : ''; |
| 462 | |
| 463 | printf( |
| 464 | '<div id="give-settings-section-group-%1$s" class="give-settings-section-group %2$s">', |
| 465 | esc_attr($slug), |
| 466 | esc_html($hide_class) |
| 467 | ); |
| 468 | |
| 469 | echo '<div class="gateway-enabled-wrap">'; |
| 470 | echo '<div class="gateway-enabled-settings-title">'; |
| 471 | printf( |
| 472 | ' |
| 473 | <span></span> |
| 474 | <span>%1$s</span> |
| 475 | <span>%2$s</span> |
| 476 | <span style="text-align: center;">%3$s</span> |
| 477 | <span style="text-align: center;">%4$s</span> |
| 478 | ', |
| 479 | __('Gateway', 'give'), |
| 480 | __('Label', 'give'), |
| 481 | __('Default', 'give'), |
| 482 | __('Enabled', 'give') |
| 483 | ); |
| 484 | echo '</div>'; |
| 485 | |
| 486 | echo '<ul class="give-checklist-fields give-payment-gatways-list">'; |
| 487 | foreach ($group['gateways'] as $key => $option) : |
| 488 | $enabled = null; |
| 489 | if (is_array($group['settings']) && array_key_exists($key, $group['settings'])) { |
| 490 | $enabled = '1'; |
| 491 | } |
| 492 | |
| 493 | echo '<li>'; |
| 494 | printf('<span class="give-drag-handle"><span class="dashicons dashicons-menu"></span></span>'); |
| 495 | printf( |
| 496 | '<span class="admin-label">%1$s %2$s</span>', |
| 497 | esc_html($option['admin_label']), |
| 498 | !empty($option['admin_tooltip']) ? Give()->tooltips->render_help( |
| 499 | esc_attr($option['admin_tooltip']) |
| 500 | ) : '' |
| 501 | ); |
| 502 | |
| 503 | $label = ''; |
| 504 | if (!empty($group['gatewaysLabel'][$key])) { |
| 505 | $label = $group['gatewaysLabel'][$key]; |
| 506 | } |
| 507 | |
| 508 | printf( |
| 509 | '<input class="checkout-label" type="text" id="%1$s[%2$s]" name="%1$s[%2$s]" value="%3$s" placeholder="%4$s"/>', |
| 510 | 'gateways_label' . $suffix, |
| 511 | esc_attr($key), |
| 512 | esc_html($label), |
| 513 | esc_html($option['checkout_label']) |
| 514 | ); |
| 515 | |
| 516 | printf( |
| 517 | '<input class="gateways-radio" type="radio" name="%1$s" value="%2$s" %3$s %4$s>', |
| 518 | 'default_gateway' . $suffix, |
| 519 | $key, |
| 520 | checked($key, $group['defaultGateway'], false), |
| 521 | disabled(null, $enabled, false) |
| 522 | ); |
| 523 | |
| 524 | printf( |
| 525 | '<input class="gateways-checkbox" name="%1$s[%2$s]" id="%1$s[%2$s]" type="checkbox" value="1" %3$s data-payment-gateway="%4$s"/>', |
| 526 | esc_attr($id) . $suffix, |
| 527 | esc_attr($key), |
| 528 | checked('1', $enabled, false), |
| 529 | esc_html($option['admin_label']) |
| 530 | ); |
| 531 | echo '</li>'; |
| 532 | endforeach; |
| 533 | echo '</ul>'; |
| 534 | |
| 535 | echo '</div>'; // end gateway-enabled-wrap. |
| 536 | echo '</div>'; // end give-settings-section-group-content. |
| 537 | endforeach; |
| 538 | |
| 539 | echo '</div>'; // end give-settings-section-content. |
| 540 | |
| 541 | printf('<tr><td colspan="2" style="padding: 0">%s</td></tr>', ob_get_clean()); |
| 542 | |
| 543 | $this->maybeRenderNoticeDialog(); |
| 544 | } |
| 545 | |
| 546 | /** |
| 547 | * @since 3.0.0 |
| 548 | */ |
| 549 | private function maybeRenderNoticeDialog() |
| 550 | { |
| 551 | $noticeVersion = '3.0.0'; |
| 552 | $hasUserSeenGatewayNotice = version_compare( |
| 553 | get_user_meta( |
| 554 | get_current_user_id(), |
| 555 | 'give-payment-gateways-settings-dialog-read', |
| 556 | true |
| 557 | ), |
| 558 | $noticeVersion, |
| 559 | '>=' |
| 560 | ); |
| 561 | |
| 562 | if ($hasUserSeenGatewayNotice) { |
| 563 | return; |
| 564 | } |
| 565 | |
| 566 | update_user_meta( |
| 567 | get_current_user_id(), |
| 568 | 'give-payment-gateways-settings-dialog-read', |
| 569 | $noticeVersion |
| 570 | ); |
| 571 | |
| 572 | $supportedGateways = (new DonationFormsAdminPage())->getSupportedGateways(); |
| 573 | ?> |
| 574 | |
| 575 | <dialog class="give-payment-gateway-settings-dialog" id="give-payment-gateway-settings-dialog"> |
| 576 | <div class="give-payment-gateway-settings-dialog__header"> |
| 577 | <?php |
| 578 | _e('Feature notice', 'give'); ?> |
| 579 | <button |
| 580 | class="give-payment-gateway-settings-dialog__close" |
| 581 | id="give-payment-gateway-settings-dialog__close" |
| 582 | aria-label="<?php |
| 583 | esc_attr_e('Close dialog', 'give'); ?>" |
| 584 | > |
| 585 | <svg xmlns="http://www.w3.org/2000/svg" width="23" height="23" viewBox="0 0 24 24" |
| 586 | aria-label="Close dialog icon"> |
| 587 | <path |
| 588 | d="M18.707 6.707a1 1 0 0 0-1.414-1.414L12 10.586 6.707 5.293a1 1 0 0 0-1.414 1.414L10.586 12l-5.293 5.293a1 1 0 1 0 1.414 1.414L12 13.414l5.293 5.293a1 1 0 0 0 1.414-1.414L13.414 12l5.293-5.293z"></path> |
| 589 | </svg> |
| 590 | </button> |
| 591 | </div> |
| 592 | <div class="give-payment-gateway-settings-dialog__content"> |
| 593 | <div class="give-payment-gateway-settings-dialog__content-title"> |
| 594 | <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| 595 | <path |
| 596 | d="M5.5 2a1 1 0 0 0-2 0v1.5H2a1 1 0 0 0 0 2h1.5V7a1 1 0 0 0 2 0V5.5H7a1 1 0 0 0 0-2H5.5V2zM5.5 17a1 1 0 1 0-2 0v1.5H2a1 1 0 1 0 0 2h1.5V22a1 1 0 1 0 2 0v-1.5H7a1 1 0 1 0 0-2H5.5V17zM13.933 2.641a1 1 0 0 0-1.866 0L10.332 7.15c-.3.78-.394 1.006-.523 1.188a2 2 0 0 1-.471.47c-.182.13-.407.224-1.188.524L3.64 11.067a1 1 0 0 0 0 1.866l4.509 1.735c.78.3 1.006.394 1.188.523.182.13.341.29.47.471.13.182.224.407.524 1.188l1.735 4.509a1 1 0 0 0 1.866 0l1.735-4.509c.3-.78.394-1.006.523-1.188.13-.182.29-.341.471-.47.182-.13.407-.224 1.188-.524l4.509-1.735a1 1 0 0 0 0-1.866L17.85 9.332c-.78-.3-1.006-.394-1.188-.523a2.001 2.001 0 0 1-.47-.471c-.13-.182-.224-.407-.524-1.188L13.933 2.64z" |
| 597 | fill="#F2CC0C"></path> |
| 598 | </svg> |
| 599 | <?php |
| 600 | esc_html_e('What\'s new', 'give'); ?> |
| 601 | </div> |
| 602 | <?php |
| 603 | esc_html_e( |
| 604 | 'GiveWP 3.0 introduces an enhanced forms experience powered by the new Visual Donations Form Builder. However, we are still working on gateway compatibility with the new forms experience.', |
| 605 | 'give' |
| 606 | ); ?> |
| 607 | <?php |
| 608 | if ($supportedGateways) : ?> |
| 609 | <div class="give-payment-gateway-settings-dialog__content-title"><?php |
| 610 | esc_html_e('Supported gateways', 'give'); ?></div> |
| 611 | <div class="give-payment-gateway-settings-dialog__content-itemsContainer"> |
| 612 | <?php |
| 613 | foreach ($supportedGateways as $gateway) : ?> |
| 614 | <div class="give-payment-gateway-settings-dialog__content-item"> |
| 615 | <svg width="16" height="16" viewBox="0 0 16 16" fill="none" |
| 616 | xmlns="http://www.w3.org/2000/svg"> |
| 617 | <path fill-rule="evenodd" clip-rule="evenodd" |
| 618 | d="M7.063.986a1.531 1.531 0 0 1 1.872 0l.783.601.98-.129c.69-.09 1.354.294 1.62.935l.377.913.911.376h.002c.641.267 1.025.93.935 1.62l-.13.98.602.783a1.534 1.534 0 0 1 0 1.872l-.601.783.129.98c.09.69-.294 1.354-.935 1.62h-.002l-.91.377-.378.912a1.537 1.537 0 0 1-1.62.936l-.98-.13-.783.601a1.531 1.531 0 0 1-1.872 0l-.782-.6-.98.129a1.537 1.537 0 0 1-1.62-.936l-.377-.912-.911-.376H2.39a1.537 1.537 0 0 1-.935-1.621l.129-.98-.601-.783a1.533 1.533 0 0 1 0-1.872l.601-.782-.129-.98c-.09-.69.294-1.354.935-1.62l.002-.001.91-.376.377-.913a1.537 1.537 0 0 1 1.62-.935l.98.13.783-.602zm3.741 5.82a.667.667 0 0 0-.943-.943L7.333 8.392 6.47 7.53a.667.667 0 1 0-.943.943L6.86 9.806c.26.26.683.26.943 0l3-3z" |
| 619 | fill="#459948"></path> |
| 620 | </svg> |
| 621 | <?php |
| 622 | echo $gateway; ?> |
| 623 | </div> |
| 624 | <?php |
| 625 | endforeach; ?> |
| 626 | </div> |
| 627 | <?php |
| 628 | endif; ?> |
| 629 | <button class="give-payment-gateway-settings-dialog__content-button"><?php |
| 630 | esc_html_e('Got it', 'give'); ?></button> |
| 631 | <a href="https://docs.givewp.com/compat-guide" rel="noopener noreferrer" target="_blank" |
| 632 | class="give-payment-gateway-settings-dialog__content-link"><?php |
| 633 | esc_html_e('Read more on Add-ons and Gateways compatibility', 'give'); ?></a> |
| 634 | </div> |
| 635 | </dialog> |
| 636 | |
| 637 | <?php |
| 638 | } |
| 639 | } |
| 640 | |
| 641 | endif; |
| 642 | |
| 643 | return new Give_Settings_Gateways(); |
| 644 |