| 1 |
<?php |
| 2 |
|
| 3 |
namespace Give\FormMigration\Steps; |
| 4 |
|
| 5 |
use Give\FormMigration\Contracts\FormMigrationStep; |
| 6 |
|
| 7 |
class DonationGoal extends FormMigrationStep |
| 8 |
{ |
| 9 |
public function process() |
| 10 |
{ |
| 11 |
$this->formV3->settings->enableDonationGoal = $this->formV2->isDonationGoalEnabled(); |
| 12 |
$this->formV3->settings->goalType = $this->formV2->getDonationGoalType(); |
| 13 |
$this->formV3->settings->goalAmount = $this->formV2->getDonationGoalAmount(); |
| 14 |
$this->formV3->settings->enableAutoClose = $this->formV2->isAutoClosedEnabled(); |
| 15 |
$this->formV3->settings->goalAchievedMessage = $this->formV2->getGoalAchievedMessage(); |
| 16 |
// @note `_give_goal_color` is not supported in v3 forms (defers to the Form Design). |
| 17 |
} |
| 18 |
} |
| 19 |
|