Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/blueversion/wp-content/plugins/give/src/FormMigration/Steps/ |
Upload File : |
<?php
namespace Give\FormMigration\Steps;
use Give\FormMigration\Contracts\FormMigrationStep;
use Give\Framework\Blocks\BlockModel;
class DonationOptions extends FormMigrationStep
{
public function process()
{
/** @var BlockModel $amountField */
$amountField = $this->fieldBlocks->findByName('givewp/donation-amount');
$priceOption = $this->getMetaV2('_give_price_option');
$amountField->setAttribute('priceOption', $priceOption);
if('set' === $priceOption) {
$amountField->setAttribute('setPrice', $this->getMetaV2('_give_set_price'));
}
if('multi' === $priceOption) {
// @note $formV2->levels only returns a single level
$donationLevels = $this->getMetaV2('_give_donation_levels');
$isDescriptionEnabled = false;
$amountField->setAttribute('levels',
array_map(function ($donationLevel) use (&$isDescriptionEnabled) {
$isDescriptionEnabled = $isDescriptionEnabled || ! empty($donationLevel['_give_text']);
return [
'value' => $this->roundAmount($donationLevel['_give_amount']),
'label' => $donationLevel['_give_text'],
'checked' => isset($donationLevel['_give_default']) && $donationLevel['_give_default'] === 'default',
];
}, $donationLevels)
);
$amountField->setAttribute('descriptionsEnabled', $isDescriptionEnabled);
}
$isCustomAmountEnabled = $this->formV2->isCustomAmountOptionEnabled();
$amountField->setAttribute('customAmount', $isCustomAmountEnabled);
if ($isCustomAmountEnabled) {
$customAmountMin = $this->getMetaV2('_give_custom_amount_range_minimum');
$customAmountMax = $this->getMetaV2('_give_custom_amount_range_maximum');
if ($customAmountMin) {
$amountField->setAttribute('customAmountMin', $this->roundAmount($customAmountMin));
}
if ($customAmountMax) {
$amountField->setAttribute('customAmountMax', $this->roundAmount($customAmountMax));
}
}
// @note No corresponding setting in v3 for "Custom Amount Text"
}
/**
* @since 3.0.0
*/
private function roundAmount($amount): float
{
return round((float)$amount, 2);
}
}