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

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

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/FormMigration/Steps/OfflineDonations.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/FormMigration/Steps/OfflineDonations.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/OfflineDonations.php#L10-L20`.

```php
<?php

namespace Give\FormMigration\Steps;

use Give\FormMigration\Concerns\Blocks\BlockFactory;
use Give\FormMigration\Contracts\FormMigrationStep;

class OfflineDonations extends FormMigrationStep
{
    public function canHandle(): bool
    {
        return $this->formV2->isOfflineDonationsCustomized();
    }

    public function process()
    {
        if($this->formV2->isOfflineDonationsBillingFieldEnabled()) {
            $this->fieldBlocks->findParentByChildName('givewp/payment-gateways')
                ->innerBlocks->append(BlockFactory::billingAddress());
        }

        // @todo Map donation instructions to v3 form.
        $this->formV3->settings->offlineDonationInstructions = $this->formV2->getOfflineDonationInstructions();
    }
}

```
