| 1 |
<?php |
| 2 |
|
| 3 |
namespace Give\FormMigration\Steps; |
| 4 |
|
| 5 |
use Give\FormMigration\Concerns\Blocks\BlockFactory; |
| 6 |
use Give\FormMigration\Contracts\FormMigrationStep; |
| 7 |
|
| 8 |
class FormGrid extends FormMigrationStep |
| 9 |
{ |
| 10 |
public function process() |
| 11 |
{ |
| 12 |
$this->formV3->settings->formGridCustomize = $this->formV2->isFormGridCustomized(); |
| 13 |
$this->formV3->settings->formGridRedirectUrl = $this->formV2->getFormGridRedirectUrl(); |
| 14 |
$this->formV3->settings->formGridDonateButtonText = $this->formV2->getFormGridDonateButtonText(); |
| 15 |
$this->formV3->settings->formGridHideDocumentationLink = $this->formV2->isFormGridCustomized(); |
| 16 |
} |
| 17 |
} |
| 18 |
|