# give/4.16.9/src/FormMigration/Steps/PaymentGateways.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 31 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/FormMigration/Steps/PaymentGateways.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/FormMigration/Steps/PaymentGateways.php
- Modified: 2023-10-16T17:55:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.9/code/src/FormMigration/Steps/PaymentGateways.php#L10-L20`.

```php
<?php

namespace Give\FormMigration\Steps;

use Give\FormMigration\Contracts\FormMigrationStep;

/**
 * @since 3.0.0
 */
class PaymentGateways extends FormMigrationStep
{
    /**
     * @since 3.0.0
     */
    public function process()
    {
        $paymentGatewaysBlock = $this->fieldBlocks->findByName('givewp/payment-gateways');

        // Stripe settings
        $paymentGatewaysBlock->setAttribute('stripeUseGlobalDefault', $this->formV2->getStripeUseGlobalDefault());
        $paymentGatewaysBlock->setAttribute('accountId', $this->formV2->getStripeAccountId());

        // Offline settings
        $attributes = $this->formV2->getOfflineAttributes();

        foreach ($attributes as $key => $value) {
            $paymentGatewaysBlock->setAttribute($key, $value);
        }
    }
}

```
